blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 3
171
| content_id
stringlengths 40
40
| detected_licenses
listlengths 0
8
| license_type
stringclasses 2
values | repo_name
stringlengths 6
82
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringclasses 13
values | visit_date
timestamp[ns] | revision_date
timestamp[ns] | committer_date
timestamp[ns] | github_id
int64 1.59k
594M
⌀ | star_events_count
int64 0
77.1k
| fork_events_count
int64 0
33.7k
| gha_license_id
stringclasses 12
values | gha_event_created_at
timestamp[ns] | gha_created_at
timestamp[ns] | gha_language
stringclasses 46
values | src_encoding
stringclasses 14
values | language
stringclasses 2
values | is_vendor
bool 2
classes | is_generated
bool 1
class | length_bytes
int64 4
7.87M
| extension
stringclasses 101
values | filename
stringlengths 2
149
| content
stringlengths 4
7.87M
| has_macro_def
bool 2
classes |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
46b38045fc7f5e9be3c5d88c24e897a6977ff43c | 745e4fcc48a8e4789deb7702e9393b532e40daa0 | /quest4.rkt | be3f2961dfda768eff09f25fe5252f2e788244e2 | []
| no_license | thoughtstem/ts-curric-game-engine | 6e0aff852f34c77628001f460b15a57485673bac | afb330290be8c0dba4d0bff2a8b132b8c7033031 | refs/heads/master | 2020-03-30T18:15:52.535260 | 2018-12-08T19:01:56 | 2018-12-08T19:01:56 | 151,491,590 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 4,685 | rkt | quest4.rkt | #lang racket
;High level goals:
#;(
Title: Bad Items
Main goal: Add a bad item to the game
* Load bad item definition
* Add into game code
* Edit player code to die by bad item
* Add multiple bad items
Stretch goals:
* Draw a bad item in Piskel
* Insert in game code
======
Quest-complete goals: Create a bad entity, using less scaffolding.
* Create another bad item, using exisiting code as guide, with less scaffolding
Mastery level 1: I have added a new, bad, item to my game enough times that I can
do it without the quest cards.
* Test your mastery: Do it in under 5 minutes without hint cards.
You may use an existing file as long as it does not have a score keeping entity already.
Mastery level 2: I understand the functions I'm using, and their documented meanings,
well enough to be able to add and customize a new bad item.
* Test your mastery: Using only the documentation, add bad items
to a game that doesn't have them.
)
(provide quest4)
(require ts-racket)
(require ts-curric-common)
(require net/sendurl)
(require (prefix-in p: pict/code))
(require (prefix-in p: pict))
(require racket/runtime-path)
(define-runtime-path images "images")
(require "./common.rkt")
(define (collide-death-img)
(define-values (main hint-targets)
(try-smw-and-then "tsgd_runner_1.rkt"
(add-to-player-entity-components
'(on-collide "bad item" die))))
(code+hints main
(list (first hint-targets)
(hint (p:text "Put your code here.")))))
(define-launcher-function collide-death
collide-death-img)
(define-racket-file moving-sprite-code
starter-files
"tsgd_moving_sprite.rkt")
(define (bad-item-start-game-image)
(define-values (main hint-targets)
(try-smw-and-then "tsgd_runner_1.rkt"
(add-to-start-game
`(bad-item-entity (posn 0 0)))))
(code+hints main
(list (first hint-targets)
(hint (p:vl-append
(p:text "Put your code here.")
(p:hb-append
(p:text "Experiment with the numbers in ")
(p:code (posn 0 0))))))))
(define-launcher-function bad-item-start-game
bad-item-start-game-image)
(define-launcher-list bad-item
paste-the-code-below-into-your-file
moving-sprite-code
paste-the-code-above-into-your-file
between-definitions-explanation)
(define (add-sprites-and-edge)
(activity-instructions "Add Bad Item"
'()
(list
(instruction-basic "Add (bad-item-entity) to start-game")
(instruction-basic "Use the launch code to see where.")
(instruction-basic "Run your game!")
(instruction-goal "your bad item in game."))
(launcher-img bad-item-start-game)))
(define (add-death-on-collide)
(activity-instructions "Make the Bad Item Bad"
'()
(list
(instruction-basic "Make your player die when it touches the bad item.")
(instruction-basic "Use the launcher to see how.")
(instruction-goal "your hero dying on collision."))
(launcher-img collide-death)))
(define (test-and-modify-game)
(activity-instructions "Modify and Test Game"
'()
(list
(instruction-basic "Add more bad sprites at different locations.")
(instruction-basic "Run and test your game again.")
(instruction-goal "your new changes running in game."))
(p:scale-to-fit (local-bitmap "click_run.png") 250 250 #:mode 'preserve)))
;Add a Moving Bad Sprite
(define (day4-2dgame)
(list
(with-award 0 open-file)
(with-award 0 (load-new-code bad-item))
(with-award 2 (add-sprites-and-edge))
(with-award 2 (add-death-on-collide))
(with-award 1 (test-and-modify-game))
(choose "any"
(list
(with-award 2 (draw-sprite "bad_sprite.png" "Bad Sprite"))
(with-award 1 (replace-sheet "Bad Sprite" replace-item-sprite))))))
(define s (settings (bg (local-bitmap "bg-arcade.png")) (STAR) (STAR-BONUS) (STAR-BONUS)))
(define (quest4)
(map shrink (make-picts "red" "Q4-" (day4-2dgame) s)))
(module+ test
(analyze-activities (day4-2dgame) s))
| false |
e565c3aa8a9e248322bba66447a11a3bf075d4aa | ef61a036fd7e4220dc71860053e6625cf1496b1f | /HTDP2e/02-arbitrary-large-data/ch-11-designing-by-composition/ex-189-search-sorted.rkt | 187fc38b30015a96e41514b7fac6199e5ca1e9bd | []
| no_license | lgwarda/racket-stuff | adb934d90858fa05f72d41c29cc66012e275931c | 936811af04e679d7fefddc0ef04c5336578d1c29 | refs/heads/master | 2023-01-28T15:58:04.479919 | 2020-12-09T10:36:02 | 2020-12-09T10:36:02 | 249,515,050 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,288 | rkt | ex-189-search-sorted.rkt | ;; The first three lines of this file were inserted by DrRacket. They record metadata
;; about the language level of this file in a form that our tools can easily process.
#reader(lib "htdp-beginner-abbr-reader.ss" "lang")((modname ex-189-search-sorted) (read-case-sensitive #t) (teachpacks ((lib "image.rkt" "teachpack" "2htdp"))) (htdp-settings #(#t constructor repeating-decimal #f #t none #f ((lib "image.rkt" "teachpack" "2htdp")) #f)))
; Number List-of-numbers -> Boolean
(define (search n alon)
(cond
[(empty? alon) #false]
[else (or (= (first alon) n)
(search n (rest alon)))]))
(check-expect (search 0 '()) #f)
(check-expect (search 1 (list 1 2 3)) #t)
(check-expect (search 2 (list 3 2 1)) #t)
(check-expect (search 0 (list 1 2 3)) #f)
; Number List-of-numbers -> Boolean
; produce #t if n occurs in the given alon (arranged in ascending order)
(check-expect (search-sorted 0 '()) #f)
(check-expect (search-sorted 0 (list 1)) #f)
(check-expect (search-sorted 0 (list 1 2 3)) #f)
(check-expect (search-sorted 1 (list 1 2 3)) #t)
(check-expect (search-sorted 4 (list 1 2 3)) #f)
(define (search-sorted n alon)
(cond
[(empty? alon) #f]
[(< n (first alon)) #f]
[else (or (= (first alon) n)
(search-sorted n (rest alon)))]))
| false |
7ed6155794cbd8ae800c2aa4e00e3946567c0641 | 24338514b3f72c6e6994c953a3f3d840b060b441 | /cur-test/cur/tests/stdlib/prop.rkt | 1251c28d8e02ac4fba996bb505cd48da05ade0a1 | [
"BSD-2-Clause"
]
| permissive | graydon/cur | 4efcaec7648e2bf6d077e9f41cd2b8ce72fa9047 | 246c8e06e245e6e09bbc471c84d69a9654ac2b0e | refs/heads/master | 2020-04-24T20:49:55.940710 | 2018-10-03T23:06:33 | 2018-10-03T23:06:33 | 172,257,266 | 1 | 0 | BSD-2-Clause | 2019-02-23T19:53:23 | 2019-02-23T19:53:23 | null | UTF-8 | Racket | false | false | 395 | rkt | prop.rkt | #lang cur
(require
cur/stdlib/prop
cur/stdlib/sugar
cur/stdlib/bool
cur/stdlib/nat
"curunit.rkt")
(check-equal? And And)
(check-equal? True True)
(:: pf:anything-implies-true thm:anything-implies-true)
(:: pf:and-is-symmetric thm:and-is-symmetric)
(:: pf:proj1 thm:proj1)
(:: pf:proj2 thm:proj2)
(check-equal?
(conj/i (conj/i T T) T)
(conj (And True True) True (conj True True T T) T))
| false |
e6dae0590ff5afecffe8d4546bd652888be5ac17 | 5f8d781ca6e4c9d3d1c3c38d2c04e18d090589cc | /1/www/code/point-obj.rkt | 5122316b3f10b4c777312ececcd1cfaf784572c0 | [
"AFL-3.0",
"AFL-2.1",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | plum-umd/fundamentals | a8458621131b864f0e3389b030c5197ea6bb3f41 | eb01ac528d42855be53649991a17d19c025a97ad | refs/heads/master | 2021-06-20T05:30:57.640422 | 2019-07-26T15:27:50 | 2019-07-26T15:27:50 | 112,412,388 | 12 | 1 | AFL-3.0 | 2018-02-12T15:44:48 | 2017-11-29T01:52:12 | Racket | UTF-8 | Racket | false | false | 1,201 | rkt | point-obj.rkt | #lang class/0
;; A Point is a (new point Real Real)
(define-class point
(fields x y)
;; dist0 : -> Real
;; Compute the distance to origin from this point
(check-expect (send (new point 3 4) dist0) 5)
(define (dist0)
(sqrt (+ (sqr (send this x))
(sqr (send this y)))))
;; dist : Point -> Real
;; Compute the distance between this point and that point
(check-expect (send (new point 4 5) dist (new point 1 1)) 5)
(define (dist fred)
(sqrt (+ (sqr (- (send this x) (send fred x)))
(sqr (- (send this y) (send fred y))))))
;; move : Real Real -> Point
;; Move this point by the given amount
(check-expect (send (new point 2 3) move -1 2) (new point 1 5))
;; Java notation: new Point(2, 3).move(-1, 2) new Point(1, 5)
(define (move Δx Δy)
(new point (+ (send this x) Δx) (+ (send this y) Δy)))
;; point=? : Point Point -> Boolean
;; Is this point the same as that point?
(check-expect (send (new point 3 4) point=? (new point 3 4)) #true)
(check-expect (send (new point 3 4) point=? (new point 0 0)) #false)
(define (point=? that)
(and (= (send this x) (send that x))
(= (send this y) (send that y)))))
| false |
53c136e7c645fd2637e239f61b8957702afc2118 | a603e664c2c064e126438c01d69b6360e565bfe3 | /jam/util.rkt | 3d26b51e35be8c6e4e51118bc29a74d2654d03a4 | []
| no_license | btlachance/jam | 8a508bca8b12a56ecdf4ade103f6e70af53c5052 | ea09d26a6551f3020d61805c98fa3a7ba58ad3db | refs/heads/master | 2021-06-25T22:03:55.156040 | 2019-10-07T19:13:06 | 2019-10-07T19:13:06 | 159,725,493 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,069 | rkt | util.rkt | #lang racket
(require jam/private/python/util)
(provide python-file python-directory)
;; python-file : path -> path
;; Given a relative path p, returns the path of the built-in python
;; file corresponding to p. Raises an error if no built-in file exists
(define (python-file path)
(define maybe-file (build-path blob-root path))
(unless (file-exists? maybe-file)
(error 'python-file "path does not correspond to a built-in Python file\n\
path: ~a" maybe-file))
maybe-file)
(define (python-directory path)
(define maybe-dir (build-path blob-root path))
(unless (directory-exists? maybe-dir)
(error 'python-directory "path does not correspond to a built-in Python directory\n\
path: ~a" maybe-dir))
maybe-dir)
(module+ test
(require rackunit)
(check-not-exn (lambda () (python-file "pycket_json_adapter.py")))
(check-exn #rx"built-in Python file" (lambda () (python-file "all-your-base.py")))
(check-not-exn (lambda () (python-directory "pycket")))
(check-exn #rx"built-in Python directory" (lambda () (python-directory "packet"))))
| false |
e7ae85b28725f669790171cfd69fdb7f64d26cad | b0c07ea2a04ceaa1e988d4a0a61323cda5c43e31 | /langs/hoodwink/parse.rkt | db4ec7461b0dfb1a798db42df73e8fbedf958a69 | [
"AFL-3.0"
]
| permissive | cmsc430/www | effa48f2e69fb1fd78910227778a1eb0078e0161 | 82864f846a7f8f6645821e237de42fac94dff157 | refs/heads/main | 2023-09-03T17:40:58.733672 | 2023-08-28T15:26:33 | 2023-08-28T15:26:33 | 183,064,322 | 39 | 30 | null | 2023-08-28T15:49:59 | 2019-04-23T17:30:12 | Racket | UTF-8 | Racket | false | false | 1,402 | rkt | parse.rkt | #lang racket
(provide parse)
(require "ast.rkt")
;; S-Expr -> Expr
(define (parse s)
(match s
[(? integer?) (Int s)]
[(? boolean?) (Bool s)]
[(? char?) (Char s)]
[(? string?) (Str s)]
['eof (Eof)]
[(? symbol?) (Var s)]
[(list 'quote (list)) (Empty)]
[(list (? (op? op0) p0)) (Prim0 p0)]
[(list (? (op? op1) p1) e) (Prim1 p1 (parse e))]
[(list (? (op? op2) p2) e1 e2) (Prim2 p2 (parse e1) (parse e2))]
[(list (? (op? op3) p3) e1 e2 e3)
(Prim3 p3 (parse e1) (parse e2) (parse e3))]
[(list 'begin e1 e2)
(Begin (parse e1) (parse e2))]
[(list 'if e1 e2 e3)
(If (parse e1) (parse e2) (parse e3))]
[(list 'let (list (list (? symbol? x) e1)) e2)
(Let x (parse e1) (parse e2))]
[_ (error "Parse error" s)]))
(define op0
'(read-byte peek-byte void gensym))
(define op1
'(add1 sub1 zero? char? write-byte eof-object?
integer->char char->integer
box unbox empty? cons? box? car cdr
vector? vector-length string? string-length
symbol? string->symbol symbol->string))
(define op2
'(+ - cons make-vector vector-ref make-string string-ref
eq?))
(define op3
'(vector-set!))
(define (op? ops)
(λ (x)
(and (symbol? x)
(memq x ops))))
| false |
89b22f5d249663a1930f1dc34a501b0f2030514e | 3fe8cb649e5ed157a951b6224e70bc1e97b803ae | /plai/ch5/ch5.rkt | 5a2cd88da46ddde4f7d380b0d563b593866906bf | []
| no_license | howell/courses | 69ca4ba4b7c12792eee936e04ca7eefc537e697c | ce15bd5b30f15fbed5e80c13b70bc64696083e2b | refs/heads/master | 2021-01-18T02:51:44.334482 | 2015-06-10T22:29:31 | 2015-06-10T22:29:31 | 24,762,289 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,058 | rkt | ch5.rkt | #lang plai-typed
#|
Exercise
Add conditionals to your language. You can either add boolean datatypes or, if you want to do something quicker, add a conditional that treats 0 as false and everything else
as true.
What are the important test cases you should write?
|#
(define-type BoolC
[trueC]
[falseC])
(define-type ArithC
[numC (n : number)]
[plusC (l : ArithC) (r : ArithC)]
[multC (l : ArithC) (r : ArithC)]
[ifteC (c : BoolC) (t : ArithC) (e : ArithC)])
(define (interp [a : ArithC]) : number
(type-case ArithC a
[numC (n) n]
[plusC (l r) (+ (interp l) (interp r))]
[multC (l r) (* (interp l) (interp r))]
[ifteC (c t e)
(type-case BoolC c
[trueC () (interp t)]
[falseC () (interp e)])]))
(test (interp (ifteC (trueC) (numC 1) (numC 2))) 1)
(test (interp (ifteC (falseC) (numC 1) (numC 2))) 2)
#|
Exercise
When a function has multiple arguments, what simple but important criterion governs the names of those arguments?
Answer
The parameter names are distinct.
|#
| false |
0c33cd6fd98a25a005a40b28737888c4afb5e50f | 69e94593296c73bdfcfc2e5a50fea1f5c5f35be1 | /Tutorials/Tut2/q4.rkt | 03a48d79988c6bf6bae63da880732d5b26bf30dc | []
| no_license | nirajmahajan/CS152 | 7e64cf4b8ec24ed9c37ecc72c7731816089e959b | ef75b37715422bf96648554e74aa5ef6e36b9eb3 | refs/heads/master | 2020-05-29T18:02:08.993097 | 2019-05-29T20:35:06 | 2019-05-29T20:35:06 | 189,293,837 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 190 | rkt | q4.rkt | #lang racket
(define (is-palindrome l)
(equal? l (reverse l)))
(define (reverse l)
(define (op x y)
(append y (list x)))
(foldr op '() l))
(define (append x y)
(foldr cons y x)) | false |
9dc2b80490dd2ec9e7731f39c01abd59ac21668a | 3235a806467beae5cbf56202dc2b41de7d642669 | /pict-lib/texpict/mrpict.rkt | b2e43452f9c7c9759c41ad9969d31fb2a849abf4 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
]
| permissive | racket/pict | a13c6af25fc606c4242be83187cee7430b0393f4 | 29e89754c2d6a59fe56027772e7b5113e8560cef | refs/heads/master | 2023-08-21T12:52:28.137870 | 2023-06-06T13:50:00 | 2023-06-06T14:53:25 | 27,413,214 | 19 | 22 | NOASSERTION | 2023-06-06T14:53:26 | 2014-12-02T03:28:00 | Racket | UTF-8 | Racket | false | false | 90 | rkt | mrpict.rkt | #lang racket/base
(require pict/private/pict)
(provide (all-from-out pict/private/pict))
| false |
7895a032140fac5cb815db33989519694894e3cc | 5f23c0366cd6d1e6739de028656dda9c52a4f2e1 | /common/nouns/main.rkt | b316e434ec9b68bb7946976afcfa38425fcc8523 | []
| no_license | srfoster/codespells-university | e36f37b1e0dce10c40abb8b601f058c3c0587763 | f4ec7e522793e09a7ec5c41f3907b15990f2e754 | refs/heads/main | 2023-03-11T04:02:58.009508 | 2021-02-27T22:25:42 | 2021-02-27T22:25:42 | 338,873,552 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 655 | rkt | main.rkt | #lang racket
(require editing
racket/runtime-path
(only-in 2htdp/image bitmap/file))
(define-runtime-path assets ".")
(define-syntax-rule
(define/provide-asset name)
(begin
(provide name)
(define name
(bitmap/file (build-path assets (~a 'name ".png"))))))
(define/provide-asset mystery-box)
(define/provide-asset world)
(define/provide-asset group)
(define/provide-asset generations)
(define/provide-asset brain)
(define/provide-asset evolution)
(define/provide-asset evolution-2)
(define/provide-asset scales)
(define/provide-asset banned)
(define/provide-asset witch)
(define/provide-asset guts)
(define/provide-asset magic)
| true |
bb665c6ee6f114ba1bb25c5d3849dd9d64063184 | acb237f6b9091540474140000c222070f65059a4 | /code/benchmarks/zombie/shallow/image.rkt | 5e71803737650a41cc8f9e15e25529673bf81605 | [
"MIT"
]
| permissive | bennn/g-pldi-2022 | 6fef876fb332b9113f4ab2af4072a628d276b2c5 | 299d4d4c285cbdc2a3139b2c9b1168eff9fd79f6 | refs/heads/master | 2023-09-05T14:01:06.805156 | 2022-06-18T20:54:25 | 2022-06-18T20:54:28 | 338,459,955 | 4 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 847 | rkt | image.rkt | #lang typed/racket/base #:transient
;; Placeholder for images.
;; Pretends to render data.
(provide
(struct-out image)
empty-scene ;(number? number? . -> . image?)]
place-image ;(image? number? number? image? . -> . image?)]
circle ;(number? string? string? . -> . image?)]
)
;; =============================================================================
(struct image (
[impl : Any]
))
(define-type Image image)
(: empty-scene (-> Real Real Image))
(define (empty-scene w h)
(when (or (negative? w) (negative? h))
(error 'image "Arguments must be non-negative real numbers"))
(image (cons w h)))
(: place-image (-> Image Real Real Image Image))
(define (place-image i1 w h i2)
(image (list i1 w h i2)))
(: circle (-> Real String String Image))
(define (circle radius style color)
(image (list radius style color)))
| false |
1c6b9dbeb6c697efbc54cb1c0fd236bd00422704 | 616e16afef240bf95ed7c8670035542d59cdba50 | /redex-test/redex/tests/sewpr/types/1-ex.rkt | 49b4cc239e0b397b0d929d9c17e4adee3a795bd3 | [
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/redex | bd535d6075168ef7be834e7c1b9babe606d5cd34 | 8df08b313cff72d56d3c67366065c19ec0c3f7d0 | refs/heads/master | 2023-08-19T03:34:44.392140 | 2023-07-13T01:50:18 | 2023-07-13T01:50:18 | 27,412,456 | 102 | 43 | NOASSERTION | 2023-04-07T19:07:30 | 2014-12-02T03:06:03 | Racket | UTF-8 | Racket | false | false | 710 | rkt | 1-ex.rkt | #lang racket/base
(require redex "1.rkt")
;; ENDDEFS
;; EXAMPLE mod-test
(test-->> mod3 (term (+ (+ 0 (+ 1 2)) 2)) (term 2))
;; CONTINUE mod-test
(test-->> mod3 (term (+ (+ 1 1) (+ 1 1))) (term 1))
;; CONTINUE mod-test
(test-->> mod3 (term (+ 0 (+ 0 (+ 0 1)))) (term 1))
;; CONTINUE mod-test
(test-->> mod3 (term (+ (+ (+ (+ 0 1) 0) 1) 0)) (term 2))
;; CONTINUE mod-test
(test-->> mod3 (term (+ (+ 1 1) (+ 2 1))) (term 2))
;; CONTINUE mod-test
(test-results)
;; STOP mod-test
(module+ main
;; START mod-traces
(traces mod3 (term (+ (+ 1 1) (+ 2 1)))
#:pred (redex-match mod-lang A))
;; STOP mod-traces
)
;; ensure drdr only compiles this,
;; as it intentionally errors
(module test racket/base)
| false |
f240a72aadb301ce000e195e1ffbf9ec89635f38 | 78cc945d278ac476b136a317dfcfe7efa79857a1 | /monitor.rkt | f1f313ead509bc5c9e6443c73f88854cf7c6c82f | [
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | DexterLagan/monitor | 27baf9d263d768452a16ae43bd75f51dda1cf15e | e3f0efbb3d9cefd61e185fed35d0fc1a01fe6c6a | refs/heads/master | 2021-06-12T18:39:57.691543 | 2021-04-21T08:27:12 | 2021-04-21T08:27:12 | 183,613,611 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 3,748 | rkt | monitor.rkt | #lang racket
(require "config.rkt")
(require "common.rkt")
(require "system.rkt")
(require "email.rkt")
(require "pmap.rkt")
;;; purpose
; to connect to a list of servers and gather CPU, RAM, disk usages and top 3 CPU and RAM processes
;;; consts
(define *appname* "Monitor")
(define *app-config-filename* "monitor.conf")
(define *app-config-section-length* 9)
(define *items-config-filename* "servers.conf")
(define *items-config-section-length* 4)
(define *app-config-error* "Bad program configuration file syntax.")
(define *items-config-error* "Bad items configuration file syntax.")
(define *email-alert-triggers* (list "100%" "CPU Usage: 1."))
(define *default-email-from* "[email protected]")
(define *default-email-subject* "Nodixia Monitor Alert")
(define *default-email-template* "monitor.html")
;;; defs
;; returns a fully form email
(define (make-email-contents hostname output)
(string-append "Hi,<br><br> The following system has triggered an alert based on load. "
"Please see the details below and take action as soon as possible:<br><br>"
"<b>Host Name: " hostname "</b><br>"
(string-join output "<br>")
"<br><br><br>"))
;; process one server from a config section
(define (process-item config commands distribution-list)
(define hostname (get-config-value config "hostname="))
(define username (get-config-value config "username="))
(define user@host (string-append username "@" hostname))
(define output (run-commands commands hostname username))
(define output-str (string-join output "\n"))
(if (or (string-contains? output-str "error")
(string-contains? output-str "could not"))
(displayln "Host unreachable.")
(displayln (string-append output-str "\n")))
(when (ormap (lambda (s) (string-contains? output-str s))
*email-alert-triggers*)
(displayln "Usage threshold reached. Alert sent.")
(define email-contents
(make-email-contents hostname output))
(send-html-email distribution-list
*default-email-from*
*default-email-subject*
*default-email-template*
email-contents)))
;;; main
; gather command line parameters: config file location and HTML email template location
(define-command-line-params *appname* app-config-file items-config-file html-template-file)
; read program and items configuration;
(define app-configs (load-config app-config-file *app-config-section-length*))
(unless app-configs (die *app-config-error*))
(define items-configs (load-config items-config-file *items-config-section-length*))
(unless items-configs (die *items-config-error*))
(define app-config (first app-configs))
(define commands (list (get-config-item-or-die app-config "hostname-command=")
(get-config-item-or-die app-config "uptime-command=")
(get-config-item-or-die app-config "cpu-usage-command=")
(get-config-item-or-die app-config "ram-usage-command=")
(get-config-item-or-die app-config "dsk-usage-command=")
(get-config-item-or-die app-config "top-cpu-command=")
(get-config-item-or-die app-config "top-ram-command=")))
; load email distribution list, check and convert it:
(define distribution-str (get-config-item-or-die app-config "distribution-list="))
(unless (and (non-empty-string? distribution-str)
(string-contains? distribution-str "@"))
(die *app-config-error*))
(define distribution-list (string-split distribution-str ","))
; process items
(displayln "Starting scan...\n")
(process-config-items process-item
items-configs
commands
distribution-list)
(displayln "All done.\n")
; EOF
| false |
7caa640e5b99d842a98bf0190cb3da35853e0e64 | 71f8d6199865e582cddeb47cc340e8a3e20ca2c8 | /part2.rkt | 5d234637ebb8ee1b92b5a30eb8e0b1e6cdfda947 | []
| no_license | natanlbispo/mata77progFuncional | 6bcec0806ac4f0650e11f981dd88bfb8eb135533 | e5669aba7ffe3294c43fac879da711d51685da09 | refs/heads/master | 2020-08-26T22:38:31.092994 | 2019-11-21T12:24:18 | 2019-11-21T12:24:18 | 217,169,916 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 2,300 | rkt | part2.rkt | ;; Macro
;;1
(define-syntax (pipe-v1 stx)
(syntax-case stx ()
[(_ val-expr) #'val-expr]
)
)
;;2
(define-syntax (pipe-v2 stx)
(syntax-case stx ()
[(_ val-expr) #'val-expr]
[(_ val-expr (fn-expr arg-expr ...))
#'(fn-expr val-expr arg-expr ...)]
)
)
;;3
define-syntax (pipe-v3 stx)
(syntax-case stx ()
[(_ val-expr) #'val-expr]
[(_ val-expr (fn-expr arg-expr ...) clause ...)
#'(pipe-v3 (fn-expr val-expr arg-expr ...) clause ...)]
)
)
;;4
(define-syntax (pipe-v4 stx)
(syntax-case stx ()
[(_ val-expr) #'val-expr]
[(_ val-expr (fn-expr arg-expr ...) clause ...)
#'(pipe-v4 (fn-expr val-expr arg-expr ...) clause ...)]
[(_ val-expr id-fn-expr clause ...)
#'(pipe-v4 (id-fn-expr val-expr) clause ...)]
)
)
;;5
;; condicional
(define (lat? l)
(cond
[(null? l) #t]
[(non-atom? (first l)) #f]
[else (lat? (rest l))]
))
;; if com recursividade - função somatorio
(define (soma-numeros l)
(if (null? l)
0
(+ (first l) (soma-numeros (rest l)))))
;; com acumulador
(define (soma-numeros2 l a)
(if (null? l)
a
(soma-numeros2 (rest l) (+ (first l) a))
))
;; removendo elementos da lista
(define (rmembro a l)
(cond
[(null? l) '()]
[(eq? a (first l)) (rest l)]
[else (cons (first l)
(rmembro a (rest l)))]
))
;; substituição
(define (substitui a b l)
(cond
[(null? l) l]
[(eq? a (first l)) (cons b (substitui a b (rest l)))]
[else (cons (first l) (substitui a b (rest l)))]
))
;; recursividade em estruturas complexas
(define (membro*? a l)
(cond
[(null? l) #f]
[(list? (first l)) (or (membro*? a (first l))
(membro*? a (rest l)))]
[(eq? a (first l)) #t]
[else (membro*? a (rest l))]
))
;;definindo variaveis
(let [(a 100)
(b 50)]
(gcd a b))
;; numero variavel de parametros
(define (lista . numeros)
numeros)
;; rest e apply
(define (soma . lista)
(if (null? lista)
0
(+ (first lista) (apply soma (rest lista)))
))
;; funções anonimas
(lambda (x y) (+ x y))
;; recebendo funções como parametro
(remove* '(4) '(2 3 4 1 10) <=)
;; função map
(map (lambda (number)
(+ 1 number))
'(1 2 3 4))
;; reduce
(foldl + 0 '(1 2 3 4))
| true |
6b8d4da863ca01f2ba59208ae43973c2c5d55dc9 | 52a4d282f6ecaf3e68d798798099d2286a9daa4f | /v22/fargish.rkt | d1c6174574d33a00ee5d3f7ea933ae2a4c80a04e | [
"MIT"
]
| permissive | bkovitz/FARGish | f0d1c05f5caf9901f520c8665d35780502b67dcc | 3dbf99d44a6e43ae4d9bba32272e0d618ee4aa21 | refs/heads/master | 2023-07-10T15:20:57.479172 | 2023-06-25T19:06:33 | 2023-06-25T19:06:33 | 124,162,924 | 5 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 15,163 | rkt | fargish.rkt | ; fargish.rkt -- FARGish as a #lang? Implemented in Typed Racket?
#lang debug typed/racket
(require typed/debug/report)
(require syntax/parse syntax/parse/define syntax/stx
(for-syntax "wheel.rkt" racket/syntax syntax/parse syntax/stx
syntax/id-table racket/function
(only-in "typed-wheel.rkt" merge-from-ancestors)
(only-in sugar slice-at) mischief/sort))
(require "typed-wheel.rkt")
(require "types.rkt" "id-set.rkt" "fizzle.rkt")
;(module+ test (require typed/rackunit phc-toolkit/typed-rackunit))
(provide define-spec
empty-spec
nodeclass-is-a?
->spec
class->taggee-infos
class->condition
(struct-out FARGishSpec)
(struct-out Graph)
(struct-out TaggeeInfo)
ApplyTag)
(struct Graph ([ht-node->attrs : (Hashof Node Attrs)]
[ht-port->neighboring-ports : (Hashof Port (Setof Port))]
[ht-edge->weight : (Hashof Edge/UPair EdgeWeight)]
[id-set : IdSet]
[stacks : (Hashof Symbol (Listof Any))]
[vars : (Hashof Symbol Any)]
[spec : FARGishSpec])
#:prefab)
; A function that attaches an already-created tag to existing nodes.
(define-type ApplyTag (-> Graph Node (Listof Node) Graph))
; (apply-tag g tag (list taggee1 taggee2 ...))
(define-type HasTag? (-> Graph Node Boolean))
; (has-tag? g node)
(define-type TaggeeMultiplicity (U Exact-Positive-Integer 'any))
;(define-type TagCondition (-> Graph (U Node Void) (U Any #f)))
(define-type TagCondition
(-> Graph (Maybe Node) (Hashof Symbol MaybeNodes) (U Any #f)))
; The third argument of a TagCondition maps the taggee names to the taggees.
(struct Nodeclass ([name : Symbol]
;[args : (Listof Symbol)]
[parents : (Listof Symbol)])
#:transparent)
(struct TaggeeInfo ([name : Symbol]
[from-port-label : Port-label]
[to-port-label : Port-label]
[of-classes : (Listof Symbol)]
[multiplicity : TaggeeMultiplicity])
#:transparent)
(struct FARGishSpec ([ht/class->parents : (Hashof Symbol (Setof Symbol))]
[ht/class->apply-tag : (Hashof Symbol ApplyTag)]
[ht/class->taggee-infos :
(Hashof Symbol (Listof TaggeeInfo))]
[ht/class->condition : (Hashof Symbol TagCondition)])
#:transparent)
(define empty-spec (FARGishSpec (hash) (hash) (hash) (hash)))
(begin-for-syntax
(define (maybe-missing stx)
(if stx
stx
(syntax-property #'(void) 'missing? #t)))
(define missing
(syntax-property #'(void) 'missing? #t))
(define (missing? stx)
(syntax-property stx 'missing?))
; Compile-time Nodeclass
(struct CNodeclass (name args parents taggee-infos condition apply-tag attrs)
#:transparent)
; name : Symbol
; args : (Listof ??)
; parents : (Listof Symbol)
; taggee-infos : (Listof TaggeeInfo)
; condition : TagCondition
; apply-tag : ApplyTag
; attrs : (Listof Syntax)
(define tag-condition-always-true #'(ann (const #t) TagCondition))
(define (items->free-id-table ->k ->v items)
(for/fold ([ft (make-immutable-free-id-table)])
([item items])
(free-id-table-set ft (->k item) (->v item))))
(define (free-id-table-merge ft0 ft1)
(for/fold ([ft0 ft0])
([k (free-id-table-keys ft1)])
(free-id-table-set ft0 k (free-id-table-ref ft1 k))))
(define (make-CNodeclass
name args parents taggee-infos condition apply-tag . attrs)
(let ([attr-pairs (for/list ([kv (slice-at attrs 2)]
#:when (not (missing? (cadr kv))))
kv)])
(CNodeclass name
args
parents
taggee-infos
condition
apply-tag
(items->free-id-table car cadr attr-pairs))))
(define (inherit-CNodeclass parent-cn cn)
(struct-copy CNodeclass cn
[attrs (free-id-table-merge (CNodeclass-attrs parent-cn)
(CNodeclass-attrs cn))]))
(define (nodeclass-inheritance cnodeclasses)
(let ([name->cnodeclass
(let ([ft (items->free-id-table
CNodeclass-name identity cnodeclasses)])
(λ (name) (free-id-table-ref ft name)))]
[cn->parents
(λ (cn) (map name->cnodeclass (stx->list (CNodeclass-parents cn))))]
[cn->updated
(λ (cn) (merge-from-ancestors cn cn->parents inherit-CNodeclass))])
(for/list ([cn cnodeclasses])
(let ([cn (cn->updated cn)])
(with-syntax ([name (CNodeclass-name cn)]
[args (CNodeclass-args cn)]
[parents (CNodeclass-parents cn)]
[taggee-infos (CNodeclass-taggee-infos cn)]
[condition (CNodeclass-condition cn)]
[apply-tag (CNodeclass-apply-tag cn)]
[((attr-name attr-expr) ...) (free-id-table-map
(CNodeclass-attrs cn)
(λ kv kv))])
#'(name args parents taggee-infos condition apply-tag
((attr-name attr-expr) ...))))))))
;(define-syntax (farg-model-spec stx)
(define-syntax (define-spec stx)
(define-syntax-class arg+type
#:description "argument with type, like [n : Integer]"
#:datum-literals [:]
(pattern [name:id : type:expr]))
(define-syntax-class name+args
#:description "name maybe with arguments"
#:attributes [name (arg 1)]
(pattern name:id
#:with (arg ...) #'())
(pattern (name:id arg:arg+type ...)))
(define-syntax-class nodeclass-head
#:datum-literals [nodeclass tagclass]
#:attributes [tag?]
(pattern nodeclass
#:with tag? (syntax-property #'#f 'missing? #t))
(pattern tagclass
#:with tag? #'#t))
(define-syntax-class multiplicity-value
#:description "multiplicity"
(pattern (~or* n:exact-positive-integer
(~literal any))))
; Example:
; [node1 (by-ports lesser greater) (of-class number) (multiplicity 1)]
(define-syntax-class taggee-spec
#:datum-literals [by-ports]
#:attributes [name from-port-label to-port-label of-classes multiplicity
let-binding]
(pattern
[name:id (~seq (~alt
(~optional (by-ports ~! from-port-label:id to-port-label:id)
#:too-many "'by-ports' specified more than once"
#:defaults ([from-port-label #'tagged]
[to-port-label #'tags]))
(~optional ((~literal of-class) ~! of-class:id ...+)
#:too-many "'of-class' specified more than once")
(~optional ((~literal multiplicity) ~!
multiplicity:multiplicity-value)
#:too-many "'multiplicity' specified more than once"
#:defaults ([multiplicity #'1]))
) ...)]
#:with of-classes #'(~? (of-class ...)
())
#:with let-binding
#`[name #,(if (equal? 1 (syntax->datum #'multiplicity))
#'(ht->node ht/nodes 'name)
#'(ht->node/s ht/nodes 'name))]
))
;TODO I think apply-tag will need to be rewritten so that it applies only
;one tag at a time, with the name of the taggee specified. The make-tag
;function will have to call apply-tag multiple times. Other code can
;add on taggees. tag-info will have to allow specifying multiplicity.
(define-syntax-class applies-to
#:datum-literals [applies-to]
#:attributes [taggee-infos condition mk/apply-tag]
(pattern (applies-to ~! (taggee:taggee-spec ...)
(~optional ((~literal condition) c:expr ...+)))
#:with taggee-infos
#'(list (TaggeeInfo 'taggee.name
'taggee.from-port-label
'taggee.to-port-label
'taggee.of-classes
'taggee.multiplicity) ...)
#:with tag-arity #`#,(length (stx->list #'(taggee ...)))
#:attr mk/apply-tag
(λ (classname)
#`(λ ([g : Graph] [tag : Node] [nodes : (Listof Node)])
: Graph
(cond
[(not (= tag-arity (length nodes)))
(fizzle:tag-arity #,classname tag-arity 'nodes)]
[else
(let* ((~@ [node (car nodes)]
[nodes (cdr nodes)]
[g (add-edge g
`((,tag taggee.from-port-label)
(,node taggee.to-port-label)))]) ...)
g)])))
#:with g (format-id this-syntax "g" #:source #'this-syntax)
#:with this (format-id this-syntax "this" #:source #'this-syntax)
;NICE It would be nice if the syntax were defined so that references to
;g happened automatically and the condition code didn't have to look
;up its own attributes by explicitly going through 'this'.
#:with condition
#`(~? (λ ([g : Graph]
[this : (U Node Void)]
[ht/nodes : (Hashof Symbol MaybeNodes)]) : (U Any #f)
(let* (taggee.let-binding ...)
c ...))
#,tag-condition-always-true)
;#:do [(displayln (syntax->datum #'condition))]
))
(define-splicing-syntax-class nodeclass-body
#:datum-literals [is-a archetype value links-into display-name]
#:attributes [(parent 2) value-expr display-name-expr mk/apply-tag
taggee-infos condition]
(pattern (~seq
(~alt (is-a ~! parent:id ...+)
(~optional (value ~! value-expr:expr)
#:too-many "'value' specified more than once"
#:defaults ([value-expr missing]))
(~optional (display-name ~! display-name-expr:expr)
#:too-many "'display-name' specified more than once"
#:defaults ([display-name-expr missing]))
(~optional applies-to-expr:applies-to
#:too-many "'applies-to' specified more than once")
) ... )
#:attr mk/apply-tag
(or (attribute applies-to-expr.mk/apply-tag)
(λ (classname)
#`(λ ([g : Graph] [tag : Node] [nodes : (Listof Node)])
: Graph
(cond
[(null? nodes) g]
[else (fizzle:not-a-tag #,classname)]))))
#:with taggee-infos #`(~? applies-to-expr.taggee-infos '())
#:with condition
(or (attribute applies-to-expr.condition)
tag-condition-always-true)
))
(define-syntax-class nodeclass
#:attributes [cnodeclass]
(pattern (head:nodeclass-head ~! decl:name+args body:nodeclass-body)
#:attr cnodeclass
(begin
;(displayln (list #'decl.name #'head.tag? (missing? #'head.tag?)))
(make-CNodeclass #'decl.name
#'(decl.arg ...)
#'(body.parent ... ...)
#'body.taggee-infos
#'body.condition
((attribute body.mk/apply-tag) #'decl.name)
#'value #'body.value-expr
#'display-name #'body.display-name-expr
#'tag? #'head.tag?))))
(syntax-parse stx
[(_ spec-name:id nc0:nodeclass ...)
#:with ((nc.name ((nc.arg.name (~literal :) nc.arg.type) ...)
(nc.parent ...)
nc.taggee-infos
nc.condition
nc.apply-tag
((nc.attr.name nc.attr.expr) ...)) ...)
(nodeclass-inheritance (attribute nc0.cnodeclass))
#`(begin
(local-require "model.rkt")
(begin
(: nc.name : nc.arg.type ... -> Attrs)
(define (nc.name nc.arg.name ...)
(hash 'class 'nc.name
(~@ 'args (list nc.arg.name ...))
(~@ 'nc.arg.name nc.arg.name) ...
(~@ 'nc.attr.name nc.attr.expr) ...))) ...
(: spec-name : FARGishSpec)
(define spec-name
(let ([ht/class->parents
(hash (~@ 'nc.name (set 'nc.name 'nc.parent ...)) ...)]
[ht/class->apply-tag
(hash (~@ 'nc.name nc.apply-tag) ...)]
[ht/class->taggee-infos : (Hashof Symbol (Listof TaggeeInfo))
(hash (~@ 'nc.name nc.taggee-infos) ...)]
[ht/class->condition : (Hashof Symbol TagCondition)
(hash (~@ 'nc.name nc.condition) ...)])
(FARGishSpec ht/class->parents
ht/class->apply-tag
ht/class->taggee-infos
ht/class->condition))))]))
(: ->spec : (U Graph FARGishSpec) -> FARGishSpec)
(define (->spec g-or-spec)
(cond
[(FARGishSpec? g-or-spec) g-or-spec]
[else (Graph-spec g-or-spec)]))
(: nodeclass-is-a? :
(U FARGishSpec Graph) (U Symbol Void) (U Symbol Void) -> Boolean)
(define (nodeclass-is-a? g-or-spec nc ancestor)
(cond
[(or (void? nc) (void? ancestor)) #f]
[(eq? nc ancestor) #t]
#:define ancestors (hash-ref (FARGishSpec-ht/class->parents
(->spec g-or-spec))
nc
(const (void)))
[(void? ancestors) #f]
[else (set-member? ancestors ancestor)]))
(: class->taggee-infos : (U Graph FARGishSpec) Symbol
-> (U (Listof TaggeeInfo) Void))
(define (class->taggee-infos g-or-spec class)
(hash-ref (FARGishSpec-ht/class->taggee-infos (->spec g-or-spec))
class
(const (void))))
(: class->condition : (U Graph FARGishSpec) Symbol -> (U Void TagCondition))
(define (class->condition g-or-spec class)
(hash-ref (FARGishSpec-ht/class->condition (->spec g-or-spec))
class
(const (void))))
;(spec (nodeclass (blah a b c)))
;
;(spec (nodeclass blah (is-a 'x 'y) (is-a 'z)))
;
;(spec
; (nodeclass blah
; (value 22)))
;(define-spec spec
; (nodeclass (number [n : Integer])
; (value n)
; (display-name n)
; (nodeclass (block [n : Integer])
; (display-name (format "block ~a" n))))
; (nodeclass plus)
; (tagclass greater-than
; (applies-to ())))
;(number 17)
| true |
c29366bc2686c2163a3bbd7381757585f9f30e2e | 3fd76585a1a9429a3bcd4ebbe8972e63361d7329 | /src/data-object.rkt | ce4e86f490e0a91d5b22be729db8209292319699 | [
"MIT"
]
| permissive | nickmain/racket-clips-ffi | 510e6579d88a8de473f7ee9ea9575f1ee5e47650 | c9124992ccfc43b02d9ac3727a4ecbb5c073c1fc | refs/heads/master | 2021-01-19T06:53:27.480427 | 2013-12-31T05:31:34 | 2013-12-31T05:31:34 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 4,602 | rkt | data-object.rkt | #lang racket
;----------------------------------------------------------------------------
; CLIPS DATA_OBJECT marshaling functions
;----------------------------------------------------------------------------
(provide (all-defined-out))
(require ffi/unsafe)
(require "clips-structs.rkt")
(require "clips-functions.rkt")
(define (empty-dataObject)
(make-dataObject #f 0 #f 0 0 #f))
; Marshall a scheme value into a dataObject
(define (value->dataObject env value ptr-dobj)
(let ([dobj (ptr-ref ptr-dobj _dataObject)])
(cond
[(symbol? value) (set-dataObject-type! dobj SYMBOL)
(set-dataObject-value! dobj (EnvAddSymbol env (symbol->string value)))]
[(symbol? value) (set-dataObject-type! dobj STRING)
(set-dataObject-value! dobj (EnvAddSymbol env value))]
[(exact-integer? value) (set-dataObject-type! dobj INTEGER)
(set-dataObject-value! dobj (EnvAddLong env value))]
[(real? value) (set-dataObject-type! dobj FLOAT)
(set-dataObject-value! dobj (EnvAddDouble env value))]
[(boolean? value) (value->dataObject env (if value 'TRUE 'FALSE) dobj)]
[(vector? value) (let* ([len (vector-length value)]
[mf (EnvCreateMultifield env len)]
[fields (ptr-ref (array-ptr (multifield-fields mf))
(_array _field len))])
(set-dataObject-type! dobj MULTIFIELD)
(set-dataObject-value! dobj mf)
(set-dataObject-begin! dobj 0)
(set-dataObject-end! dobj (- len 1))
(let loop ([i 0])
(when (< i len)
(value->field env
(vector-ref value i)
(array-ref fields i))
(loop (+ i 1)))))]
[(list? value) (value->dataObject env (list->vector value) dobj)]
[else (value->dataObject env 'nil dobj)])))
; Marshall a scheme value into a multifield field
(define (value->field env value field)
(cond
[(symbol? value) (set-field-type! field SYMBOL)
(set-field-value! field (EnvAddSymbol env (symbol->string value)))]
[(symbol? value) (set-field-type! field STRING)
(set-field-value! field (EnvAddSymbol env value))]
[(exact-integer? value) (set-field-type! field INTEGER)
(set-field-value! field (EnvAddLong env value))]
[(real? value) (set-field-type! field FLOAT)
(set-field-value! field (EnvAddDouble env value))]
[(boolean? value) (value->field env (if value 'TRUE 'FALSE) field)]
[else (value->field env 'nil field)]))
; marshal a dataObject to a scheme value
(define (dataObject->value dobj)
(clips-value->scheme-value (dataObject-value dobj)
(dataObject-type dobj)
(dataObject-begin dobj)
(dataObject-end dobj)))
; multifield to vector
(define (multifield->vector mf-ptr begin end)
(let* ([len (+ 1 (- end begin))]
[mf (ptr-ref mf-ptr _multifield)]
[fields (ptr-ref (array-ptr (multifield-fields mf))
(_array _field (multifield-length mf)))]
[v (make-vector len)])
(let loop ([vidx 0])
(when (< vidx len)
(let* ([fld (array-ref fields (+ vidx begin))]
[type (field-type fld)]
[val (field-value fld)])
(vector-set! v vidx
(clips-value->scheme-value val type))
(loop (+ vidx 1)))))
v))
; marshal a CLIPS value to a scheme value
(define (clips-value->scheme-value value-ptr type [begin 0] [end 0])
(case type
[(0) (floatHashNode-contents (ptr-ref value-ptr _floatHashNode))]
[(1) (integerHashNode-contents (ptr-ref value-ptr _integerHashNode))]
[(2) (let ([sym (string->symbol (symbolHashNode-contents (ptr-ref value-ptr _symbolHashNode)))])
(case sym
[(TRUE) #t]
[(FALSE) #f]
[else sym]))]
[(3 8) (symbolHashNode-contents (ptr-ref value-ptr _symbolHashNode))]
[(4) (multifield->vector value-ptr begin end)]
[(5) (externalAddressHashNode-externalAddress (ptr-ref value-ptr _externalAddressHashNode))]
[(6 7) value-ptr]
[else #f]))
| false |
da93118bbbfe63a3235102a84296703751e0c67b | 3e934e1eb7037ebc9ef5461e66981383cab6d373 | /seec/private/language.rkt | fc2ea8843b651c07e395b52b1bca3c20166c69b8 | [
"MIT"
]
| permissive | GaloisInc/SEEC | 7f28bd1a48a1092be63586683f8138615e6a92ad | 36c3f50b08038d4133acaf94ede7e09a97e1693c | refs/heads/master | 2023-06-07T23:21:38.954186 | 2021-07-06T23:39:14 | 2021-07-06T23:39:14 | 308,738,514 | 5 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 32,180 | rkt | language.rkt | #lang rosette/safe
(provide define-grammar
syntax-match?
enumerate
make-generator)
(require "bonsai3.rkt"
"match.rkt"
"solver-aided.rkt"
(only-in "string.rkt"
char
string
char?
string?
))
(require (only-in racket/base
[string? racket/string?]
[char? racket/char?]
raise-argument-error
parameterize
))
(require (for-syntax syntax/parse)
(for-syntax (only-in racket/syntax
format-id
))
(prefix-in unsafe:
(combine-in
(only-in racket
raise-arguments-error
for
for/fold
for/hash
for/list
in-list
in-set
list->set
set->list
set
set-add
set-union
set-subtract
set-intersect
set-empty?
hash
make-immutable-hash
hash-set
hash->list
values
string-append
symbol?
symbol->string
string->symbol
sequence->stream
in-range
in-producer)
racket/match
racket/generator
(only-in racket/string
string-prefix?
string-suffix?
string-trim))))
(struct grammar (nonterminals
terminals
productions
max-width))
(begin-for-syntax
; A grammar+ structure is a syntax-level representation of grammar terminals
; and nonterminals, used for extending a parent grammar to a child grammar.
; Without this structure, the parent grammar data would not be available at
; macro expansion time.
;
; The struct will be used as follows:
;
; (define-syntax lang (grammar+ match-expander terminalstx nonterminalstx))
;
; where `match-expander` is the (temporary) name of the relevant match
; expander, which gets exposed via `lang`; in other words, users will be able
; to write:
;
; (lang 3)
;
; or
;
; (match (lang 3) [(lang n:integer) n])
(struct grammar+ (id
terminals
nonterminals)
#:property prop:set!-transformer
(λ (me stx)
(with-syntax ([target (grammar+-id me)])
(syntax-parse stx #:literals (set!)
[(set! id args ...)
#'(set! target args ...)]
[(id args ...)
#'(target args ...)]
[_ #'target])))
#:property prop:match-expander
(λ (stx)
(syntax-parse stx
[(id args ...)
(let ([match-expander (grammar+-id (syntax-local-value #'id))])
#`(#,match-expander args ...))]))
)
; Access terminal and nonterminal data at macro expansion time
(define (get-nonterminal-stx stx)
(grammar+-nonterminals (syntax-local-value stx)))
(define (get-terminal-stx stx)
(grammar+-terminals (syntax-local-value stx)))
)
(define (max-width ls)
(cond
[(list? ls)
(apply max (length ls) (map max-width ls))]
[(symbol-is-polymorphic-type? "list" ls)
2]
[else
1]
))
(begin-for-syntax
(define builtin-nonterminals '(integer natural boolean bitvector char string any))
(define builtin-nonterminal-functions '(list))
(define-literal-set builtin-terminals #:datum-literals (nil cons bv) ())
(define builtins (append builtin-nonterminals builtin-nonterminal-functions))
)
(define builtin-nonterminals '(integer natural boolean bitvector char string any))
(define builtin-nonterminal-functions '(list))
(define builtin-terminals '(nil cons bv))
(define builtin-keywords (append builtin-nonterminal-functions builtin-terminals))
; OSTODO: properly populate the grammar for polymorphic types
(define make-grammar
(λ (rules
#:parent [parent #f]
)
(define-values (nonterminals metavars productions prod-max-width)
(unsafe:for/fold ([nonterminals (if parent
(unsafe:list->set (grammar-nonterminals parent))
(unsafe:set))]
[metavars (if parent
(unsafe:set-union
(unsafe:list->set builtin-nonterminals)
(unsafe:list->set (grammar-terminals parent))
(unsafe:list->set (grammar-nonterminals parent)))
(unsafe:list->set builtin-nonterminals))]
[productions (if parent
(unsafe:make-immutable-hash (grammar-productions parent))
(unsafe:hash))]
[prod-width (if parent
(grammar-max-width parent)
0)])
([production (unsafe:in-list rules)])
(let* ([nt (first production)]
[new-nts (unsafe:set-add nonterminals nt)]
[new-meta (unsafe:set-union metavars
(unsafe:list->set (flatten production)))]
[new-prods (unsafe:hash-set productions nt (rest production))]
[new-prod-width (apply max prod-width (map max-width (rest production)))])
(unsafe:values new-nts new-meta new-prods new-prod-width))))
(let* ([terminals (unsafe:set-subtract metavars nonterminals)]
)
(unsafe:for ([mv (unsafe:in-set metavars)])
(register-enum mv))
(grammar (unsafe:set->list nonterminals)
(unsafe:set->list terminals)
(unsafe:hash->list productions)
prod-max-width)
)
))
(define (symbol-is-polymorphic-type? t symb)
(and (unsafe:symbol? symb)
(let ([str (unsafe:symbol->string symb)])
(and
(unsafe:string-prefix? str (unsafe:string-append t "<"))
(unsafe:string-suffix? str ">")
))))
; if stx is of the form t<a>, returns a syntax element a
; expects (syntax-is-polymorphic-type? t stx)
(define (extract-polymorphic-type-symbol t symb)
(let* ([str (unsafe:symbol->string symb)]
[a (unsafe:string-trim
(unsafe:string-trim str (unsafe:string-append t "<")
#:right? #f #:repeat? #f)
">" #:left? #f #:repeat? #f)]
)
(unsafe:string->symbol a)))
; return #t if if `pattern` is a type compatible with the grammar `lang` and
; `tree` is a data structure of that type.
(define (syntax-match? lang pattern tree)
(for/all [(tree tree)]
(cond
; tree patterns
[(equal? 'nil pattern)
(seec-empty? tree)]
[(and (list? pattern)
(= (length pattern) 3)
(equal? (first pattern) 'cons))
(seec-cons-match?
(curry syntax-match? lang (second pattern))
(curry syntax-match? lang (third pattern))
tree)]
; test if pattern is a tuple of patterns
[(list? pattern)
(let ([pattern-length (length pattern)])
(and (bonsai-list? tree)
(andmap-indexed
(λ (i tree-i)
(cond
[(< i pattern-length) (syntax-match? lang (list-ref pattern i) tree-i)]
[else (bonsai-null? tree-i)]))
(bonsai-list-nodes tree))))]
[(equal? 'any pattern)
(bonsai? tree)]
[(equal? 'integer pattern)
(integer? tree)]
[(equal? 'natural pattern)
(and (integer? tree)
(>= tree 0))]
[(equal? 'char pattern)
(char? tree)]
[(equal? 'string pattern)
(string? tree)]
[(equal? 'boolean pattern)
(boolean? tree)]
[(equal? 'bitvector pattern)
(bv? tree)]
[(symbol-is-polymorphic-type? "list" pattern)
(let* ([a (extract-polymorphic-type-symbol "list" pattern)])
(seec-list-match? (curry syntax-match? lang) a tree))]
[(member pattern (grammar-nonterminals lang))
(let ([productions (cdr (assoc pattern (grammar-productions lang)))])
(ormap (λ (pat) (syntax-match? lang pat tree)) productions))]
[(member pattern (grammar-terminals lang))
(and (bonsai-terminal? tree)
(equal? (symbol->enum pattern) (bonsai-terminal-value tree)))]
[else #f])))
(begin-for-syntax
(define (syntax->string stx)
(symbol->string (syntax->datum stx)))
(define (string->syntax stx str)
(datum->syntax stx (string->symbol str)))
(define (syntax-has-colon? stx)
(string-contains? (syntax->string stx) ":"))
(define (before-colon stx)
(string->syntax stx (first (string-split (syntax->string stx) ":"))))
(define (after-colon stx)
(string->syntax stx (second (string-split (syntax->string stx) ":"))))
; Here, t is a string
; Return true if stx has the form t<a> for some syntax a
(define (polymorphic-type? t str)
(and
(string-prefix? str (string-append t "<"))
(string-suffix? str ">")
))
(define (syntax-is-polymorphic-type? t stx)
(let ([str (syntax->string stx)])
(polymorphic-type? t str)))
; if stx is of the form t<a>, returns a syntax element a
; expects (syntax-is-polymorphic-type? t stx)
(define (extract-polymorphic-type t str)
(string-trim (string-trim str (string-append t "<")
#:right? #f #:repeat? #f)
">" #:left? #f #:repeat? #f))
(define (syntax-extract-polymorphic-type t stx)
(let* ([str (syntax->string stx)])
(string->syntax stx (extract-polymorphic-type t str))))
(define (syntax-is-any? stx)
#;(printf "is this any? ~a~n" stx)
(and (syntax? stx) (equal? (syntax->datum stx) 'any)))
; SEEC types have the following form:
; typ ::= terminal | list<typ>
; returns true if pat has that form.
;
; Here, `pat` is a syntax object
(define (is-type? terminals pat)
(cond
[(syntax-is-polymorphic-type? "list" pat)
(is-type? terminals (syntax-extract-polymorphic-type "list" pat))]
[(syntax-is-any? pat) #t]
[(syntax? pat) (set-member? terminals (syntax->datum pat))]
[else #f]
))
; Terms in the grammar `lang-name` with terminals drawn from the set
; `terminals`.
(define-syntax-class (term lang-name terminals)
#:attributes (match-pattern stx-pattern depth)
#:literal-sets (builtin-terminals)
#:description (format "~a pattern ~a" lang-name terminals)
#:opaque
(pattern n:id ; (lang-name X) for X a type
#:when (and (syntax? #'n)
(not (syntax-has-colon? #'n))
(is-type? terminals #'n)
#;(set-member? terminals (syntax->datum #'n))
)
#:attr match-pattern #'_
#:attr stx-pattern #'n
#:attr depth #'1)
(pattern n:id ; (lang-name n:X) for X a type
#:when (and (syntax? #'n)
(syntax-has-colon? #'n)
(is-type? terminals (after-colon #'n))
#;(set-member? terminals (syntax->datum (after-colon #'n)))
)
#:attr match-pattern (before-colon #'n)
#:attr stx-pattern (after-colon #'n)
#:attr depth #'1)
(pattern n:integer
#:when (and (set-member? terminals 'natural) (>= (syntax->datum #'n) 0))
#:attr match-pattern #'(? (λ (v) (equal? n v)) _)
#:attr stx-pattern #'integer
#:attr depth #'1)
(pattern n:integer
#:when (set-member? terminals 'integer)
#:attr match-pattern #'(? (λ (v) (equal? n v)) _)
#:attr stx-pattern #'integer
#:attr depth #'1)
(pattern c:char
#:when (set-member? terminals 'char)
#:attr match-pattern #'(? (λ (v) (equal? (char c) v)) _)
#:attr stx-pattern #'char
#:attr depth #'1)
(pattern s:string
#:when (set-member? terminals 'string)
#:attr match-pattern #'(? (λ (v) (equal? (string s) v)) _)
#:attr stx-pattern #'string
#:attr depth #'1)
(pattern b:boolean
#:when (set-member? terminals 'boolean)
#:attr match-pattern #'(? (λ (v) (equal? b v)) _)
#:attr stx-pattern #'boolean
#:attr depth #'1)
(pattern (bv b)
#:declare b integer
#:when (set-member? terminals 'bitvector)
#:attr match-pattern #'(? (λ (v) (equal? b v)) _)
#:attr stx-pattern #'bitvector
#:attr depth #'1)
(pattern nil
; #:when (set-member? terminals 'list)
#:attr match-pattern #'bonsai-null
#:attr stx-pattern #'nil
#:attr depth #'0)
(pattern (cons p-first p-rest)
#:declare p-first (term lang-name terminals)
#:declare p-rest (term lang-name terminals)
#:attr match-pattern #'(bonsai-list p-first.match-pattern p-rest.match-pattern)
#:attr stx-pattern #'(cons p-first.stx-pattern p-rest.stx-pattern)
#:attr depth (datum->syntax
#'((~datum 'cons) p-first p-rest)
(add1 (max (syntax->datum #'p-first.depth)
(syntax->datum #'p-rest.depth)))))
(pattern (p ...)
#:declare p (term lang-name terminals)
#:attr match-pattern #'(bonsai-list p.match-pattern ...)
#:attr stx-pattern #'(p.stx-pattern ...)
#:attr depth (datum->syntax
#'(p ...)
(add1 (apply max (syntax->datum #'(p.depth ...)))))))
(define-syntax-class (concrete-term lang-name terminals builtins)
#:literals (unquote)
#:literal-sets (builtin-terminals)
#:description (format "concrete ~a pattern ~a" lang-name terminals)
#:opaque
(pattern n:id
#:when (and (not (syntax-has-colon? #'n))
#;(is-type? terminals #'n)
(set-member? terminals (syntax->datum #'n))
))
(pattern n:integer
#:when (and (set-member? builtins 'natural) (>= (syntax->datum #'n) 0)))
(pattern n:integer
#:when (set-member? builtins 'integer))
(pattern c:char
#:when (set-member? builtins 'char))
(pattern s:string
#:when (set-member? builtins 'string))
(pattern b:boolean
#:when (set-member? builtins 'boolean))
(pattern (bv b:integer)
#:when (set-member? builtins 'bitvector)
)
(pattern (unquote expr))
(pattern nil
#:when (set-member? builtins 'list)
)
(pattern (cons p-first p-rest)
#:declare p-first (concrete-term lang-name terminals builtins)
#:declare p-rest (concrete-term lang-name terminals builtins)
#:when (set-member? builtins 'list)
)
(pattern (p ...)
#:declare p (concrete-term lang-name terminals builtins)))
(define (sytnax-set stx)
(set (syntax->datum stx)))
#;(define (syntax-set stx)
(datum->syntax #f (apply set (syntax->list stx)))
#;(cond
[(equal? stx #f) (set)]
;[else (apply set (syntax->list stx))]
[else (set)]
)
)
#;(define (syntax-set-union stx)
(datum->syntax #f (apply set-union (syntax->datum stx) ...)))
; QUESTION: does this syntax class need more structure than just to say it is
; not in this set of builtin-nonterminals? What about other terminal vaalues?
(define-syntax-class nonterminal
#:description "nonterminal"
#:opaque
(pattern nt:id
#:when (not (member (syntax->datum #'nt) builtin-nonterminals))))
(define-syntax-class builtin
#:description "built-in nonterminal"
#:opaque
(pattern nt:id
#:when (member (syntax->datum #'nt) builtin-nonterminals)))
(define-syntax-class type
#:attributes (type-terminals)
#:datum-literals ,builtins
(pattern x:id
#:when (and (syntax-is-polymorphic-type? "list" #'x)
(syntax-parse (syntax-extract-polymorphic-type "list" #'x)
[t:type #t]
[_ #f]))
#:attr type-terminals (set-union
(set 'list)
(syntax-parse (syntax-extract-polymorphic-type "list" #'x)
[t:type (attribute t.type-terminals)]))
)
(pattern nt:nonterminal
#:attr type-terminals (set (syntax->datum #'nt)))
(pattern nt:builtin
#:attr type-terminals (set (syntax->datum #'nt)))
)
(define-syntax-class production
#:description "production"
#:attributes (terminals)
#:opaque
(pattern ty:type
#:attr terminals (attribute ty.type-terminals)
)
(pattern (p:production ...)
#:attr terminals (apply set-union (attribute p.terminals)))
)
; INPUT: syntax of productions
; OUTPUT: a set of the terminals that occur in the productions
(define (prods->terminals prods)
(syntax-parse prods
[p:production (attribute p.terminals)]
)
)
)
; Define type classifiers of the form lang-nt?
(define-syntax-rule (check-nonterminal lang nt0 expr)
(match expr
[(lang nt0) #t]
[_ #f]
))
(define-syntax (define-nonterminal-predicate stx)
(syntax-case stx ()
[(_ lang nt0)
(with-syntax ([new-name (format-id #'lang "~a-~a?" #'lang #'nt0)])
#`(define (new-name expr)
(check-nonterminal lang nt0 expr)))]))
(define-syntax (define-nonterminal-predicates stx)
(syntax-case stx ()
[(_ lang nt0 ...)
#`(begin
(define-nonterminal-predicate lang nt0)
...)
]))
; The temporary name will be used as a target of the macro expander, but will be
; renamed by make-grammar+.
(define-syntax (define-grammar-match-expander stx)
(syntax-parse stx
[(_ tmp-name:id name:id grammar terminalstx ntstx)
#`(define-match-expander tmp-name
; The first argument of the match-expander is the behavior used
; with the `match` construct. That is, the match pattern
;
; (match e
; [(name pat) continuation]
; ...)
;
; will match against `e` provided:
;
; 1. `pat` is a member of the `term` syntax class for the grammar
; `name`;
;
; 2. the function `syntax-match?` returns #t when applied to the
; syntax-pattern associated with `pat` and the runtime representation of `e`;
;
; In that case, the match will expand to
; (match e
; [pat.match-pattern continuation]
; ...)
;
(lambda (stx)
(syntax-parse stx
[(_ pat)
#:declare pat (term #,(syntax->string #'name)
terminalstx)
#'(? (λ (t) (syntax-match? name 'pat.stx-pattern t)) pat.match-pattern)]))
(lambda (stx)
(syntax-parse stx
[n:id #'grammar]
[(_ pat)
#:declare pat (concrete-term
#,(syntax->string #'name)
(set-subtract (list->set terminalstx)
(list->set ntstx)
(list->set builtins))
(set-intersect (list->set terminalstx) (list->set builtins)))
#'(make-concrete-term! name pat)]
[(_ pat depth)
#:declare pat (term #,(syntax->string #'name)
terminalstx)
#'(make-term! name pat depth)]
)))]))
(define-syntax (check-reserved-keywords stx)
(syntax-parse stx
[(_ grammar)
; Throw an exception if any reserved keywords from
; `builtin-keywords` occured in the grammar
#`(let ([keywords-in-nonterminals
(unsafe:set-intersect (grammar-nonterminals grammar)
builtin-keywords)]
[keywords-in-terminals
(unsafe:set-intersect (grammar-terminals grammar)
builtin-keywords)]
)
(cond
[(not (unsafe:set-empty? (unsafe:set-union keywords-in-nonterminals
keywords-in-terminals)))
(unsafe:raise-arguments-error 'define-grammar
"Illegal use of reserved keywords"
"keywords used as nonterminals" keywords-in-nonterminals
"keywords used as terminals" keywords-in-terminals
)]
))
]))
; Define a grammar+ instance to encode syntax. Note that the procedure
; associated with the grammar+ instance will expose the match expander via a
; call directly to (name), and (get-terminal-stx name) and (get-nonterminal-stx
; name) will expose the syntax-level data.
(define-syntax (make-grammar+ stx)
(syntax-parse stx
[(_ name:id match-expander:id terminals nonterminals)
(with-syntax ([id-syntax (format-id #'name "~a-syntax" #'name)])
#`(define-syntax name (grammar+ #'match-expander #'terminals #'nonterminals))
)]))
(define-syntax (define-grammar stx)
(syntax-parse stx
#:datum-literals (::=)
[(_ name:id
(~optional (~seq #:extends parent))
(nt:nonterminal ::= prod:production ...) ...)
; If a parent grammar is supplied, we will add the parent's terminals and
; nonterminals to the new grammar
(with-syntax ([old-nts (if (attribute parent)
(get-nonterminal-stx #'parent)
#`(list ))]
[old-terminals (if (attribute parent)
(get-terminal-stx #'parent)
#'(list ))]
)
(let* ([prods (syntax->datum #'((nt prod ...) ...))]
[new-nts (syntax->datum #'(nt ...))]
[nts (append (syntax->datum #'old-nts) new-nts)]
[new-terminals (set->list (prods->terminals prods))]
[terminals (append (syntax->datum #'old-terminals) new-terminals)]
[builtin-nts (set->list (set-intersect (list->set terminals)
(list->set builtin-nonterminals)))]
)
#`(begin
(define lang-struct (make-grammar '#,prods #:parent #,(attribute parent)))
; Throw an exception if any reserved keywords from
; `builtin-keywords` occured in the grammar
(check-reserved-keywords lang-struct)
; Define the match expander
(define-grammar-match-expander tmp-match-expander name lang-struct '#,terminals '#,nts)
; Register the syntax level terminals and nonterminals
(make-grammar+ name tmp-match-expander #,terminals #,nts)
; Add predicates for each nonterminal
;
; Usage: For each user-defined or builtin nonterminal `nt` that
; occurs in the grammar `name`, we define a function `name-nt?`
; that takes `x` of any type and returns a boolean---`#t` if `x`
; matches the pattern `(name nt)` and `#f` otherwise
(define-nonterminal-predicates name nt ...)
(define-nonterminal-predicates name #,@builtin-nts)
)))]))
(define-syntax (make-concrete-term! stx)
(syntax-parse stx
#:literals (unquote)
#:literal-sets (builtin-terminals)
[(_ lang:id nil)
#'seec-empty]
[(_ lang:id (cons p-first p-rest))
#`(seec-cons (make-concrete-term! lang p-first) (make-concrete-term! lang p-rest))]
[(_ lang:id (bv b))
#`(integer->bv b)]
[(_ lang:id n:integer)
#'n]
[(_ lang:id c:char)
#'(char c)]
[(_ lang:id s:string)
#'(string s)]
[(_ lang:id b:boolean)
#'b]
[(_ lang:id s:id)
#`(bonsai-terminal (symbol->enum 's))]
[(_ lang:id (unquote e:expr)) #'e] ; TODO: do we want to add a check that e
; has bonsai? type? If so, I'm afraid
; doing it here would add a lot of
; unnecessary noise on symbolic terms.
[(_ lang:id (pat ...))
#`(bonsai-list (list (make-concrete-term! lang pat) ...))]))
(define-syntax (make-term! stx)
(syntax-parse stx
[(_ lang:id pat depth:expr)
#`(let ([tree (make-tree! depth (grammar-max-width lang))])
(assert
(parameterize ([check-unreachable #f])
(match tree
[(lang pat) #t]
[_ #f])))
tree)]))
(define-syntax (make-generator stx)
(syntax-parse stx
[(_ pat (~optional (~seq #:where assert-fun:expr)
#:defaults ([assert-fun #'(lambda (t) #t)])))
#'(unsafe:generator
()
(let loop ([found (list)])
(let* ([tmp pat]
[tmpsol (solve (assert
(and (not (ormap (lambda (t) (equal? tmp t)) found))
(assert-fun tmp))))])
(if (unsat? tmpsol)
#f
(let ([newfound (concretize tmp tmpsol)])
(unsafe:yield newfound)
(loop (cons newfound found)))))))]))
(define-syntax (enumerate stx)
(syntax-parse stx
[(_ (~optional (~seq #:count max:expr)
#:defaults ([max #'#f]))
pat
(~optional (~seq #:where assert-fun:expr)
#:defaults ([assert-fun #'(lambda (t) #t)])))
#'(let ([generator (make-generator pat #:where assert-fun)])
(unsafe:for/list ([i (unsafe:in-range max)]
[t (unsafe:in-producer generator #f)])
t))]))
;;;;;;;;;;;
;; TESTS ;;
;;;;;;;;;;;
(module* test rosette/safe
(require rackunit)
(require (only-in racket/base
raise
exn:fail?
make-exn:fail
current-continuation-marks
parameterize))
(require (submod ".."))
(require seec/private/match
seec/private/bonsai3
seec/private/solver-aided)
(require (for-syntax syntax/parse))
(define-grammar test-grammar
(base ::= integer natural boolean bitvector)
(op ::= + - and or)
(exp ::= base (op exp exp) (Var integer))
(prog ::= list<exp>))
(define-grammar test-grammar-extra #:extends test-grammar
(foo ::= base (op foo foo) FOO)
)
(test-case
"Concrete term constructors"
(check-equal? (bonsai-terminal (symbol->enum '+))
(test-grammar +))
(check-equal? (bonsai-terminal (symbol->enum 'FOO))
(test-grammar-extra FOO))
(check-equal? (bonsai-terminal (symbol->enum '+))
(test-grammar-extra +))
(check-equal? (test-grammar-extra (- FOO 3))
(bonsai-list (list (test-grammar-extra -)
(test-grammar-extra FOO)
(test-grammar-extra 3))))
(check-equal? (bonsai-terminal (symbol->enum 'and))
(test-grammar and))
(check-equal? (bonsai-list
(list (bonsai-terminal (symbol->enum '+))
42
#f))
(test-grammar (+ 42 #f)))
)
(define-syntax (match-check stx)
(syntax-parse stx
[(_ val pat body)
#'(check-not-exn
(thunk (unless (parameterize ([check-unreachable #f]) (match val [pat body]))
(raise (make-exn:fail "Failed match-check"
(current-continuation-marks))))))]))
(test-case
"Match expanders"
(match-check
(test-grammar 5)
(test-grammar i:integer)
(eq? 5 i))
(match-check
(test-grammar -5)
(test-grammar i:integer)
(eq? -5 i))
(match-check
(test-grammar 5)
(test-grammar n:natural)
(eq? 5 n))
(match-check
(test-grammar #t)
(test-grammar b:boolean)
b)
(match-check
(test-grammar #f)
(test-grammar b:boolean)
(not b))
(match-check
(test-grammar (bv 3))
(test-grammar b:bitvector)
(eq? (integer->bv 3) b))
(match-check
(test-grammar (+ 5 #f))
(test-grammar exp)
#t)
(match-check
(test-grammar (+ 5 #f))
(test-grammar (op exp exp))
#t)
(match-check
(test-grammar (+ 5 #f))
(test-grammar (+ natural boolean))
#t)
(match-check
(test-grammar (cons 5 (cons 5 (cons 5 nil))))
(test-grammar (cons natural list<natural>))
#t)
(match-check
(test-grammar-extra (- FOO FOO))
(test-grammar-extra (o:op f:foo FOO))
(and (equal? o (test-grammar-extra -))
(equal? f (test-grammar-extra FOO))))
)
(test-case
"Symbolic term constructors"
(match-check
(test-grammar integer 1)
(test-grammar i:integer)
(integer? i))
(match-check
(test-grammar integer 1)
(test-grammar n:natural)
(>= n 0))
(match-check
(test-grammar exp 3)
(test-grammar (Var x:integer))
(= x 0))
(match-check
(test-grammar-extra foo 2)
(test-grammar-extra (b:integer))
(integer? b))
(match-check
(test-grammar-extra foo 2)
(test-grammar-extra FOO)
#t)
)
(test-case "Types"
(check-equal? (test-grammar-base? (test-grammar 5)) #t)
(check-equal? (test-grammar-base? (test-grammar +)) #f)
(check-equal? (test-grammar-op? (test-grammar 5)) #f)
(check-equal? (test-grammar-op? (test-grammar +)) #t)
(check-equal? (test-grammar-natural? (test-grammar 5)) #t)
(check-equal? (test-grammar-extra-natural? (test-grammar 5)) #t)
(check-equal? (test-grammar-extra-foo? (test-grammar 5)) #t)
(check-equal? (test-grammar-extra-foo? (test-grammar-extra +)) #f)
)
)
| true |
bde28e60846310b796681cd6948e404cabba6b04 | f05faa71d7fef7301d30fb8c752f726c8b8c77d4 | /src/exercises/ex-3.18.rkt | ec48a42a93f3e1618cadbae238add8eb92dc8a95 | []
| no_license | yamad/sicp | c9e8a53799f0ca6f02b47acd23189b2ca91fe419 | 11e3a59f41ed411814411e80f17606e49ba1545a | refs/heads/master | 2021-01-21T09:53:44.834639 | 2017-02-27T19:32:23 | 2017-02-27T19:32:23 | 83,348,438 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,213 | rkt | ex-3.18.rkt | #lang r5rs
;; exercise 3.18 -- detect cycles in lists
;; detect a cycle in list. uses depth-first search
(define (cycle? l)
(define (dfs rest marked)
(cond ((null? rest) #f) ; reached the end with no cycles
((member (car rest) marked) #t) ; found cycle
((not (pair? (car rest)))
(dfs (cdr rest) (cons (car rest) marked)))
(else
(or (dfs (car rest) (cons (car rest) marked))
(dfs (cdr rest) (cons (car rest) marked))))))
(dfs l '()))
;; test
(define a
(let* ((z (list 'c))
(y (cons 'b z))
(x (cons 'a y)))
x))
(define b
(let* ((z (list 'c))
(y (cons z z))
(x (cons 'a y)))
x))
(define c
(let* ((z (list 'c))
(y (cons z z))
(x (cons y y)))
x))
(define d
(let* ((z (list 'c))
(y (cons z z))
(x (cons y y)))
(set-cdr! z x)
x))
(define e
(let* ((d (list 'd))
(c (cons d d))
(b (cons d c))
(a (cons b b)))
(set-car! b (cons 'x a))
a))
(define (println a)
(display a) (newline))
(println (cycle? a))
(println (cycle? b))
(println (cycle? c))
(println (cycle? d))
(println (cycle? e))
| false |
40a9aa3325e163760dcde9e0ff5323d7b488c0b1 | 8c492ce2dfcb1e047c28de8753c173842fdaeb21 | /prelude/core/component.rkt | 749eea767ec8c978b30ce0bad4bb179dbd59df05 | []
| no_license | carl-eastlund/refined-acl2 | f8775e2f899e71778a1909d74066e6063b60d645 | 2e344ad7bcbc5b5a758296a8158dcf9a7f3880bd | refs/heads/master | 2021-01-21T21:47:42.946847 | 2016-03-19T18:32:50 | 2016-03-19T18:32:50 | 12,603,459 | 2 | 1 | null | 2016-03-19T18:32:50 | 2013-09-04T22:22:07 | Racket | UTF-8 | Racket | false | false | 4,163 | rkt | component.rkt | #lang refined-acl2/kernel
(provide
component
~component
generic
~generic
instance
use
~use
dot
open
~open
define-simple)
(require
(for-syntax
mischief)
refined-acl2/prelude/core/keywords
refined-acl2/prelude/core/support
refined-acl2/prelude/core/imported)
(define-shorthand (define-simple name:id term:expr)
(define-values {name} term))
(define-shorthand (open name:comp-id ...)
(begin (bind-members name) ...))
(define-shorthand (~open name:comp-id ...)
(begin (bind-members name #:declare) ...))
(define-shorthand (use name:comp-id ...)
(begin (bind-members name #:dotted) ...))
(define-shorthand (~use name:comp-id ...)
(begin (bind-members name #:dotted #:declare) ...))
(define-syntax (dot stx)
(syntax-parse stx
[(_ name:comp-id label:id ...)
(for/fold {[ref-stx (@ name)]} {[label-stx (in-list (@ label))]}
(quasisyntax/loc stx
(#%deref #,ref-stx '#,(intern-id label-stx))))]))
(define-syntax (component stx)
(syntax-parse stx
[(_ name:id #:> desc:desc-spec body:expr ...)
(define/syntax-parse comp-name:id (derived (@ name)))
#'(begin
(define-values {comp-name}
(implement-description desc.term body ...))
(define-syntaxes {name}
(meta-component #'comp-name #'desc.static))
(declare-synonyms [name comp-name]))]))
(define-syntax (~component stx)
(syntax-parse stx
[(_ name:id #:> desc:desc-spec)
(define/syntax-parse comp-name:id (derived (@ name)))
#'(begin
(declare-values {comp-name} desc.dynamic)
(declare-syntaxes {name} comp-name
(meta-component #'comp-name #'desc.static))
(declare-synonyms [name comp-name]))]))
(define-syntax (generic stx)
(syntax-parse stx
[(_ (name:id formal:id #:> domain:desc-spec/base)
#:> range:desc-spec/base
body:expr ...)
#'(generic (name [formal #:> domain.term]) #:> range.term body ...)]
[(_ (name:id [formal:id #:> domain:desc-spec] ...)
#:> range:desc-spec
body:expr ...)
(define/syntax-parse gen-name:id (derived (@ name)))
(define/syntax-parse [gen-formal:id ...] (map derived (@ formal)))
#'(begin
(define-values {gen-name}
(#%plain-lambda {gen-formal ...}
(define-syntaxes {formal ...}
(values (meta-component #'gen-formal #'domain.static) ...))
(begin0 (implement-description range.term body ...)
domain.dynamic
...)))
(define-syntaxes {name}
(meta-generic #'gen-name #'range.static))
(declare-synonyms [name gen-name]))]))
(define-syntax (~generic stx)
(syntax-parse stx
[(_ (name:id formal:id #:> domain:desc-spec/base)
#:> range:desc-spec/base)
#'(~generic (name [formal #:> domain.term]) #:> range.term)]
[(_ (name:id [formal:id #:> domain:desc-spec] ...)
#:> range:desc-spec)
(define/syntax-parse gen-name:id (derived (@ name)))
(define/syntax-parse [gen-formal:id ...] (map derived (@ formal)))
#'(begin
(declare-values {gen-name}
(#%plain-lambda {gen-formal ...}
(define-syntaxes {formal ...}
(values (meta-component #'gen-formal #'range.term) ...))
(begin0 range.dynamic
domain.dynamic
...)))
(declare-syntaxes {name} gen-name
(meta-component #'gen-name #'range.term))
(declare-synonyms [name gen-name]))]))
(define-syntax (instance stx)
(syntax-parse stx
[(_ name:id (gen:gen-id arg:comp-id ...))
(define/syntax-parse inst-name:id (derived (@ name)))
(define/syntax-parse gen-dynamic (meta-proxy-target (@ gen.value)))
(define/syntax-parse [arg-dynamic ...]
(map meta-proxy-target (@ arg.value)))
(define/syntax-parse desc
((@ gen.delta) (meta-generic-range (@ gen.value))))
#'(begin
(define-values {inst-name}
(#%instantiate gen-dynamic arg-dynamic ...))
(define-syntaxes {name}
(meta-component #'inst-name #'desc))
(declare-synonyms [name inst-name]))]))
| true |
725635ad0b3b0e787c361a0bd8ece997d3e2273b | 592a279f868ebe8c0fbdffc1136461c85e818cad | /racket-module/cake.rkt | 027a5c071d5434e4a51e75f1a3c603b4492901ef | [
"Unlicense"
]
| permissive | seckcoder/lang-learn | ad0e849e7575a47bd5cd88d1ff4c56a4eec8ec65 | 1e0d6f412bbd7f89b1af00293fd907ddb3c1b571 | refs/heads/master | 2021-01-20T06:56:49.322037 | 2015-10-28T22:25:05 | 2015-10-28T22:25:05 | 13,863,341 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 262 | rkt | cake.rkt | (module m1 racket
; The name of module doens't matter
(provide talk)
(define (talk)
(printf "I'm cake\n")
))
; We can only define a module in a file
#|(module m2 racket
(provide talk2)
(define (talk2)
(printf "I'm not a cake\n")
))|#
| false |
aeb7a117ea381364aebd9b3c7292820662e2ecb8 | 82c76c05fc8ca096f2744a7423d411561b25d9bd | /typed-racket-test/succeed/gh-issue-1234.rkt | c9a9d10306402962eea66278963cad45dd4f12c7 | [
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/typed-racket | 2cde60da289399d74e945b8f86fbda662520e1ef | f3e42b3aba6ef84b01fc25d0a9ef48cd9d16a554 | refs/heads/master | 2023-09-01T23:26:03.765739 | 2023-08-09T01:22:36 | 2023-08-09T01:22:36 | 27,412,259 | 571 | 131 | NOASSERTION | 2023-08-09T01:22:41 | 2014-12-02T03:00:29 | Racket | UTF-8 | Racket | false | false | 1,490 | rkt | gh-issue-1234.rkt | #lang racket/base
(require racket/sandbox)
(call-with-limits
20
500
(λ () (eval '(begin (module a typed/racket
(provide (all-defined-out))
(define-type (Formula a)
(U
True
False
(Atom a)
(Not a)
(And a)
(Or a)
(Imp a)
(Iff a)
(Forall a)
(Exists a)
))
(struct False () #:transparent)
(struct True () #:transparent)
(struct (a) Atom ([f : a]) #:transparent)
(struct (a) Not ([f : (Formula a)]) #:transparent)
(struct (a) And ([l : (Formula a)] [r : (Formula a)]) #:transparent)
(struct (a) Or ([l : (Formula a)] [r : (Formula a)]) #:transparent)
(struct (a) Imp ([pre : (Formula a)] [post : (Formula a)]) #:transparent)
(struct (a) Iff ([l : (Formula a)] [r : (Formula a)]) #:transparent)
(struct (a) Forall ([v : String] [f : (Formula a)]) #:transparent)
(struct (a) Exists ([v : String] [f : (Formula a)]) #:transparent))
(require 'a))
(make-base-namespace))))
| false |
994e48515cfa8b944cac4386920275c7ff00d6cc | 82c76c05fc8ca096f2744a7423d411561b25d9bd | /typed-racket-test/optimizer/tests/unboxed-make-rectangular.rkt | 2a794080cfce251cf7958a73b29e4d5ee36c12bd | [
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/typed-racket | 2cde60da289399d74e945b8f86fbda662520e1ef | f3e42b3aba6ef84b01fc25d0a9ef48cd9d16a554 | refs/heads/master | 2023-09-01T23:26:03.765739 | 2023-08-09T01:22:36 | 2023-08-09T01:22:36 | 27,412,259 | 571 | 131 | NOASSERTION | 2023-08-09T01:22:41 | 2014-12-02T03:00:29 | Racket | UTF-8 | Racket | false | false | 1,127 | rkt | unboxed-make-rectangular.rkt | #;#;
#<<END
TR opt: unboxed-make-rectangular.rkt 5:6 (x (make-rectangular 1.0 2.0)) -- unboxed let bindings
TR opt: unboxed-make-rectangular.rkt 5:9 (make-rectangular 1.0 2.0) -- make-rectangular elimination
TR opt: unboxed-make-rectangular.rkt 6:2 (+ x 2.0+4.0i) -- unboxed binary float complex
TR opt: unboxed-make-rectangular.rkt 6:5 x -- leave var unboxed
TR opt: unboxed-make-rectangular.rkt 6:7 2.0+4.0i -- unboxed literal
TR opt: unboxed-make-rectangular.rkt 7:6 (x (unsafe-make-flrectangular 1.0 2.0)) -- unboxed let bindings
TR opt: unboxed-make-rectangular.rkt 7:9 (unsafe-make-flrectangular 1.0 2.0) -- make-rectangular elimination
TR opt: unboxed-make-rectangular.rkt 8:2 (+ x 2.0+4.0i) -- unboxed binary float complex
TR opt: unboxed-make-rectangular.rkt 8:5 x -- leave var unboxed
TR opt: unboxed-make-rectangular.rkt 8:7 2.0+4.0i -- unboxed literal
END
#<<END
3.0+6.0i
3.0+6.0i
END
#lang typed/scheme
#:optimize
#reader typed-racket-test/optimizer/reset-port
(require racket/unsafe/ops)
(let ((x (make-rectangular 1.0 2.0)))
(+ x 2.0+4.0i))
(let ((x (unsafe-make-flrectangular 1.0 2.0)))
(+ x 2.0+4.0i))
| false |
4056301a4707b6637440b3c3156cc8a0667394e1 | 82c76c05fc8ca096f2744a7423d411561b25d9bd | /typed-racket-lib/typed-racket/static-contracts/combinators/none.rkt | 6d67387acb856f60cecf23516173f7e08f075f00 | [
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/typed-racket | 2cde60da289399d74e945b8f86fbda662520e1ef | f3e42b3aba6ef84b01fc25d0a9ef48cd9d16a554 | refs/heads/master | 2023-09-01T23:26:03.765739 | 2023-08-09T01:22:36 | 2023-08-09T01:22:36 | 27,412,259 | 571 | 131 | NOASSERTION | 2023-08-09T01:22:41 | 2014-12-02T03:00:29 | Racket | UTF-8 | Racket | false | false | 1,120 | rkt | none.rkt | #lang racket/base
;; Static contract for none/c.
;; Allows optimizations as many combinators can be simplified if their arguments are none/sc
;; Ex: (listof/sc none/sc) => null?/sc
(require "../../utils/utils.rkt"
"../structures.rkt" "../constraints.rkt"
racket/match
(contract-req)
(for-template racket/base racket/contract/base)
(for-syntax racket/base syntax/parse))
(provide none/sc:)
(provide/cond-contract
[none/sc static-contract?])
;;Printing
(define (none-write-proc v port mode)
(if (equal? mode 0)
(display "none/sc" port)
(display "#<none/sc>" port)))
(struct none-combinator combinator ()
#:transparent
#:methods gen:sc
[(define (sc-map v f) v)
(define (sc-traverse v f) (void))
(define (sc->contract v f) #'none/c)
(define (sc->constraints v f) (simple-contract-restrict 'flat))]
#:methods gen:custom-write [(define write-proc none-write-proc)])
(define-match-expander none/sc:
(syntax-parser
[(_) #'(? none-combinator?)]))
(define none/sc (none-combinator null))
| false |
1cbed0590590df38ca76d926c7e412f348223751 | 80133e0ed9977f2b9f14ad175a23a02bbdba5ef8 | /the-numbers-game-2.bak | 2468d98bfb911ea2fcf3a29472f0d7fc4f6de6c6 | []
| no_license | thoughtstem/ts-curric-puzzles | 73c19dcb0f8b337de46737b16a253f3b03c246dc | 21f38610755da3c49a36e7553bf30fc4c459d10a | refs/heads/master | 2020-04-02T00:53:20.671556 | 2018-11-19T07:37:24 | 2018-11-19T07:37:24 | 153,826,667 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 5,119 | bak | the-numbers-game-2.bak | #lang racket
(provide the-numbers-game-2)
(require ts-racket
2htdp/image
"quizzes.rkt")
;Abstract this...
(define-syntax-rule (try-circle params ...)
(try (circle params ...)))
; the-numbers-game-2
; Order of operations with addition and subtraction.
(define qs
(list
(yes-no-question (stack
"Let’s practice adding and subtracting numbers in Dr. Racket!"
(row "Please type " (code (yes)) " to proceed.")) 'yes)
(simple-question (stack
"For some questions you'll need to type in Dr. Racket commands: "
(row (code (answer _____))", where the blank field is the command.")
"Let's practice that!"
"Please answer this question by typing the command to draw a star:"
(code (answer (star 50 "solid" "purple"))))
(curry equal? (star 50 "solid" "purple")))
(yes-no-question (stack
"Great job! Let's refresh how to add numbers in Dr. Racket!"
"You can use operator + to add two and more numbers:"
(code (+ 2 3))
(code (+ 34 5 6 3))
"This is equvalent to:"
"2 + 3 = 5"
"34 + 5 + 6 + 3 = 48"
(row "Please type " (code (yes)) " to proceed."))
'yes)
(simple-question (stack
"Please type the command to add 5+1 in Dr. Racket."
(row "HINT: use " (code (answer _____)) " to type your answer."))
(curry equal? (or (+ 5 1) (+ 1 5))))
(yes-no-question (stack
"Very good! Here are subtraction commands:"
(code (- 2 1))
(code (- 30 5 1))
"This is equvalent to:"
"2 - 1 = 1"
"30 - 5 - 1 = 24"
"Please type (yes) to proceed.")
'yes)
(simple-question (stack
"To practice that, please type the command to do 10-5-1."
(row "HINT: use " (code (answer _____)) " to type your answer."))
(curry equal? (or (- 10 5 1) (+ 10 1 5))))
(yes-no-question (stack "Wonderful!"
"You mastered addition and subtraction!"
"You now ready to add more parentheses!")
'yes)
(simple-question (stack
"In math we use parentheses () to show what operation will be done first."
"For example:"
"(4 – 2) + 1"
"= 2 + 1"
"= ?"
"What is (4 – 2) + 1 equal to?")
(curry equal? 3))
(yes-no-question (stack
"In Dr.Racket code in inner parentheses will be run first:"
(code (+ (- 4 2) 1))
"Here is command breakdown:"
(row (code (- 4 2)) " will be run first")
(row (code (+ 2 1)) " computes final result.")
(row "Please type " (code (yes)) " to proceed."))
'yes)
(yes-no-question (stack
"Now, let's look on this expression:"
"5 – (3 + 1)"
"Do we need to do addition (+) first to solve this?"
(row "Please type " (code (yes)) " to proceed."))
'yes)
(simple-question (stack
"Please type in the command to do 3+1 in Dr. Racket."
(row "HINT: please use " (code (answer _____)) " to type your command."))
(curry equal? (or (+ 3 1) (+ 1 3))))
(simple-question (stack
"That's right, to compute:"
"5 – (3 + 1)"
"we first need to do 3+1:"
(code (+ 3 1 ))
"Then we need to subtract that from 5:"
(code (- 5 ___))
(row "Please replace ___ with " (code (+ 3 1 )) "to finish the command.")
(row "HINT: please use " (code (answer _____)) " to type your command.")
"I know, it's a lot of parentheses :)")
(curry equal? (or (- 5 (+ 3 1)) (- 5 (+ 1 3)))))
(simple-question (stack
"Fantastic! Yes, for an expression:"
"5 – (3 + 1)"
"the complete Dr. Racket command will look like:"
(code (- 5 (+ 3 1)))
"Let's try simular expression:"
"23 – (10 + 5)"
"Please type a Dr. Racket command to compute it."
(row "HINT: don't forget to use " (code (answer _____)) "."))
(curry equal? (or (- 23 (+ 10 5)) (- 23 (+ 5 10)))))
))
(define (the-numbers-game-2)
(apply start-quiz qs))
(module+ test
(the-numbers-game-2))
| true |
9d16a3d930b8aca55f027976f9f0634785ef62c3 | 9101470cfbfc3c91e240e2a963fb3760744d9d25 | /guide/contracts/boundary.rkt | ef44bcdab87bb8f17973c5cfe7d54630c7684aca | [
"MIT"
]
| permissive | sylsaint/racket | 49e2fc01ccec8538d0d9b9d35f73b4b6772bfd93 | 5c11113e5247502e6e0ea877f2538dce508c36f2 | refs/heads/master | 2020-12-21T22:17:32.873776 | 2016-12-19T09:32:14 | 2016-12-19T09:43:25 | 59,442,778 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,067 | rkt | boundary.rkt | #lang racket
; 1. boundary
; The agreement specifies obligations and guarantees for each “product” (or value) that is handed from one party to the other
; In this spirit, Racket encourages contracts mainly at module boundaries. Specifically, programmers may attach contracts
; to provide clauses and thus impose constraints and promises on the use of exported values.
(provide (contract-out [amount positive?]))
(define amount 10)
; The contracts library is built into the Racket language, but if you wish to use racket/base,
; you can explicitly require the contracts library like this
; 2. violation
; To make the contract capture our intentions for all Racket values, we can ensure that the value is both a number and is positive,
; combining the two contracts with and/c
(provide (contract-out [number (and/c number? positive?)]))
(define number 10)
; 3. Experimenting with Contracts and Modules
; All of the contracts and modules in this chapter (excluding those just following) are written using the standard #lang syntax for describing modules.
; | false |
ce40d10997c29d602934f732ed0013bb7c2d8f80 | 099418d7d7ca2211dfbecd0b879d84c703d1b964 | /whalesong/lang/bool.rkt | 7cf34e4ade081b12c48ba474f31d81fae7196e24 | []
| no_license | vishesh/whalesong | f6edd848fc666993d68983618f9941dd298c1edd | 507dad908d1f15bf8fe25dd98c2b47445df9cac5 | refs/heads/master | 2021-01-12T21:36:54.312489 | 2015-08-19T19:28:25 | 2015-08-19T20:34:55 | 34,933,778 | 3 | 0 | null | 2015-05-02T03:04:54 | 2015-05-02T03:04:54 | null | UTF-8 | Racket | false | false | 456 | rkt | bool.rkt | #lang s-exp "kernel.rkt"
(provide true false false?
boolean=?
symbol=?)
(define true #t)
(define false #f)
(define (false? v) (eq? v #f))
(define (boolean=? x y)
(unless (and (boolean? x) (boolean? y))
(raise-type-error 'boolean=? "boolean" (if (boolean? x) 1 0) x y))
(eq? x y))
(define (symbol=? x y)
(unless (and (symbol? x) (symbol? y))
(raise-type-error 'symbol=? "symbol" (if (symbol? x) 1 0) x y))
(eq? x y))
| false |
b72e6b2925ebf4d0b9da08783312d247729af67d | d2d01d48d5c59d54c295f8474c45e3b42f605005 | /old/brainstorm/accelerack2.rkt | 5007628fa77fde033ec96b1b6651180c3619d388 | []
| no_license | iu-parfunc/accelerack | 543d73e3a01711ad765f6ee4defef0c9d52447b8 | 9550ecc1e7494d296f3faac3aef71393c1705827 | refs/heads/master | 2021-01-21T04:27:28.653604 | 2016-05-02T14:02:24 | 2016-05-02T14:02:24 | 30,226,648 | 3 | 6 | null | null | null | null | UTF-8 | Racket | false | false | 258 | rkt | accelerack2.rkt | #lang racket
(provide acc)
(define-syntax acc
(syntax-rules ()
[(acc (define (fn x) body)) (define (fn x) body)]
;[(acc (generate x
[(acc exp) (begin (display "uncaught") exp)]
[(acc exp exp2 x ...) (begin (acc exp) (acc exp2 x ...))]))
| true |
8499f8899a0434e72222a37e7e9856eeaa4a03bc | b08b7e3160ae9947b6046123acad8f59152375c3 | /Programming Language Detection/Experiment-2/Dataset/Train/Racket/identity-matrix.rkt | f94fd6e275526394fc7609915167e6ae7cdf8639 | []
| no_license | dlaststark/machine-learning-projects | efb0a28c664419275e87eb612c89054164fe1eb0 | eaa0c96d4d1c15934d63035b837636a6d11736e3 | refs/heads/master | 2022-12-06T08:36:09.867677 | 2022-11-20T13:17:25 | 2022-11-20T13:17:25 | 246,379,103 | 9 | 5 | null | null | null | null | UTF-8 | Racket | false | false | 48 | rkt | identity-matrix.rkt | #lang racket
(require math)
(identity-matrix 5)
| false |
643442adead49a5fb42f72c0a2e28ee7e9560f30 | 1bdc6c054a5249644466bfde8c21fd5e848514bb | /2017/Review/review-ch04-02.rkt | ab841102f77fc8e95e50f67fd007da4b5eb7e009 | []
| no_license | fuguigui/racket | 9ad8483bd8547194ff7cfa84e2ee3f4fbba7cbf4 | dc538028ef6b2a1411909bd3a613b7028c6f56c5 | refs/heads/master | 2021-01-18T22:56:21.352936 | 2017-06-21T09:29:58 | 2017-06-21T09:29:58 | 84,380,381 | 0 | 0 | null | 2017-04-20T02:08:41 | 2017-03-09T00:38:56 | Racket | UTF-8 | Racket | false | false | 9,914 | rkt | review-ch04-02.rkt | #lang racket
;第四章解释器复习
;2017/6/14 21:43
;分析和执行分离
(require (except-in r5rs eval))
;-----------简易的scheme解释器
(define (eval exp env)
((analyze exp) env))
(define (analyze exp)
(cond ((self-evaluating? exp)
(analyze-self-evaluating exp))
((variable? exp)(analyze-variable exp))
((quoted? exp)(analyze-quoted exp))
((assignment? exp)(analyze-assignment exp))
((definition? exp)(analyze-definition exp))
((if? exp)(analyze-if exp))
((lambda? exp)(analyze-lambda exp))
((begin? exp)(analyze-sequence (begin-actions exp)))
((cond? exp)(analyze (cond->if exp)))
((application? exp)(analyze-application exp))
(else (error "Unkown expression type -- ANALYZE" exp))))
(define (self-evaluating? exp)
(cond((number? exp) true)
((string? exp) true)
(else false)))
(define (variable? exp)
(symbol? exp))
(define (quoted? exp)
(tagged-list? exp 'quote))
(define (tagged-list? exp tag)
(if(pair? exp)
(eq? (car exp) tag)
false))
(define (assignment? exp)
(tagged-list? exp 'set!))
(define (definition? exp)
(tagged-list? exp 'define))
(define (if? exp)
(tagged-list? exp 'if))
(define (lambda? exp)
(tagged-list? exp 'lambda))
(define (begin? exp)
(tagged-list? exp 'begin))
(define (cond? exp)
(tagged-list? exp 'cond))
;-------*****注意application? 的写法
(define (application? exp)
(pair? exp))
;****************框架和环境函数
(define (make-frame variables values)
(cons variables values))
(define (frame-variables frame)(car frame))
(define (frame-values frame)(cdr frame))
(define (add-binding-to-frame! var val frame)
(set-car! frame (cons var (car frame)))
(set-cdr! frame (cons val (cdr frame))))
(define (enclosing-environment env)(cdr env))
(define (first-frame env)(car env))
(define the-empty-environment '())
(define (extend-environment vars vals base-env)
(if(= (length vars)(length vals))
(cons (make-frame vars vals) base-env)
(if(> (length vars)(length vals))
(error "Too many VARS" vars vals)
(error "Too many VALS" vars vals))))
;***************
(define (analyze-self-evaluating exp)
(lambda(env)exp))
(define (lookup-variable-value var env)
(define (env-loop env)
(define (scan vars vals)
(cond((null? vars)(env-loop (enclosing-environment env)))
((eq? var (car vars))
(car vals))
(else (scan (cdr vars)(cdr vals)))))
(if (eq? env the-empty-environment)
(error "Unbound variable" var)
(let((frame (first-frame env)))
(scan (frame-variables frame)
(frame-values frame)))))
(env-loop env))
(define (analyze-variable exp)
(lambda(env)(lookup-variable-value exp env)))
(define (text-of-quotation exp)(cadr exp))
(define(analyze-quoted exp)
(let((qval (text-of-quotation exp)))
(lambda (env) qval)))
(define (assignment-variable exp)(cadr exp))
(define (assignment-value exp)(caddr exp));???直接写(cddr exp)可不可以?
(define (analyze-assignment exp)
(let((var (assignment-variable exp))
(vproc (analyze (assignment-value exp))))
(lambda (env)
(set-variable-value! var (vproc env)env)
'ok)))
(define (set-variable-value! var val env)
(define (env-loop env)
(define (scan vars vals)
(cond((null? vars)
(env-loop (extend-environment env)))
((eq? var (car vars))
(set-car! vals val))
(else (scan (cdr vars)(cdr vals)))))
(if(eq? env the-empty-environment)
(error "Unbound variable -- SET!" var)
(let((frame (first-frame env)))
(scan (frame-variables frame)
(frame-values frame)))))
(env-loop env))
(define (definition-variable exp)
(if(symbol? (cadr exp))
(cadr exp)
(caadr exp)));针对函数的定义
(define (definition-value exp)
(if(symbol? (cadr exp))
(caddr exp)
(make-lambda (cdadr exp)
(cddr exp))));这里又不是caddr了。。。。?????
(define (make-lambda paras body)
(cons 'lambda (cons paras body)))
(define (analyze-definition exp)
(let((var (definition-variable exp))
(vproc (analyze (definition-value exp))))
(lambda (env)
(define-variable! var (vproc env) env)
'ok)))
(define (define-variable! var val env)
(let((frame (first-frame env)))
(define (scan vars vals)
(cond((null? vars)
(add-binding-to-frame! var val frame))
((eq? var (car vars))
(set-car! vals val))
(else (scan (cdr vars)(cdr vals)))))
(scan (frame-variables frame)
(frame-values frame))))
(define (if-predicate exp)
(cadr exp))
(define (if-consequent exp)
(caddr exp))
(define (if-alternative exp)
(if(not(null? (cdddr exp)))
(cadddr exp)
'false))
(define (analyze-if exp)
(let((pproc (analyze (if-predicate exp)))
(cproc (analyze (if-consequent exp)))
(aproc (analyze (if-alternative exp))))
(lambda (env)
(if(true? (pproc env))
(cproc env)
(aproc env)))))
(define (true? exp)
(not(equal? exp false)))
(define (analyze-lambda exp)
(let((vars (lambda-parameters exp))
(bproc (analyze-sequence)))
(lambda(env)(make-procedure vars bproc env))))
(define (make-procedure paras body env)
(list 'procedure paras body env))
(define (lambda-parameters exp)(cadr exp))
(define (lambda-body exp)(cddr exp))
(define (last-exp? seq)(null? (cdr seq)))
(define (first-exp seq)(car seq))
(define (rest-exps seq)(cdr seq))
(define(analyze-sequence exps)
(define (sequentially proc1 proc2)
(lambda (env) (proc1 env)(proc2 env)))
(define (loop first-proc rest-procs)
(if(null? rest-procs)
first-proc
(loop (sequentially first-proc (car rest-procs))
(cdr rest-procs))))
(let((procs (map analyze exps)))
(if(null? procs)
(error "Empty sequence -- ANALYZE SEQUENCE")
(loop (car procs)(cdr procs)))))
(define (begin-actions exp)(cdr exp))
(define (cond->if exp)
(expand-clauses (cond-clauses exp)))
(define (expand-clauses clauses)
(if (null? clauses)
false
(let((first (car clauses))
(rest (cdr clauses)))
(if(cond-else-clause? first)
(if(null? rest)
(sequence->exp (cond-actions first))
(error "ELSE clause isn't last -- COND->IF" clauses))
(make-if (cond-predicate first)
(sequence->exp (cond-actions first))
(expand-clauses rest))))))
(define (make-if pred cons alter)
(list 'if pred cons alter))
(define (cond-else-clause? clause)
(tagged-list? clause 'else))
(define (cond-predicate clause)(car clause))
(define (cond-actions clause)(cdr clause))
(define (cond-clauses exp)(cdr exp))
(define (sequence->exp seq)
(cond ((null? seq)seq)
((last-exp? seq)(first-exp seq))
(else (make-begin seq))))
(define (make-begin exp)
(cons 'begin exp))
(define (analyze-application exp)
(let((fproc (analyze (operator exp)))
(aprocs (map analyze (operands exp))))
(lambda (env)
(execute-application(fproc env)
(map (lambda (aproc)(aproc env))
aprocs)))))
(define (execute-application proc args)
(cond ((primitive-procedure? proc)
(apply (primitive-implementation proc) args))
((compound-procedure? proc)
((procedure-body proc)
(extend-environment
(procedure-parameters proc)
args
(procedure-environment proc))))
(else(error "Unknown procedure type -- EXECUTE-APPLICATION" proc))))
(define (operator co-exp)(car co-exp))
(define (operands co-exp)(cdr co-exp))
(define (list-of-values operands env)
(map (lambda (x)
(lookup-variable-value x env))
operands))
(define (primitive-procedure? proc)
(tagged-list? proc 'primitive))
(define (compound-procedure? proc)
(tagged-list? proc 'procedure))
(define(procedure-parameters p)(cadr p))
(define (procedure-body p)(caddr p))
(define (procedure-environment p)(cadddr p))
(define primitive-procedures
(list (list 'car car)
(list 'cdr cdr)
(list 'cons cons)
(list 'null? null?)
(list '+ +)
(list '- -)
(list '* *)
(list '/ /)
(list 'remainder remainder)))
(define (primitive-procedure-names)
(map car primitive-procedures))
(define (primitive-implementation proc)(cadr proc))
(define (primitive-procedure-objects)
(map (lambda (proc)(list 'primitive (cadr proc)))
primitive-procedures))
;--------------初始化环境
(define (setup-environment)
(let((initial-env
(extend-environment (primitive-procedure-names)
(primitive-procedure-objects)
the-empty-environment)))
(define-variable! 'true true initial-env)
(define-variable! 'false false initial-env)
initial-env))
(define glb-env (setup-environment))
(display glb-env)
;用求值器处理键盘输入的scheme程序
(define input-prompt ";;;M_Eval input:")
(define output-prompt ";;;M_Eval output")
(define (driver-loop)
(prompt-for-input input-prompt)
(let((input (read)))
(let((output (eval input glb-env)))
(announce-output output-prompt)
(user-print output)
(driver-loop))))
(define (prompt-for-input string)
(newline) (newline)(display string) (newline))
(define (announce-output string)
(newline) (display string)(newline))
(define (user-print object)
(if(compound-procedure? object)
(display (list 'compound-procedure
(procedure-parameters object)
(procedure-body object)
'<procedure-env>))
(display object)))
(driver-loop)
;测试部分
(eval '(define test1 (lambda (x y) (+ x y))) glb-env)
(display glb-env) | false |
6029829a7a7455b953544309bc1343f7a5364b8c | 5fa722a5991bfeacffb1d13458efe15082c1ee78 | /src/c2_17.rkt | 320bad329694c121aa800916bd653fa60bcfdf26 | []
| no_license | seckcoder/sicp | f1d9ccb032a4a12c7c51049d773c808c28851c28 | ad804cfb828356256221180d15b59bcb2760900a | refs/heads/master | 2023-07-10T06:29:59.310553 | 2013-10-14T08:06:01 | 2013-10-14T08:06:01 | 11,309,733 | 3 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 223 | rkt | c2_17.rkt | #lang racket
(define (my-last-pair lst)
(cond ((null? lst) (error "list is null"))
((null? (cdr lst)) (list (car lst)))
(else (my-last-pair (cdr lst)))))
(my-last-pair '(1 2 3 4))
(last-pair '(1 2 3 4))
| false |
a9fed3c087c8e9ac958ae123a6b161919c9a038a | 28929756dcc5348cb43c2afd546c1a384c3c0a63 | /lib/fifo.rkt | 0c7fcf1d681b277bbba4aca0c177a9d53492b5c6 | []
| no_license | nat82alie/dssl2 | d618aee1954a29ba5663cba30de729f5725a3f57 | b7a8b7d3c0963963b4d47679bbc7a7a96b57f5bc | refs/heads/master | 2020-04-28T14:22:16.016926 | 2019-01-08T15:08:19 | 2019-01-08T15:08:19 | 175,337,306 | 0 | 0 | null | 2019-03-13T03:11:30 | 2019-03-13T03:11:30 | null | UTF-8 | Racket | false | false | 511 | rkt | fifo.rkt | #lang dssl2
import dll
def MaybeC(X): OrC(False, X)
class Fifo[X]:
let repr_
def __init__(self):
self.repr_ = Dll[X]()
def ElementC(self) -> contract?:
X
def empty?(self) -> bool?:
self.repr_.empty?()
def size(self) -> nat?:
self.repr_.size()
def peek(self) -> MaybeC(X):
self.repr_.front()
def enqueue(self, value: X) -> VoidC:
self.repr_.push_back(value)
def dequeue(self) -> MaybeC(X):
self.repr_.pop_front()
| false |
808e3a445fe6ce6e0d1b66ac225e5c1a540fb308 | 5bbc152058cea0c50b84216be04650fa8837a94b | /tools/benchmark-run/run.rkt | 31b30c4c4e6eb4ad9df0d43d28de85c71fd18f36 | []
| no_license | nuprl/gradual-typing-performance | 2abd696cc90b05f19ee0432fb47ca7fab4b65808 | 35442b3221299a9cadba6810573007736b0d65d4 | refs/heads/master | 2021-01-18T15:10:01.739413 | 2018-12-15T18:44:28 | 2018-12-15T18:44:28 | 27,730,565 | 11 | 3 | null | 2018-12-01T13:54:08 | 2014-12-08T19:15:22 | Racket | UTF-8 | Racket | false | false | 22,211 | rkt | run.rkt | #lang racket/base
(date-display-format 'iso-8601)
;; TODO
;; - add option to change governor, default to something reasonable
;; Benchmark driver
;;
;; Usage:
;; run.rkt BENCHMARK
;; This will:
;; - Create directories `BENCHMARK/benchmark` and `BENCHMARK/benchmark/base`
;; - Spawn jobs for each of the 2**n configurations
;; Each job will create a new directory & save results to a file
;; - Aggregate the results from all sub-jobs
(provide
run-benchmark
;; Same as calling from the command line, just pass argv vector
)
(require
(only-in glob in-glob)
(only-in racket/file file->value)
(only-in racket/file file->value)
(only-in racket/format ~a ~r)
(only-in racket/format ~a ~r)
(only-in racket/os getpid)
(only-in racket/sequence in-slice)
benchmark-run/parameters
benchmark-run/stats-helpers
benchmark-run/unixtime
benchmark-run/utilities
glob
math/statistics
pkg/lib
racket/class
racket/cmdline
racket/date
racket/future
racket/list
racket/match
racket/port
racket/string
racket/system
racket/vector
)
(define-syntax-rule (compile-error path)
(let ([message (format "Compilation failed in '~a/~a'" (current-directory) path)])
(*ERROR-MESSAGES* (cons message (*ERROR-MESSAGES*)))
(error 'run:compile message)))
(define-syntax-rule (runtime-error var var-idx)
(let ([message (format "Error running configuration ~a in '~a'" var-idx var)])
(*ERROR-MESSAGES* (cons message (*ERROR-MESSAGES*)))
(error 'run:runtime message)))
(define (time? t)
(or (unixtime? t) (real? t)))
(define (time*->min t*)
(if (unixtime? (car t*))
(unixtime*->min t*)
(apply min t*)))
(define (time->real t)
(if (unixtime? t)
(unixtime-real t)
t))
;; Get paths for all configuration directories
;; Path Path -> Listof Path
(define (mk-configurations basepath entry-point)
(define num-modules (count-num-modules basepath))
(for/list ([i (in-range (expt 2 num-modules))])
(define bits
(if (zero? i)
(make-string num-modules #\0)
(~r i #:base 2 #:min-width num-modules #:pad-string "0")))
(bits->path-string bits basepath entry-point)))
(define (mk-smoke-configurations basepath entry-point)
(define num-modules (count-num-modules basepath))
(list*
(bits->path-string (make-string num-modules #\0) basepath entry-point)
(bits->path-string (make-string num-modules #\1) basepath entry-point)
(for/list ([i (in-range num-modules)])
(define str (make-string num-modules #\0))
(string-set! str i #\1)
(bits->path-string str basepath entry-point))))
(define (bits->path-string bits basepath entry-point)
(define var-str (format "configuration~a" bits))
(build-path basepath "benchmark" var-str entry-point))
(define (count-num-modules basepath)
(for/sum ([fname (in-list (directory-list (build-path basepath "untyped")))]
#:when (regexp-match? "\\.rkt$" (path->string fname))) 1))
;; Start a thread to monitor CPU temperature
;; Delay before returning
(define (make-temperature-monitor)
(define t-file (string-append (*OUTPUT-PATH*) ".heat"))
(and (check-system-command "sensors")
(printf "### Monitoring temperature at '~a'\n" t-file)
(let ([p (process
(string-append
(format "echo '(~a ' > " (timestamp)) t-file "; "
"sensors -u >> " t-file "; "
"echo ')' >> " t-file "; "
"while true; do "
(format "sleep ~a; " (*TEMPERATURE-FREQUENCY*))
(format "echo '(~a ' >> " (timestamp)) t-file "; "
"sensors -u >> " t-file "; "
"echo ') ' >> " t-file "; "
"done"))])
(sleep 2) ;; For temperature readings to stabilize
p)))
(define (system-command-exists? cmd-str)
(if (system (format "hash ~a &> /dev/null" cmd-str)) #t #f))
(define (check-system-command cmd-str)
(unless (system-command-exists? cmd-str)
(printf "WARNING: `sensors` command not found, cannot monitor temperature\n")
#f))
(define (system-command-fallback . cmd-str*)
(or (for/or ([cmd (in-list cmd-str*)]
#:when (system-command-exists? cmd))
cmd)
(raise-user-error 'run "sys command fallback failed ~a" cmd-str*)))
(define (kill-temperature-monitor TM)
(when TM
(match-define (list out in pid err control) TM)
(control 'kill)
(control 'wait)
(for-each displayln (port->lines err))
(close-output-port in)
(close-input-port out)
(close-input-port err))
(void))
(define ((make-run-command/racket job#) stub #:iters [iters 1] #:stat? [stat? #f])
(define cmd (string-append
(if (*AFFINITY?*) (format "taskset -c ~a " job#) "")
" " stub))
(for/list ([i (in-range iters)])
(match-define (list out in pid err control) (process cmd #:set-pwd? #t))
(control 'wait)
(for-each displayln (port->lines err))
(define t
(let ([time-info ;; 2016-05-10: can also use for/first
(for/last ([line (in-list (port->lines out))])
(regexp-match #rx"cpu time: (.*) real time: (.*) gc time: (.*)" line))])
(match time-info
[(list full
(app string->number cpu)
(app string->number real)
(app string->number gc))
;;(printf "job#~a, iteration#~a - cpu: ~a real: ~a gc: ~a~n" job# i cpu real gc)
real]
[#f
(when (regexp-match? "racket " stub)
(runtime-error 'run (current-directory)))])))
(close-input-port out)
(close-input-port err)
(close-output-port in)
t))
;; (-> Natural (-> String #:iters Natural #:stat? Boolean (Listof unixtime)))
(define ((make-run-command/gnutime job#) stub #:iters [iters 1] #:stat? [stat? #f])
(define time-cmd (system-command-fallback "gtime" "/usr/bin/time"))
(define time-tmpfile (*TIME-TMPFILE*))
(when (file-exists? time-tmpfile)
(delete-file time-tmpfile))
(define cmd
(string-append
(format " for i in `seq 1 ~a`; do " iters)
(if (*AFFINITY?*) (format "taskset -c ~a " job#) "")
time-cmd
" -o "
time-tmpfile
" --append "
" -f "
TIME-FMT
" "
stub
"; done;"))
(printf "#### exec `~a` in `~a`\n" stub (current-directory))
(match-define (list out in pid err control) (process cmd #:set-pwd? #t))
(control 'wait)
(for-each displayln (port->lines err))
(define ut*
(with-input-from-file time-tmpfile (lambda ()
(for/fold ([acc '()])
([ln (in-lines)])
(cond
[(string->unixtime ln)
=> (lambda (ut)
(if (zero? (unixtime-exit ut))
(cons ut acc)
(raise-user-error 'run-command
"Process terminated with non-zero exit code '~a'. Full command was '~a'"
(unixtime-exit ut) cmd)))]
[(string->number ln)
=> (lambda (n) (cons n acc))]
[else acc])))))
(close-input-port out)
(close-input-port err)
(close-output-port in)
ut*)
;; Run the configurations for each configuration directory
;; Optional argument specifies what configurations to run, either:
;; - #f = all configurations
;; - ConfigString = exactly this configuration
;; - (List ConfigString ConfigString) = all configurations in range, inclusive
;; - 'smoke = a few configurations
;; Default is to run all configurations
;; (Listof Path) Path Nat Nat [(U (Listof String) #f)] -> Void
(define (run-benchmarks basepath entry-point jobs
#:config [cfg-spec #f])
(define benchmark-dir (build-path basepath "benchmark"))
(unless (directory-exists? benchmark-dir)
(raise-user-error 'run (format "Directory '~a' does not exist, please run `setup.rkt ~a` and try again." benchmark-dir basepath)))
(define configurations
(cond
[(pair? cfg-spec)
(match-define (list min max) cfg-spec)
(define all-vars (mk-configurations basepath entry-point))
(define (in-range? var)
(match-define (list _ bits) (regexp-match "configuration([10]*)/" var))
(define n (string->number bits 2))
(and (>= n (string->number min))
(<= n (string->number max))))
(filter in-range? all-vars)]
[(eq? cfg-spec 'smoke)
(define cfg* (mk-smoke-configurations basepath entry-point))
(printf "SMOKE TEST running configurations ~a~n" cfg*)
cfg*]
[cfg-spec
(list (build-path benchmark-dir (string-append "configuration" cfg-spec) entry-point))]
[else
((*PERMUTE*)
(mk-configurations basepath entry-point))]))
(define hot-proc
(if (*TEMPERATURE-MONITOR?*)
(make-temperature-monitor)
#f))
;; allocate a slice of the configurations per job
(define slice-size (ceiling (/ (length configurations) jobs)))
(define thread*
(for/list ([var-slice (in-slice slice-size (in-values-sequence (in-indexed (in-list configurations))))]
[job# (in-range 1 (add1 jobs))])
;; Spawn a control thread for each job, which will in turn spawn an OS process.
;; Each job gets assigned to the CPU that is the same as the job# using
;; the `taskset` command.
(thread
(λ ()
(define run-command (make-run-command/racket job#))
(for ([var-in-slice var-slice])
(match-define (list var var-idx) var-in-slice)
(define-values (new-cwd file _2) (split-path var))
(define file-str (path->string file))
(parameterize ([current-directory new-cwd])
;; first compile the configuration
(void (run-command (format "~araco make -v ~a" (*RACKET-BIN*) file-str)))
;; run the iterations that will count for the data
(define exact-iters (*NUM-ITERATIONS*))
(unless (or (*ONLY-COMPILE?*)
(file-exists? (*DATA-TMPFILE*)))
(define ut*
(let* (;[rkt-command (format "~aracket ~a" (*RACKET-BIN*) file-str)]
[rkt-command (format "~aracket -e '~s'"
(*RACKET-BIN*)
`(time (dynamic-require ,file-str #f)))]
;; -- throwaway builds (use to get baseline time)
[time0 (time*->min (run-command #:iters (*NUM-WARMUP*) rkt-command))]
[use-stat? (< time0 (*MIN-MILLISECONDS*))]
[run (lambda (i)
(run-command rkt-command #:iters i #:stat? use-stat?))]
;; -- real thing
[ut0* (run (or exact-iters (*MIN-ITERATIONS*)))]
[ut1* (if (or exact-iters
(anderson-darling? (map time->real ut0*)))
'()
(run (- (+ 1 (*MAX-ITERATIONS*) (*MIN-ITERATIONS*)))))])
(append ut0* ut1*)))
(write-results (reverse ut*)))))))))
;; synchronize on all jobs
(for ([thd (in-list thread*)]) (thread-wait thd))
(when (*TEMPERATURE-MONITOR?*)
(kill-temperature-monitor hot-proc))
#t)
(define (write-results times [dir (current-directory)])
(with-output-to-file (build-path dir (*DATA-TMPFILE*)) #:exists 'append
(lambda ()
(display "(") (writeln (timestamp))
(for-each writeln times)
(displayln ")"))))
;; Get the most recent commit hash for the chosen Racket install
(define (racket-checksum)
(define rkt-dir
(if (zero? (string-length (*RACKET-BIN*)))
;; Hacks
(string-append
(with-output-to-string
(lambda () (system "which racket")))
"/..")
(*RACKET-BIN*)))
(define success? (box #f))
(define str
(parameterize ([current-directory rkt-dir])
(with-output-to-string
(lambda ()
(when (directory-exists? "./git")
(and (system "git rev-parse HEAD")
(set-box! success? #t)))))))
;; If we parsed the git version, print it. Otherwise, notify.
(if (unbox success?)
(~a str #:max-width 8)
"<unknown-commit>"))
;; Use the current `raco` to get the most-recent commit hash for typed-racket
(define (typed-racket-checksum)
(define tbl (installed-pkg-table #:scope 'installation))
(if tbl
(let ([pkg (hash-ref tbl "typed-racket")])
(if pkg
(let ([chk (pkg-info-checksum pkg)])
(~a chk #:max-width 8))
(printf "Failed to find package 'typed-racket' in 'installation pkg-table\n")))
(printf "Failed to get 'installed-pkg-table'\n")))
;; Read a string, return a permutation function on lists
;; (-> String (All (A) (-> (Listof A) (Listof A))))
(define (read-permutation str)
(cond
[(string=? str "reverse")
reverse]
[(string=? str "shuffle")
shuffle]
[(string->number str)
=> rotate]
[else
values]))
;; Rotate a list
(define ((rotate i) x*)
(let-values (((a b) (split-at x* (modulo i (length x*)))))
(append b a)))
;; Read a .rktd file which SHOULD contain 1 list of runtimes.
;; Raise an error if there's more than 1 list or the data is malformed.
(define (result-file->time* fname)
(with-handlers ([exn:fail? (lambda (e) (raise-user-error 'run "Error collecting data from file '~a', please inspect & try again.\n~a" fname (exn-message e)))])
(define v (file->value fname))
(unless (and (list? v) (not (null? (cdr v)))
(for/and ([x (in-list (cdr v))])
(time? x)))
(raise-user-error 'run "Malformed tmp data ~a" v))
(map time->real (cdr v))))
(define (run-benchmark vec)
(define basepath
(command-line #:program "benchmark-runner"
#:argv vec
#:once-any
[("--smoke-test") "Test configurations, do not collect results"
(*CONFIGS-TO-RUN* 'smoke)]
[("-x" "--exclusive") x-p
"Run the given configuration and no others"
(*CONFIGS-TO-RUN* x-p)]
[("-m" "--min-max") min max
"Run the configurations between min and max inclusive"
(*CONFIGS-TO-RUN* (list min max))]
#:once-each
[("-w" "--warmup")
w
"Set number of warmup iterations"
(*NUM-WARMUP* (string->number w))]
[("-p" "--permute")
p
"Change order of configurations"
(*PERMUTE* (read-permutation p))]
[("-n" "--no-affinity")
"Do NOT set task affinity (runs all jobs on current core)"
(*AFFINITY?* #f)]
[("-c" "--only-compile") "Only compile and don't run"
(*ONLY-COMPILE?* #t)]
[("-o" "--output") o-p
"A path to write data to"
(*OUTPUT-PATH* o-p)]
[("-e" "--entry-point") e-p
"The main file to execute. (Defaults to 'main.rkt'.)"
(*ENTRY-POINT-PARAM* e-p)]
[("-j" "--jobs") j
"The number of processes to spawn"
(*NUM-JOBS* (string->number j))]
[("-r" "--racket") r-p
"Directory containing the preferred racket & raco executables"
(*RACKET-BIN* (string-append r-p "/"))]
#:multi
[("-i" "--iterations") n-i
"The number of iterations to run"
(let ([n (string->number n-i)])
(unless n (raise-user-error 'run (format "Expected natural number, got '~a'" n-i)))
(*NUM-ITERATIONS* n))]
#:args (basepath)
basepath))
;; Validate given entry-point, or fall back to default
(define entry-point
(cond [(and (*ENTRY-POINT-PARAM*)
(path-string? (*ENTRY-POINT-PARAM*))
(regexp-match? #rx"\\.rkt$" (*ENTRY-POINT-PARAM*)))
(*ENTRY-POINT-PARAM*)]
[(*ENTRY-POINT-PARAM*) ;; Optional argument given, but is not a .rkt file
(raise-user-error (format "expected a Racket file, given ~a" (*ENTRY-POINT-PARAM*)))]
[else ;; Default
"main.rkt"]))
;; Assert that the parsed entry point exists in the project
(unless (and (directory-exists? basepath)
(file-exists? (build-path basepath "untyped" entry-point))
(file-exists? (build-path basepath "typed" entry-point)))
(raise-user-error (format "entry point '~a' not found in project '~a', cannot run" entry-point basepath)))
(unless (path-string? basepath)
(raise-user-error (format "expected a path, given ~a" basepath)))
(unless (and (path-string? entry-point)
(regexp-match? #rx"\\.rkt$" entry-point))
(raise-user-error (format "expected a Racket file, given ~a" entry-point)))
(define jobs (*NUM-JOBS*))
;; Set a default output path based on the "basepath" if one is not provided
;; Also set *DATA-TMPFILE*
(cond
[(*OUTPUT-PATH*)
(*DATA-TMPFILE* (*OUTPUT-PATH*))]
[else
(date-display-format 'iso-8601)
(define tag (last (string-split basepath "/")))
(*OUTPUT-PATH* (string-append tag "-" (timestamp) ".rktd"))
(*DATA-TMPFILE* (string-append tag ".rktd"))])
;; Need at least 2 CPUs since our controller thread is pinned to core 0 and workers
;; to cores 1 and above.
(when (< (processor-count) 2)
(raise-user-error
(string-append "Detected less than 2 CPUs. Please run this "
"script on a machine/VM with at least 2 CPUs.")))
(when (< (processor-count) (add1 jobs))
(raise-user-error
(string-append "Too many jobs specified. Need at least as many "
"processors as #jobs+1")))
;; Set the CPU affinity for this script to CPU0. Jobs spawned by this script run
;; using CPU1 and above.
(when (*AFFINITY?*)
(unless (find-executable-path "taskset")
(raise-user-error 'gtp-run "'taskset' utility not found, cannot set processor affinity. Try again with '-n' flag to run on a single core."))
(system (format "taskset -pc 0 ~a" (getpid))))
(run-benchmarks basepath entry-point jobs
#:config (*CONFIGS-TO-RUN*))
(when (and (not (*ONLY-COMPILE?*)) (*OUTPUT-PATH*))
(with-output-to-file (*OUTPUT-PATH*)
(λ ()
;; first write a comment that encodes the commandline args / version
(printf ";; ~a~n" (current-command-line-arguments))
(printf ";; ~a~n" (*RACKET-VERSION*))
(printf ";; binaries in ~a~n" (*RACKET-BIN*))
(printf ";; base @ ~a~n" (racket-checksum))
(printf ";; typed-racket @ ~a~n" (typed-racket-checksum))
(printf ";; ~a~n" (timestamp))
(displayln "#(")
(for ([result-file (in-glob (format "~a/benchmark/configuration*/~a"
basepath
(*DATA-TMPFILE*)))])
(writeln (file->value result-file)))
(displayln ")"))
#:mode 'text
#:exists 'replace))
(printf "### saved results to '~a'\n" (*OUTPUT-PATH*))
(void))
;; =============================================================================
(module+ main
(run-benchmark (current-command-line-arguments)))
;; =============================================================================
(module+ test
;; Test example benchmarks
;; - Correct benchmarks should run without error
;; - Compile-error benchmarks should generate an error
;; - Runtime-error benchmarks should generate an error
(require
rackunit
(only-in racket/string string-split)
(only-in racket/port call-with-output-string open-output-nowhere)
gtp-summarize/modulegraph
benchmark-run/setup)
(define (pass/fail should-pass?)
(if should-pass?
"PASS"
"FAIL"))
(define (check-benchmark bm #:max-output-lines [max-lines #f]
#:output-rx* [rx* #f]
#:should-fail? [should-fail? #f])
(define project-dir (path->string (infer-project-dir bm)))
(setup-benchmark project-dir)
(define should-pass? (not should-fail?))
(define str
(parameterize ([error-print-context-length 0])
(call-with-output-string
(lambda (p)
(parameterize ([current-output-port (open-output-nowhere)]
[current-error-port p])
(run-benchmark (vector "-n" "-i" "1" project-dir)))))))
(check-equal? (string=? "" str) should-pass?
(format "Expected benchmark '~a' to ~a, but it ~a-ed instead."
bm (pass/fail should-pass?) (pass/fail (not should-pass?))))
(when max-lines
(let ([L (length (string-split str "\n"))])
(check-true (<= L max-lines)
(format "Expected '~a' to generate at most ~a lines of output, got ~a lines."
bm max-lines L))))
(when rx*
(for/list ([rx (in-list (if (list? rx*) rx* (list rx*)))])
(check-regexp-match rx str)))
(for-each delete-file (glob "*.rktd"))
(void))
(check-benchmark "test-success"
#:max-output-lines 2)
(check-benchmark "test-compile-error"
#:should-fail? #t
#:output-rx* '(#rx"Error running" ;; 2016-07-26 : should probably be typechecker
#rx"run:runtime"
#rx"configuration01")
#:max-output-lines 30)
(check-benchmark "test-runtime-error"
#:should-fail? #t
#:output-rx* '(#rx"run:runtime" #rx"configuration01")
#:max-output-lines 20)
)
| true |
362ab9a45064ee7ed342bc5d271edf2294ff3cf0 | 66c92b955f3caa70ea4b322654079450ab9eff36 | /gm-pepm-2018/with-cache/validate-pystone.rktd | 2c73af844abf70ba26e9b0852622e748ae3e4b6a | [
"MIT"
]
| permissive | nuprl/retic_performance | ebc3a5656ce77539ff44c50ac00dacd0a22496ec | da634137b151553c354eafcc549e1650043675f9 | refs/heads/master | 2023-06-22T05:41:16.151571 | 2023-06-12T20:16:13 | 2023-06-12T20:16:13 | 85,637,202 | 3 | 1 | MIT | 2023-06-12T20:16:14 | 2017-03-20T23:23:11 | Racket | UTF-8 | Racket | false | false | 68,323 | rktd | validate-pystone.rktd | ;; This file was generated by the `with-cache` library on 2017-08-02
(((600 100 6 30)) (3) 1 (((lib "pict/private/pict.rkt") . pict-deserialize-info)) 19 ((q 255 255 255 1.0) (q 12 #f default normal normal #f default #f aligned) (q (0 0 0 1.0) 1 solid round round #f) (q (255 255 255 1.0) solid #f #f #f) (q 8 "bold" roman normal normal #f default #f aligned) (q (0 0 0 1.0) 1/2 solid round round #f) (q 255 255 255 1.0) "1" (q 0 0 0 1.0) "2" "10x" "0" "50" "100%" (q (0 2 123 1.0) 0.5 solid round round #f) (q (0 0 0 1.0) 1 transparent round round #f) (q (210 105 30 1.0) 0.5 solid round round #f) (q 0 0 0 1.0) (q 8 "Liberation Serif" default normal bold #f default #t unaligned)) () (0 (q (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-font (12 #f default normal normal #f default #f aligned)) (set-smoothing unsmoothed) (set-text-mode transparent) (set-alpha 1.0) (set-clipping-region #f) (set-background (255 255 255 1.0)) (set-text-background (255 255 255 1.0)) (set-text-foreground (0 0 0 1.0)) (set-font (8 "Liberation Serif" default normal bold #f default #t unaligned)) (draw-text "pystone" 0.0 0.0 #t 0 0) (set-font (12 #f default normal normal #f default #f aligned)) (set-origin 0.0 10.0) (set-smoothing smoothed) (set-text-mode transparent) (set-clipping-region (#t (((((0.0 . 10.0) (190.0 . 10.0) (190.0 . 110.0) (0.0 . 110.0)))) . any))) (set-font (8 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1) (set-origin 0.0 10.0) (set-smoothing smoothed) (set-text-mode transparent) (set-clipping-region (#t (((((0.0 . 10.0) (190.0 . 10.0) (190.0 . 110.0) (0.0 . 110.0)))) . any))) (set-font (8 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1) (set-alpha 1) (clear) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 24.0 87.0 182.0 87.0) (draw-line 24.0 4.0 182.0 4.0) (draw-line 24.0 4.0 24.0 87.0) (draw-line 182.0 4.0 182.0 87.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 24.0 85.0 24.0 89.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 36.510636875524725 86.0 36.510636875524725 88.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 47.088229637161604 86.0 47.088229637161604 88.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 56.250957259636124 86.0 56.250957259636124 88.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 64.33305580632236 86.0 64.33305580632236 88.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 71.56273931490902 85.0 71.56273931490902 89.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 119.12547862981805 86.0 119.12547862981805 88.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 146.94789756061567 86.0 146.94789756061567 88.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 166.68821794472706 86.0 166.68821794472706 88.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 182.0 85.0 182.0 89.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 22.0 87.0 26.0 87.0) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 22.0 45.5 26.0 45.5) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (draw-line 22.0 4.0 26.0 4.0) (set-text-foreground (255 255 255 1.0)) (draw-text "1" 21.0 90.0 #t 0 0) (draw-text "1" 21.0 91.0 #t 0 0) (draw-text "1" 21.0 92.0 #t 0 0) (draw-text "1" 22.0 90.0 #t 0 0) (draw-text "1" 22.0 92.0 #t 0 0) (draw-text "1" 23.0 90.0 #t 0 0) (draw-text "1" 23.0 91.0 #t 0 0) (draw-text "1" 23.0 92.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "1" 22.0 91.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "2" 68.56273931490902 90.0 #t 0 0) (draw-text "2" 68.56273931490902 91.0 #t 0 0) (draw-text "2" 68.56273931490902 92.0 #t 0 0) (draw-text "2" 69.56273931490902 90.0 #t 0 0) (draw-text "2" 69.56273931490902 92.0 #t 0 0) (draw-text "2" 70.56273931490902 90.0 #t 0 0) (draw-text "2" 70.56273931490902 91.0 #t 0 0) (draw-text "2" 70.56273931490902 92.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "2" 69.56273931490902 91.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "10x" 174.5 90.0 #t 0 0) (draw-text "10x" 174.5 91.0 #t 0 0) (draw-text "10x" 174.5 92.0 #t 0 0) (draw-text "10x" 175.5 90.0 #t 0 0) (draw-text "10x" 175.5 92.0 #t 0 0) (draw-text "10x" 176.5 90.0 #t 0 0) (draw-text "10x" 176.5 91.0 #t 0 0) (draw-text "10x" 176.5 92.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "10x" 175.5 91.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "0" 15.0 82.0 #t 0 0) (draw-text "0" 15.0 83.0 #t 0 0) (draw-text "0" 15.0 84.0 #t 0 0) (draw-text "0" 16.0 82.0 #t 0 0) (draw-text "0" 16.0 84.0 #t 0 0) (draw-text "0" 17.0 82.0 #t 0 0) (draw-text "0" 17.0 83.0 #t 0 0) (draw-text "0" 17.0 84.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "0" 16.0 83.0 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "50" 10.0 40.5 #t 0 0) (draw-text "50" 10.0 41.5 #t 0 0) (draw-text "50" 10.0 42.5 #t 0 0) (draw-text "50" 11.0 40.5 #t 0 0) (draw-text "50" 11.0 42.5 #t 0 0) (draw-text "50" 12.0 40.5 #t 0 0) (draw-text "50" 12.0 41.5 #t 0 0) (draw-text "50" 12.0 42.5 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "50" 11.0 41.5 #t 0 0) (set-text-foreground (255 255 255 1.0)) (draw-text "100%" -1.0 -1.0 #t 0 0) (draw-text "100%" -1.0 0.0 #t 0 0) (draw-text "100%" -1.0 1.0 #t 0 0) (draw-text "100%" 0.0 -1.0 #t 0 0) (draw-text "100%" 0.0 1.0 #t 0 0) (draw-text "100%" 1.0 -1.0 #t 0 0) (draw-text "100%" 1.0 0.0 #t 0 0) (draw-text "100%" 1.0 1.0 #t 0 0) (set-text-foreground (0 0 0 1.0)) (draw-text "100%" 0.0 0.0 #t 0 0) (set-clipping-region (#t (((((23.5 . 13.5) (183.0 . 13.5) (183.0 . 98.0) (23.5 . 98.0)))) . any))) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-font (8 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 transparent round round #f)) (do-set-brush! ((227 232 255 1.0) solid #f #f #f)) (set-smoothing unsmoothed) (draw-polygon ((24.793969849246224 . 87.0) (25.587939698492466 . 87.0) (26.381909547738687 . 87.0) (27.175879396984932 . 87.0) (27.969849246231156 . 87.0) (28.76381909547739 . 87.0) (29.557788944723626 . 87.0) (30.351758793969847 . 87.0) (31.14572864321608 . 87.0) (31.93969849246232 . 87.0) (32.73366834170854 . 87.0) (33.527638190954775 . 87.0) (34.321608040201006 . 87.0) (35.11557788944724 . 87.0) (35.90954773869347 . 87.0) (36.70351758793969 . 87.0) (37.49748743718593 . 87.0) (38.291457286432156 . 87.0) (39.085427135678394 . 87.0) (39.87939698492463 . 87.0) (40.673366834170864 . 87.0) (41.46733668341709 . 87.0) (42.26130653266331 . 87.0) (43.05527638190955 . 87.0) (43.84924623115579 . 87.0) (44.64321608040201 . 87.0) (45.43718592964824 . 87.0) (46.23115577889447 . 87.0) (47.02512562814071 . 87.0) (47.81909547738693 . 87.0) (48.61306532663316 . 87.0) (49.4070351758794 . 87.0) (50.20100502512563 . 87.0) (50.99497487437186 . 87.0) (51.78894472361809 . 87.0) (52.582914572864325 . 87.0) (53.376884422110564 . 87.0) (54.170854271356774 . 87.0) (54.96482412060301 . 87.0) (55.75879396984925 . 87.0) (56.552763819095475 . 87.0) (57.346733668341706 . 87.0) (58.140703517587944 . 87.0) (58.934673366834176 . 87.0) (59.7286432160804 . 87.0) (60.52261306532663 . 87.0) (61.31658291457286 . 87.0) (62.1105527638191 . 87.0) (62.90452261306533 . 87.0) (63.698492462311556 . 87.0) (64.49246231155779 . 87.0) (65.28643216080403 . 87.0) (66.08040201005025 . 87.0) (66.87437185929647 . 87.0) (67.66834170854271 . 87.0) (68.46231155778895 . 87.0) (69.25628140703517 . 87.0) (70.0502512562814 . 87.0) (70.84422110552764 . 87.0) (71.63819095477386 . 87.0) (72.4321608040201 . 87.0) (73.22613065326632 . 87.0) (74.02010050251255 . 87.0) (74.8140703517588 . 87.0) (75.60804020100502 . 87.0) (76.40201005025126 . 87.0) (77.19597989949747 . 87.0) (77.98994974874373 . 87.0) (78.78391959798995 . 87.0) (79.57788944723617 . 87.0) (80.37185929648241 . 87.0) (81.16582914572865 . 87.0) (81.95979899497488 . 87.0) (82.7537688442211 . 87.0) (83.54773869346734 . 87.0) (84.34170854271355 . 87.0) (85.1356783919598 . 87.0) (85.92964824120602 . 87.0) (86.72361809045225 . 87.0) (87.51758793969849 . 87.0) (88.31155778894473 . 87.0) (89.10552763819095 . 87.0) (89.89949748743717 . 87.0) (90.69346733668341 . 87.0) (91.48743718592964 . 87.0) (92.28140703517589 . 87.0) (93.0753768844221 . 87.0) (93.86934673366835 . 87.0) (94.66331658291458 . 87.0) (95.4572864321608 . 87.0) (96.25125628140704 . 87.0) (97.04522613065326 . 87.0) (97.83919597989949 . 87.0) (98.63316582914572 . 87.0) (99.42713567839196 . 87.0) (100.2211055276382 . 87.0) (101.01507537688443 . 87.0) (101.80904522613066 . 87.0) (102.60301507537689 . 87.0) (103.39698492462311 . 87.0) (104.19095477386934 . 87.0) (104.98492462311557 . 87.0) (105.77889447236181 . 87.0) (106.57286432160805 . 87.0) (107.36683417085426 . 87.0) (108.1608040201005 . 87.0) (108.95477386934674 . 87.0) (109.74874371859296 . 87.0) (110.5427135678392 . 87.0) (111.33668341708542 . 87.0) (112.13065326633165 . 87.0) (112.92462311557789 . 87.0) (113.71859296482413 . 87.0) (114.51256281407036 . 87.0) (115.30653266331657 . 87.0) (116.10050251256281 . 87.0) (116.89447236180905 . 87.0) (117.68844221105527 . 87.0) (118.48241206030151 . 87.0) (119.27638190954775 . 87.0) (120.07035175879396 . 87.0) (120.8643216080402 . 87.0) (121.65829145728644 . 87.0) (122.45226130653266 . 87.0) (123.24623115577889 . 87.0) (124.04020100502512 . 87.0) (124.83417085427135 . 87.0) (125.62814070351759 . 87.0) (126.42211055276383 . 87.0) (127.21608040201006 . 87.0) (128.01005025125627 . 87.0) (128.8040201005025 . 87.0) (129.59798994974875 . 87.0) (130.39195979899498 . 87.0) (131.1859296482412 . 87.0) (131.97989949748745 . 87.0) (132.77386934673365 . 87.0) (133.5678391959799 . 87.0) (134.36180904522615 . 87.0) (135.15577889447235 . 87.0) (135.9497487437186 . 87.0) (136.74371859296483 . 87.0) (137.53768844221105 . 87.0) (138.3316582914573 . 87.0) (139.1256281407035 . 87.0) (139.91959798994975 . 87.0) (140.71356783919597 . 87.0) (141.5075376884422 . 87.0) (142.30150753768845 . 87.0) (143.09547738693468 . 87.0) (143.8894472361809 . 87.0) (144.68341708542715 . 87.0) (145.47738693467335 . 87.0) (146.2713567839196 . 87.0) (147.06532663316582 . 87.0) (147.85929648241205 . 87.0) (148.6532663316583 . 87.0) (149.44723618090455 . 87.0) (150.24120603015075 . 87.0) (151.03517587939697 . 87.0) (151.82914572864323 . 87.0) (152.62311557788948 . 87.0) (153.4170854271357 . 87.0) (154.2110552763819 . 87.0) (155.00502512562812 . 87.0) (155.79899497487438 . 87.0) (156.59296482412063 . 87.0) (157.38693467336682 . 87.0) (158.18090452261305 . 87.0) (158.9748743718593 . 87.0) (159.76884422110555 . 87.0) (160.56281407035178 . 87.0) (161.356783919598 . 87.0) (162.1507537688442 . 87.0) (162.94472361809048 . 87.0) (163.7386934673367 . 87.0) (164.5326633165829 . 87.0) (165.32663316582915 . 87.0) (166.12060301507537 . 87.0) (166.9145728643216 . 87.0) (167.70854271356785 . 87.0) (168.50251256281408 . 87.0) (169.29648241206033 . 87.0) (170.09045226130652 . 87.0) (170.88442211055278 . 87.0) (171.67839195979897 . 87.0) (172.47236180904522 . 87.0) (173.26633165829145 . 87.0) (174.06030150753767 . 87.0) (174.85427135678393 . 87.0) (175.64824120603015 . 87.0) (176.4422110552764 . 87.0) (177.2361809045226 . 87.0) (178.03015075376885 . 87.0) (178.82412060301507 . 87.0) (179.61809045226133 . 87.0) (180.41206030150752 . 87.0) (181.20603015075378 . 87.0) (182.0 . 87.0) (182.0 . 4.0) (181.20603015075378 . 4.0) (180.41206030150752 . 4.0) (179.61809045226133 . 4.0) (178.82412060301507 . 4.0) (178.03015075376885 . 4.0) (177.2361809045226 . 4.0) (176.4422110552764 . 4.0) (175.64824120603015 . 4.0) (174.85427135678393 . 4.0) (174.06030150753767 . 4.0) (173.26633165829145 . 4.0) (172.47236180904522 . 4.0) (171.67839195979897 . 4.0) (170.88442211055278 . 4.0) (170.09045226130652 . 4.0) (169.29648241206033 . 4.0) (168.50251256281408 . 4.0) (167.70854271356785 . 4.0) (166.9145728643216 . 4.0) (166.12060301507537 . 4.0) (165.32663316582915 . 4.0) (164.5326633165829 . 4.0) (163.7386934673367 . 4.0) (162.94472361809048 . 4.0) (162.1507537688442 . 4.0) (161.356783919598 . 4.0) (160.56281407035178 . 4.0) (159.76884422110555 . 4.0) (158.9748743718593 . 4.0) (158.18090452261305 . 4.0) (157.38693467336682 . 4.0) (156.59296482412063 . 4.0) (155.79899497487438 . 4.0) (155.00502512562812 . 4.0) (154.2110552763819 . 4.0) (153.4170854271357 . 4.0) (152.62311557788948 . 4.0) (151.82914572864323 . 4.0) (151.03517587939697 . 4.0) (150.24120603015075 . 4.0) (149.44723618090455 . 4.0) (148.6532663316583 . 4.0) (147.85929648241205 . 4.0) (147.06532663316582 . 4.0) (146.2713567839196 . 4.0) (145.47738693467335 . 4.0) (144.68341708542715 . 4.0) (143.8894472361809 . 4.0) (143.09547738693468 . 4.0) (142.30150753768845 . 4.0) (141.5075376884422 . 4.0) (140.71356783919597 . 4.0) (139.91959798994975 . 4.0) (139.1256281407035 . 4.0) (138.3316582914573 . 4.0) (137.53768844221105 . 4.0) (136.74371859296483 . 4.0) (135.9497487437186 . 4.0) (135.15577889447235 . 4.0) (134.36180904522615 . 4.0) (133.5678391959799 . 4.0) (132.77386934673365 . 4.0) (131.97989949748745 . 4.0) (131.1859296482412 . 4.0) (130.39195979899498 . 4.0) (129.59798994974875 . 4.0) (128.8040201005025 . 4.0) (128.01005025125627 . 4.0) (127.21608040201006 . 4.0) (126.42211055276383 . 4.0) (125.62814070351759 . 4.0) (124.83417085427135 . 4.0) (124.04020100502512 . 4.0) (123.24623115577889 . 4.0) (122.45226130653266 . 4.0) (121.65829145728644 . 4.0) (120.8643216080402 . 4.0) (120.07035175879396 . 4.0) (119.27638190954775 . 4.0) (118.48241206030151 . 4.0) (117.68844221105527 . 4.0) (116.89447236180905 . 4.0) (116.10050251256281 . 4.0) (115.30653266331657 . 4.0) (114.51256281407036 . 4.0) (113.71859296482413 . 4.0) (112.92462311557789 . 4.0) (112.13065326633165 . 4.0) (111.33668341708542 . 4.0) (110.5427135678392 . 4.0) (109.74874371859296 . 4.0) (108.95477386934674 . 4.0) (108.1608040201005 . 4.0) (107.36683417085426 . 4.0) (106.57286432160805 . 4.0) (105.77889447236181 . 4.0) (104.98492462311557 . 4.0) (104.19095477386934 . 4.0) (103.39698492462311 . 4.0) (102.60301507537689 . 4.0) (101.80904522613066 . 4.0) (101.01507537688443 . 4.0) (100.2211055276382 . 4.0) (99.42713567839196 . 4.0) (98.63316582914572 . 4.0) (97.83919597989949 . 4.0) (97.04522613065326 . 4.0) (96.25125628140704 . 4.00506591796875) (95.4572864321608 . 4.06585693359375) (94.66331658291458 . 4.18743896484375) (93.86934673366835 . 4.4356689453125) (93.0753768844221 . 4.7396240234375) (92.28140703517589 . 5.21075439453125) (91.48743718592964 . 5.76800537109375) (90.69346733668341 . 6.5025634765625) (89.89949748743717 . 7.49041748046875) (89.10552763819095 . 8.559326171875) (88.31155778894473 . 9.9271240234375) (87.51758793969849 . 11.36077880859375) (86.72361809045225 . 12.9666748046875) (85.92964824120602 . 14.72454833984375) (85.1356783919598 . 16.61920166015625) (84.34170854271355 . 18.4581298828125) (83.54773869346734 . 20.41357421875) (82.7537688442211 . 22.61724853515625) (81.95979899497488 . 24.91717529296875) (81.16582914572865 . 27.38427734375) (80.37185929648241 . 30.04388427734375) (79.57788944723617 . 32.8250732421875) (78.78391959798995 . 35.611328125) (77.98994974874373 . 38.873779296875) (77.19597989949747 . 41.6904296875) (76.40201005025126 . 44.4361572265625) (75.60804020100502 . 47.07550048828125) (74.8140703517588 . 49.7655029296875) (74.02010050251255 . 52.04010009765625) (73.22613065326632 . 54.3450927734375) (72.4321608040201 . 56.54876708984375) (71.63819095477386 . 58.6815185546875) (70.84422110552764 . 60.80413818359375) (70.0502512562814 . 63.12939453125) (69.25628140703517 . 65.1051025390625) (68.46231155778895 . 67.22265625) (67.66834170854271 . 69.30474853515625) (66.87437185929647 . 71.06768798828125) (66.08040201005025 . 72.81036376953125) (65.28643216080403 . 74.52264404296875) (64.49246231155779 . 76.0677490234375) (63.698492462311556 . 77.23291015625) (62.90452261306533 . 78.26129150390625) (62.1105527638191 . 79.239013671875) (61.31658291457286 . 80.171142578125) (60.52261306532663 . 80.9512939453125) (59.7286432160804 . 81.6199951171875) (58.934673366834176 . 82.2177734375) (58.140703517587944 . 82.78009033203125) (57.346733668341706 . 83.35760498046875) (56.552763819095475 . 83.90472412109375) (55.75879396984925 . 84.42144775390625) (54.96482412060301 . 84.8115234375) (54.170854271356774 . 85.19146728515625) (53.376884422110564 . 85.601806640625) (52.582914572864325 . 85.926025390625) (51.78894472361809 . 86.189453125) (50.99497487437186 . 86.35662841796875) (50.20100502512563 . 86.55419921875) (49.4070351758794 . 86.71124267578125) (48.61306532663316 . 86.79229736328125) (47.81909547738693 . 86.86322021484375) (47.02512562814071 . 86.898681640625) (46.23115577889447 . 86.9493408203125) (45.43718592964824 . 86.9898681640625) (44.64321608040201 . 87.0) (43.84924623115579 . 87.0) (43.05527638190955 . 87.0) (42.26130653266331 . 87.0) (41.46733668341709 . 87.0) (40.673366834170864 . 87.0) (39.87939698492463 . 87.0) (39.085427135678394 . 87.0) (38.291457286432156 . 87.0) (37.49748743718593 . 87.0) (36.70351758793969 . 87.0) (35.90954773869347 . 87.0) (35.11557788944724 . 87.0) (34.321608040201006 . 87.0) (33.527638190954775 . 87.0) (32.73366834170854 . 87.0) (31.93969849246232 . 87.0) (31.14572864321608 . 87.0) (30.351758793969847 . 87.0) (29.557788944723626 . 87.0) (28.76381909547739 . 87.0) (27.969849246231156 . 87.0) (27.175879396984932 . 87.0) (26.381909547738687 . 87.0) (25.587939698492466 . 87.0) (24.793969849246224 . 87.0) (24.0 . 87.0)) 0 0 winding) (set-smoothing smoothed) (do-set-pen! ((0 2 123 1.0) 0.5 solid round round #f)) (draw-lines ((182.0 . 87.0) (181.20603015075378 . 87.0) (180.41206030150752 . 87.0) (179.61809045226133 . 87.0) (178.82412060301507 . 87.0) (178.03015075376885 . 87.0) (177.2361809045226 . 87.0) (176.4422110552764 . 87.0) (175.64824120603015 . 87.0) (174.85427135678393 . 87.0) (174.06030150753767 . 87.0) (173.26633165829145 . 87.0) (172.47236180904522 . 87.0) (171.67839195979897 . 87.0) (170.88442211055278 . 87.0) (170.09045226130652 . 87.0) (169.29648241206033 . 87.0) (168.50251256281408 . 87.0) (167.70854271356785 . 87.0) (166.9145728643216 . 87.0) (166.12060301507537 . 87.0) (165.32663316582915 . 87.0) (164.5326633165829 . 87.0) (163.7386934673367 . 87.0) (162.94472361809048 . 87.0) (162.1507537688442 . 87.0) (161.356783919598 . 87.0) (160.56281407035178 . 87.0) (159.76884422110555 . 87.0) (158.9748743718593 . 87.0) (158.18090452261305 . 87.0) (157.38693467336682 . 87.0) (156.59296482412063 . 87.0) (155.79899497487438 . 87.0) (155.00502512562812 . 87.0) (154.2110552763819 . 87.0) (153.4170854271357 . 87.0) (152.62311557788948 . 87.0) (151.82914572864323 . 87.0) (151.03517587939697 . 87.0) (150.24120603015075 . 87.0) (149.44723618090455 . 87.0) (148.6532663316583 . 87.0) (147.85929648241205 . 87.0) (147.06532663316582 . 87.0) (146.2713567839196 . 87.0) (145.47738693467335 . 87.0) (144.68341708542715 . 87.0) (143.8894472361809 . 87.0) (143.09547738693468 . 87.0) (142.30150753768845 . 87.0) (141.5075376884422 . 87.0) (140.71356783919597 . 87.0) (139.91959798994975 . 87.0) (139.1256281407035 . 87.0) (138.3316582914573 . 87.0) (137.53768844221105 . 87.0) (136.74371859296483 . 87.0) (135.9497487437186 . 87.0) (135.15577889447235 . 87.0) (134.36180904522615 . 87.0) (133.5678391959799 . 87.0) (132.77386934673365 . 87.0) (131.97989949748745 . 87.0) (131.1859296482412 . 87.0) (130.39195979899498 . 87.0) (129.59798994974875 . 87.0) (128.8040201005025 . 87.0) (128.01005025125627 . 87.0) (127.21608040201006 . 87.0) (126.42211055276383 . 87.0) (125.62814070351759 . 87.0) (124.83417085427135 . 87.0) (124.04020100502512 . 87.0) (123.24623115577889 . 87.0) (122.45226130653266 . 87.0) (121.65829145728644 . 87.0) (120.8643216080402 . 87.0) (120.07035175879396 . 87.0) (119.27638190954775 . 87.0) (118.48241206030151 . 87.0) (117.68844221105527 . 87.0) (116.89447236180905 . 87.0) (116.10050251256281 . 87.0) (115.30653266331657 . 87.0) (114.51256281407036 . 87.0) (113.71859296482413 . 87.0) (112.92462311557789 . 87.0) (112.13065326633165 . 87.0) (111.33668341708542 . 87.0) (110.5427135678392 . 87.0) (109.74874371859296 . 87.0) (108.95477386934674 . 87.0) (108.1608040201005 . 87.0) (107.36683417085426 . 87.0) (106.57286432160805 . 87.0) (105.77889447236181 . 87.0) (104.98492462311557 . 87.0) (104.19095477386934 . 87.0) (103.39698492462311 . 87.0) (102.60301507537689 . 87.0) (101.80904522613066 . 87.0) (101.01507537688443 . 87.0) (100.2211055276382 . 87.0) (99.42713567839196 . 87.0) (98.63316582914572 . 87.0) (97.83919597989949 . 87.0) (97.04522613065326 . 87.0) (96.25125628140704 . 87.0) (95.4572864321608 . 87.0) (94.66331658291458 . 87.0) (93.86934673366835 . 87.0) (93.0753768844221 . 87.0) (92.28140703517589 . 87.0) (91.48743718592964 . 87.0) (90.69346733668341 . 87.0) (89.89949748743717 . 87.0) (89.10552763819095 . 87.0) (88.31155778894473 . 87.0) (87.51758793969849 . 87.0) (86.72361809045225 . 87.0) (85.92964824120602 . 87.0) (85.1356783919598 . 87.0) (84.34170854271355 . 87.0) (83.54773869346734 . 87.0) (82.7537688442211 . 87.0) (81.95979899497488 . 87.0) (81.16582914572865 . 87.0) (80.37185929648241 . 87.0) (79.57788944723617 . 87.0) (78.78391959798995 . 87.0) (77.98994974874373 . 87.0) (77.19597989949747 . 87.0) (76.40201005025126 . 87.0) (75.60804020100502 . 87.0) (74.8140703517588 . 87.0) (74.02010050251255 . 87.0) (73.22613065326632 . 87.0) (72.4321608040201 . 87.0) (71.63819095477386 . 87.0) (70.84422110552764 . 87.0) (70.0502512562814 . 87.0) (69.25628140703517 . 87.0) (68.46231155778895 . 87.0) (67.66834170854271 . 87.0) (66.87437185929647 . 87.0) (66.08040201005025 . 87.0) (65.28643216080403 . 87.0) (64.49246231155779 . 87.0) (63.698492462311556 . 87.0) (62.90452261306533 . 87.0) (62.1105527638191 . 87.0) (61.31658291457286 . 87.0) (60.52261306532663 . 87.0) (59.7286432160804 . 87.0) (58.934673366834176 . 87.0) (58.140703517587944 . 87.0) (57.346733668341706 . 87.0) (56.552763819095475 . 87.0) (55.75879396984925 . 87.0) (54.96482412060301 . 87.0) (54.170854271356774 . 87.0) (53.376884422110564 . 87.0) (52.582914572864325 . 87.0) (51.78894472361809 . 87.0) (50.99497487437186 . 87.0) (50.20100502512563 . 87.0) (49.4070351758794 . 87.0) (48.61306532663316 . 87.0) (47.81909547738693 . 87.0) (47.02512562814071 . 87.0) (46.23115577889447 . 87.0) (45.43718592964824 . 87.0) (44.64321608040201 . 87.0) (43.84924623115579 . 87.0) (43.05527638190955 . 87.0) (42.26130653266331 . 87.0) (41.46733668341709 . 87.0) (40.673366834170864 . 87.0) (39.87939698492463 . 87.0) (39.085427135678394 . 87.0) (38.291457286432156 . 87.0) (37.49748743718593 . 87.0) (36.70351758793969 . 87.0) (35.90954773869347 . 87.0) (35.11557788944724 . 87.0) (34.321608040201006 . 87.0) (33.527638190954775 . 87.0) (32.73366834170854 . 87.0) (31.93969849246232 . 87.0) (31.14572864321608 . 87.0) (30.351758793969847 . 87.0) (29.557788944723626 . 87.0) (28.76381909547739 . 87.0) (27.969849246231156 . 87.0) (27.175879396984932 . 87.0) (26.381909547738687 . 87.0) (25.587939698492466 . 87.0) (24.793969849246224 . 87.0) (24.0 . 87.0)) 0.0 0.0) (do-set-pen! ((0 2 123 1.0) 0.5 solid round round #f)) (draw-lines ((182.0 . 4.0) (181.20603015075378 . 4.0) (180.41206030150752 . 4.0) (179.61809045226133 . 4.0) (178.82412060301507 . 4.0) (178.03015075376885 . 4.0) (177.2361809045226 . 4.0) (176.4422110552764 . 4.0) (175.64824120603015 . 4.0) (174.85427135678393 . 4.0) (174.06030150753767 . 4.0) (173.26633165829145 . 4.0) (172.47236180904522 . 4.0) (171.67839195979897 . 4.0) (170.88442211055278 . 4.0) (170.09045226130652 . 4.0) (169.29648241206033 . 4.0) (168.50251256281408 . 4.0) (167.70854271356785 . 4.0) (166.9145728643216 . 4.0) (166.12060301507537 . 4.0) (165.32663316582915 . 4.0) (164.5326633165829 . 4.0) (163.7386934673367 . 4.0) (162.94472361809048 . 4.0) (162.1507537688442 . 4.0) (161.356783919598 . 4.0) (160.56281407035178 . 4.0) (159.76884422110555 . 4.0) (158.9748743718593 . 4.0) (158.18090452261305 . 4.0) (157.38693467336682 . 4.0) (156.59296482412063 . 4.0) (155.79899497487438 . 4.0) (155.00502512562812 . 4.0) (154.2110552763819 . 4.0) (153.4170854271357 . 4.0) (152.62311557788948 . 4.0) (151.82914572864323 . 4.0) (151.03517587939697 . 4.0) (150.24120603015075 . 4.0) (149.44723618090455 . 4.0) (148.6532663316583 . 4.0) (147.85929648241205 . 4.0) (147.06532663316582 . 4.0) (146.2713567839196 . 4.0) (145.47738693467335 . 4.0) (144.68341708542715 . 4.0) (143.8894472361809 . 4.0) (143.09547738693468 . 4.0) (142.30150753768845 . 4.0) (141.5075376884422 . 4.0) (140.71356783919597 . 4.0) (139.91959798994975 . 4.0) (139.1256281407035 . 4.0) (138.3316582914573 . 4.0) (137.53768844221105 . 4.0) (136.74371859296483 . 4.0) (135.9497487437186 . 4.0) (135.15577889447235 . 4.0) (134.36180904522615 . 4.0) (133.5678391959799 . 4.0) (132.77386934673365 . 4.0) (131.97989949748745 . 4.0) (131.1859296482412 . 4.0) (130.39195979899498 . 4.0) (129.59798994974875 . 4.0) (128.8040201005025 . 4.0) (128.01005025125627 . 4.0) (127.21608040201006 . 4.0) (126.42211055276383 . 4.0) (125.62814070351759 . 4.0) (124.83417085427135 . 4.0) (124.04020100502512 . 4.0) (123.24623115577889 . 4.0) (122.45226130653266 . 4.0) (121.65829145728644 . 4.0) (120.8643216080402 . 4.0) (120.07035175879396 . 4.0) (119.27638190954775 . 4.0) (118.48241206030151 . 4.0) (117.68844221105527 . 4.0) (116.89447236180905 . 4.0) (116.10050251256281 . 4.0) (115.30653266331657 . 4.0) (114.51256281407036 . 4.0) (113.71859296482413 . 4.0) (112.92462311557789 . 4.0) (112.13065326633165 . 4.0) (111.33668341708542 . 4.0) (110.5427135678392 . 4.0) (109.74874371859296 . 4.0) (108.95477386934674 . 4.0) (108.1608040201005 . 4.0) (107.36683417085426 . 4.0) (106.57286432160805 . 4.0) (105.77889447236181 . 4.0) (104.98492462311557 . 4.0) (104.19095477386934 . 4.0) (103.39698492462311 . 4.0) (102.60301507537689 . 4.0) (101.80904522613066 . 4.0) (101.01507537688443 . 4.0) (100.2211055276382 . 4.0) (99.42713567839196 . 4.0) (98.63316582914572 . 4.0) (97.83919597989949 . 4.0) (97.04522613065326 . 4.0) (96.25125628140704 . 4.00506591796875) (95.4572864321608 . 4.06585693359375) (94.66331658291458 . 4.18743896484375) (93.86934673366835 . 4.4356689453125) (93.0753768844221 . 4.7396240234375) (92.28140703517589 . 5.21075439453125) (91.48743718592964 . 5.76800537109375) (90.69346733668341 . 6.5025634765625) (89.89949748743717 . 7.49041748046875) (89.10552763819095 . 8.559326171875) (88.31155778894473 . 9.9271240234375) (87.51758793969849 . 11.36077880859375) (86.72361809045225 . 12.9666748046875) (85.92964824120602 . 14.72454833984375) (85.1356783919598 . 16.61920166015625) (84.34170854271355 . 18.4581298828125) (83.54773869346734 . 20.41357421875) (82.7537688442211 . 22.61724853515625) (81.95979899497488 . 24.91717529296875) (81.16582914572865 . 27.38427734375) (80.37185929648241 . 30.04388427734375) (79.57788944723617 . 32.8250732421875) (78.78391959798995 . 35.611328125) (77.98994974874373 . 38.873779296875) (77.19597989949747 . 41.6904296875) (76.40201005025126 . 44.4361572265625) (75.60804020100502 . 47.07550048828125) (74.8140703517588 . 49.7655029296875) (74.02010050251255 . 52.04010009765625) (73.22613065326632 . 54.3450927734375) (72.4321608040201 . 56.54876708984375) (71.63819095477386 . 58.6815185546875) (70.84422110552764 . 60.80413818359375) (70.0502512562814 . 63.12939453125) (69.25628140703517 . 65.1051025390625) (68.46231155778895 . 67.22265625) (67.66834170854271 . 69.30474853515625) (66.87437185929647 . 71.06768798828125) (66.08040201005025 . 72.81036376953125) (65.28643216080403 . 74.52264404296875) (64.49246231155779 . 76.0677490234375) (63.698492462311556 . 77.23291015625) (62.90452261306533 . 78.26129150390625) (62.1105527638191 . 79.239013671875) (61.31658291457286 . 80.171142578125) (60.52261306532663 . 80.9512939453125) (59.7286432160804 . 81.6199951171875) (58.934673366834176 . 82.2177734375) (58.140703517587944 . 82.78009033203125) (57.346733668341706 . 83.35760498046875) (56.552763819095475 . 83.90472412109375) (55.75879396984925 . 84.42144775390625) (54.96482412060301 . 84.8115234375) (54.170854271356774 . 85.19146728515625) (53.376884422110564 . 85.601806640625) (52.582914572864325 . 85.926025390625) (51.78894472361809 . 86.189453125) (50.99497487437186 . 86.35662841796875) (50.20100502512563 . 86.55419921875) (49.4070351758794 . 86.71124267578125) (48.61306532663316 . 86.79229736328125) (47.81909547738693 . 86.86322021484375) (47.02512562814071 . 86.898681640625) (46.23115577889447 . 86.9493408203125) (45.43718592964824 . 86.9898681640625) (44.64321608040201 . 87.0) (43.84924623115579 . 87.0) (43.05527638190955 . 87.0) (42.26130653266331 . 87.0) (41.46733668341709 . 87.0) (40.673366834170864 . 87.0) (39.87939698492463 . 87.0) (39.085427135678394 . 87.0) (38.291457286432156 . 87.0) (37.49748743718593 . 87.0) (36.70351758793969 . 87.0) (35.90954773869347 . 87.0) (35.11557788944724 . 87.0) (34.321608040201006 . 87.0) (33.527638190954775 . 87.0) (32.73366834170854 . 87.0) (31.93969849246232 . 87.0) (31.14572864321608 . 87.0) (30.351758793969847 . 87.0) (29.557788944723626 . 87.0) (28.76381909547739 . 87.0) (27.969849246231156 . 87.0) (27.175879396984932 . 87.0) (26.381909547738687 . 87.0) (25.587939698492466 . 87.0) (24.793969849246224 . 87.0) (24.0 . 87.0)) 0.0 0.0) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-font (8 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 transparent round round #f)) (do-set-brush! ((210 105 30 1.0) solid #f #f #f)) (set-smoothing unsmoothed) (draw-polygon ((24.793969849246224 . 87.0) (25.587939698492466 . 87.0) (26.381909547738687 . 87.0) (27.175879396984932 . 87.0) (27.969849246231156 . 87.0) (28.76381909547739 . 87.0) (29.557788944723626 . 87.0) (30.351758793969847 . 87.0) (31.14572864321608 . 87.0) (31.93969849246232 . 87.0) (32.73366834170854 . 87.0) (33.527638190954775 . 87.0) (34.321608040201006 . 87.0) (35.11557788944724 . 87.0) (35.90954773869347 . 87.0) (36.70351758793969 . 87.0) (37.49748743718593 . 87.0) (38.291457286432156 . 87.0) (39.085427135678394 . 87.0) (39.87939698492463 . 87.0) (40.673366834170864 . 87.0) (41.46733668341709 . 87.0) (42.26130653266331 . 87.0) (43.05527638190955 . 87.0) (43.84924623115579 . 87.0) (43.84924623115579 . 87.0) (46.827540851198194 . 87.0) (47.02512562814071 . 86.99053265493357) (47.81909547738693 . 86.99053265493357) (48.61306532663316 . 86.99053265493357) (49.4070351758794 . 86.95006885249306) (50.20100502512563 . 86.95006885249306) (50.99497487437186 . 86.88574681757773) (51.78894472361809 . 86.84192344548599) (52.582914572864325 . 86.61094799693387) (53.376884422110564 . 86.48650523839774) (54.170854271356774 . 85.92024544785444) (54.96482412060301 . 85.60353469167687) (55.75879396984925 . 85.16796108006055) (56.552763819095475 . 84.73751639553299) (57.346733668341706 . 84.40106689025069) (58.140703517587944 . 84.17967006321143) (58.934673366834176 . 83.80069622251044) (59.7286432160804 . 83.22834913272831) (60.52261306532663 . 82.59414470769634) (61.31658291457286 . 81.1647766099946) (62.1105527638191 . 80.51817334360274) (62.90452261306533 . 79.3631915126004) (63.698492462311556 . 78.61124500790262) (64.49246231155779 . 77.69482015678756) (65.28643216080403 . 75.90051760223365) (66.08040201005025 . 74.17098638535127) (66.87437185929647 . 72.52314772894016) (67.66834170854271 . 70.68863460553973) (68.46231155778895 . 68.25075332311536) (69.25628140703517 . 65.86247155330933) (70.0502512562814 . 63.555213903351195) (70.84422110552764 . 60.88743455595761) (71.63819095477386 . 58.25509679548149) (72.4321608040201 . 56.16346847506118) (73.22613065326632 . 54.52204229839267) (74.02010050251255 . 51.81705761132421) (74.8140703517588 . 49.41902089951493) (75.60804020100502 . 47.31604780003692) (76.40201005025126 . 44.94528877097097) (77.19597989949747 . 41.83208334064352) (77.98994974874373 . 38.79699896922101) (78.78391959798995 . 35.7019345078042) (79.57788944723617 . 32.87481411792939) (80.37185929648241 . 29.95945630698356) (81.16582914572865 . 27.165447861634412) (81.95979899497488 . 24.008231204020205) (82.7537688442211 . 22.031168603640765) (83.54773869346734 . 19.860752967370487) (84.34170854271355 . 17.934709562940895) (85.1356783919598 . 16.2818627196788) (85.92964824120602 . 14.591853997993482) (86.72361809045225 . 13.000156815878384) (87.51758793969849 . 11.09821476078119) (88.31155778894473 . 9.521361755655676) (89.10552763819095 . 8.741155301927009) (89.89949748743717 . 7.388564852543681) (90.69346733668341 . 6.650160655817132) (91.48743718592964 . 5.981937955158031) (92.28140703517589 . 5.285351024152874) (93.0753768844221 . 5.0357788773495145) (93.86934673366835 . 4.592681605168309) (94.66331658291458 . 4.413144210075032) (95.4572864321608 . 4.0) (96.25125628140704 . 4.0) (97.04522613065326 . 4.0) (97.83919597989949 . 4.0) (98.63316582914572 . 4.0) (99.42713567839196 . 4.0) (100.2211055276382 . 4.0) (101.01507537688443 . 4.0) (101.80904522613066 . 4.0) (102.60301507537689 . 4.0) (103.39698492462311 . 4.0) (104.19095477386934 . 4.0) (104.98492462311557 . 4.0) (105.77889447236181 . 4.0) (106.57286432160805 . 4.0) (107.36683417085426 . 4.0) (108.1608040201005 . 4.0) (108.95477386934674 . 4.0) (109.74874371859296 . 4.0) (110.5427135678392 . 4.0) (111.33668341708542 . 4.0) (112.13065326633165 . 4.0) (112.92462311557789 . 4.0) (113.71859296482413 . 4.0) (114.51256281407036 . 4.0) (115.30653266331657 . 4.0) (116.10050251256281 . 4.0) (116.89447236180905 . 4.0) (117.68844221105527 . 4.0) (118.48241206030151 . 4.0) (119.27638190954775 . 4.0) (120.07035175879396 . 4.0) (120.8643216080402 . 4.0) (121.65829145728644 . 4.0) (122.45226130653266 . 4.0) (123.24623115577889 . 4.0) (124.04020100502512 . 4.0) (124.83417085427135 . 4.0) (125.62814070351759 . 4.0) (126.42211055276383 . 4.0) (127.21608040201006 . 4.0) (128.01005025125627 . 4.0) (128.8040201005025 . 4.0) (129.59798994974875 . 4.0) (130.39195979899498 . 4.0) (131.1859296482412 . 4.0) (131.97989949748745 . 4.0) (132.77386934673365 . 4.0) (133.5678391959799 . 4.0) (134.36180904522615 . 4.0) (135.15577889447235 . 4.0) (135.9497487437186 . 4.0) (136.74371859296483 . 4.0) (137.53768844221105 . 4.0) (138.3316582914573 . 4.0) (139.1256281407035 . 4.0) (139.91959798994975 . 4.0) (140.71356783919597 . 4.0) (141.5075376884422 . 4.0) (142.30150753768845 . 4.0) (143.09547738693468 . 4.0) (143.8894472361809 . 4.0) (144.68341708542715 . 4.0) (145.47738693467335 . 4.0) (146.2713567839196 . 4.0) (147.06532663316582 . 4.0) (147.85929648241205 . 4.0) (148.6532663316583 . 4.0) (149.44723618090455 . 4.0) (150.24120603015075 . 4.0) (151.03517587939697 . 4.0) (151.82914572864323 . 4.0) (152.62311557788948 . 4.0) (153.4170854271357 . 4.0) (154.2110552763819 . 4.0) (155.00502512562812 . 4.0) (155.79899497487438 . 4.0) (156.59296482412063 . 4.0) (157.38693467336682 . 4.0) (158.18090452261305 . 4.0) (158.9748743718593 . 4.0) (159.76884422110555 . 4.0) (160.56281407035178 . 4.0) (161.356783919598 . 4.0) (162.1507537688442 . 4.0) (162.94472361809048 . 4.0) (163.7386934673367 . 4.0) (164.5326633165829 . 4.0) (165.32663316582915 . 4.0) (166.12060301507537 . 4.0) (166.9145728643216 . 4.0) (167.70854271356785 . 4.0) (168.50251256281408 . 4.0) (169.29648241206033 . 4.0) (170.09045226130652 . 4.0) (170.88442211055278 . 4.0) (171.67839195979897 . 4.0) (172.47236180904522 . 4.0) (173.26633165829145 . 4.0) (174.06030150753767 . 4.0) (174.85427135678393 . 4.0) (175.64824120603015 . 4.0) (176.4422110552764 . 4.0) (177.2361809045226 . 4.0) (178.03015075376885 . 4.0) (178.82412060301507 . 4.0) (179.61809045226133 . 4.0) (180.41206030150752 . 4.0) (181.20603015075378 . 4.0) (182.0 . 4.0) (181.20603015075378 . 4.0) (180.41206030150752 . 4.0) (179.61809045226133 . 4.0) (178.82412060301507 . 4.0) (178.03015075376885 . 4.0) (177.2361809045226 . 4.0) (176.4422110552764 . 4.0) (175.64824120603015 . 4.0) (174.85427135678393 . 4.0) (174.06030150753767 . 4.0) (173.26633165829145 . 4.0) (172.47236180904522 . 4.0) (171.67839195979897 . 4.0) (170.88442211055278 . 4.0) (170.09045226130652 . 4.0) (169.29648241206033 . 4.0) (168.50251256281408 . 4.0) (167.70854271356785 . 4.0) (166.9145728643216 . 4.0) (166.12060301507537 . 4.0) (165.32663316582915 . 4.0) (164.5326633165829 . 4.0) (163.7386934673367 . 4.0) (162.94472361809048 . 4.0) (162.1507537688442 . 4.0) (161.356783919598 . 4.0) (160.56281407035178 . 4.0) (159.76884422110555 . 4.0) (158.9748743718593 . 4.0) (158.18090452261305 . 4.0) (157.38693467336682 . 4.0) (156.59296482412063 . 4.0) (155.79899497487438 . 4.0) (155.00502512562812 . 4.0) (154.2110552763819 . 4.0) (153.4170854271357 . 4.0) (152.62311557788948 . 4.0) (151.82914572864323 . 4.0) (151.03517587939697 . 4.0) (150.24120603015075 . 4.0) (149.44723618090455 . 4.0) (148.6532663316583 . 4.0) (147.85929648241205 . 4.0) (147.06532663316582 . 4.0) (146.2713567839196 . 4.0) (145.47738693467335 . 4.0) (144.68341708542715 . 4.0) (143.8894472361809 . 4.0) (143.09547738693468 . 4.0) (142.30150753768845 . 4.0) (141.5075376884422 . 4.0) (140.71356783919597 . 4.0) (139.91959798994975 . 4.0) (139.1256281407035 . 4.0) (138.3316582914573 . 4.0) (137.53768844221105 . 4.0) (136.74371859296483 . 4.0) (135.9497487437186 . 4.0) (135.15577889447235 . 4.0) (134.36180904522615 . 4.0) (133.5678391959799 . 4.0) (132.77386934673365 . 4.0) (131.97989949748745 . 4.0) (131.1859296482412 . 4.0) (130.39195979899498 . 4.0) (129.59798994974875 . 4.0) (128.8040201005025 . 4.0) (128.01005025125627 . 4.0) (127.21608040201006 . 4.0) (126.42211055276383 . 4.0) (125.62814070351759 . 4.0) (124.83417085427135 . 4.0) (124.04020100502512 . 4.0) (123.24623115577889 . 4.0) (122.45226130653266 . 4.0) (121.65829145728644 . 4.0) (120.8643216080402 . 4.0) (120.07035175879396 . 4.0) (119.27638190954775 . 4.0) (118.48241206030151 . 4.0) (117.68844221105527 . 4.0) (116.89447236180905 . 4.0) (116.10050251256281 . 4.0) (115.30653266331657 . 4.0) (114.51256281407036 . 4.0) (113.71859296482413 . 4.0) (112.92462311557789 . 4.0) (112.13065326633165 . 4.0) (111.33668341708542 . 4.0) (110.5427135678392 . 4.0) (109.74874371859296 . 4.0) (108.95477386934674 . 4.0) (108.1608040201005 . 4.0) (107.36683417085426 . 4.0) (106.57286432160805 . 4.0) (105.77889447236181 . 4.0) (104.98492462311557 . 4.0) (104.19095477386934 . 4.0) (103.39698492462311 . 4.0) (102.60301507537689 . 4.0) (101.80904522613066 . 4.0) (101.01507537688443 . 4.0) (100.2211055276382 . 4.0) (99.42713567839196 . 4.0) (98.63316582914572 . 4.0) (97.83919597989949 . 4.0) (97.04522613065326 . 4.0) (96.25125628140704 . 4.0) (95.4572864321608 . 4.0) (95.4572864321608 . 4.0) (93.8717801589005 . 4.0) (93.86934673366835 . 4.000175537688833) (93.0753768844221 . 4.268506836936211) (92.28140703517589 . 4.611791832989979) (91.48743718592964 . 4.982347759127691) (90.69346733668341 . 5.499839344182874) (89.89949748743717 . 6.065720861742037) (89.10552763819095 . 6.8474161266444185) (88.31155778894473 . 7.727209672915762) (87.51758793969849 . 9.233213810647385) (86.72361809045225 . 10.769843184121626) (85.92964824120602 . 12.023860287720794) (85.1356783919598 . 14.00956585174977) (84.34170854271355 . 15.67671900848768) (83.54773869346734 . 17.782104175486666) (82.7537688442211 . 19.40597425350208) (81.95979899497488 . 21.104625938836946) (81.16582914572865 . 24.113123566937013) (80.37185929648241 . 26.180543693016432) (79.57788944723617 . 29.43090016778489) (78.78391959798995 . 31.939494063624373) (77.98994974874373 . 34.89157245935042) (77.19597989949747 . 37.42934523078506) (76.40201005025126 . 40.12613980045761) (75.60804020100502 . 43.091095057105946) (74.8140703517588 . 46.08669338619935) (74.02010050251255 . 49.14294238867579) (73.22613065326632 . 51.41795770160733) (72.4321608040201 . 53.45224581065311) (71.63819095477386 . 55.747760347375646) (70.84422110552764 . 57.265422586899525) (70.0502512562814 . 59.34050038236309) (69.25628140703517 . 61.53895701811924) (68.46231155778895 . 64.60496096259892) (67.66834170854271 . 66.43565110874599) (66.87437185929647 . 68.5139951282027) (66.08040201005025 . 70.18615647179159) (65.28643216080403 . 72.1323395406235) (64.49246231155779 . 74.48803698606959) (63.698492462311556 . 75.35018356352596) (62.90452261306533 . 76.25823705882817) (62.1105527638191 . 77.59325522782582) (61.31658291457286 . 79.08093767571968) (60.52261306532663 . 80.02299814944651) (59.7286432160804 . 80.57450801012884) (58.934673366834176 . 81.18787520606098) (58.140703517587944 . 81.99461565107428) (57.346733668341706 . 82.4846473954636) (56.552763819095475 . 83.21534074732415) (55.75879396984925 . 83.73346749136802) (54.96482412060301 . 84.36503673689455) (54.170854271356774 . 84.87832598071698) (53.376884422110564 . 85.49778047588798) (52.582914572864325 . 85.72905200306612) (51.78894472361809 . 85.97236226879973) (50.99497487437186 . 86.16568175385085) (50.20100502512563 . 86.4570740046498) (49.4070351758794 . 86.4570740046498) (48.61306532663316 . 86.65375305935214) (47.81909547738693 . 86.65375305935214) (47.02512562814071 . 86.65375305935214) (46.23115577889447 . 86.73444590578394) (45.43718592964824 . 86.73444590578394) (44.64321608040201 . 86.83047728648081) (43.84924623115579 . 87.0) (43.05527638190955 . 87.0) (42.26130653266331 . 87.0) (41.46733668341709 . 87.0) (40.673366834170864 . 87.0) (39.87939698492463 . 87.0) (39.085427135678394 . 87.0) (38.291457286432156 . 87.0) (37.49748743718593 . 87.0) (36.70351758793969 . 87.0) (35.90954773869347 . 87.0) (35.11557788944724 . 87.0) (34.321608040201006 . 87.0) (33.527638190954775 . 87.0) (32.73366834170854 . 87.0) (31.93969849246232 . 87.0) (31.14572864321608 . 87.0) (30.351758793969847 . 87.0) (29.557788944723626 . 87.0) (28.76381909547739 . 87.0) (27.969849246231156 . 87.0) (27.175879396984932 . 87.0) (26.381909547738687 . 87.0) (25.587939698492466 . 87.0) (24.793969849246224 . 87.0) (24.0 . 87.0)) 0 0 winding) (set-smoothing smoothed) (do-set-pen! ((210 105 30 1.0) 0.5 solid round round #f)) (draw-lines ((43.84924623115579 . 87.0) (43.84924623115579 . 87.0) (43.05527638190955 . 87.0) (42.26130653266331 . 87.0) (41.46733668341709 . 87.0) (40.673366834170864 . 87.0) (39.87939698492463 . 87.0) (39.085427135678394 . 87.0) (38.291457286432156 . 87.0) (37.49748743718593 . 87.0) (36.70351758793969 . 87.0) (35.90954773869347 . 87.0) (35.11557788944724 . 87.0) (34.321608040201006 . 87.0) (33.527638190954775 . 87.0) (32.73366834170854 . 87.0) (31.93969849246232 . 87.0) (31.14572864321608 . 87.0) (30.351758793969847 . 87.0) (29.557788944723626 . 87.0) (28.76381909547739 . 87.0) (27.969849246231156 . 87.0) (27.175879396984932 . 87.0) (26.381909547738687 . 87.0) (25.587939698492466 . 87.0) (24.793969849246224 . 87.0) (24.0 . 87.0)) 0.0 0.0) (draw-lines ((182.0 . 4.0) (181.20603015075378 . 4.0) (180.41206030150752 . 4.0) (179.61809045226133 . 4.0) (178.82412060301507 . 4.0) (178.03015075376885 . 4.0) (177.2361809045226 . 4.0) (176.4422110552764 . 4.0) (175.64824120603015 . 4.0) (174.85427135678393 . 4.0) (174.06030150753767 . 4.0) (173.26633165829145 . 4.0) (172.47236180904522 . 4.0) (171.67839195979897 . 4.0) (170.88442211055278 . 4.0) (170.09045226130652 . 4.0) (169.29648241206033 . 4.0) (168.50251256281408 . 4.0) (167.70854271356785 . 4.0) (166.9145728643216 . 4.0) (166.12060301507537 . 4.0) (165.32663316582915 . 4.0) (164.5326633165829 . 4.0) (163.7386934673367 . 4.0) (162.94472361809048 . 4.0) (162.1507537688442 . 4.0) (161.356783919598 . 4.0) (160.56281407035178 . 4.0) (159.76884422110555 . 4.0) (158.9748743718593 . 4.0) (158.18090452261305 . 4.0) (157.38693467336682 . 4.0) (156.59296482412063 . 4.0) (155.79899497487438 . 4.0) (155.00502512562812 . 4.0) (154.2110552763819 . 4.0) (153.4170854271357 . 4.0) (152.62311557788948 . 4.0) (151.82914572864323 . 4.0) (151.03517587939697 . 4.0) (150.24120603015075 . 4.0) (149.44723618090455 . 4.0) (148.6532663316583 . 4.0) (147.85929648241205 . 4.0) (147.06532663316582 . 4.0) (146.2713567839196 . 4.0) (145.47738693467335 . 4.0) (144.68341708542715 . 4.0) (143.8894472361809 . 4.0) (143.09547738693468 . 4.0) (142.30150753768845 . 4.0) (141.5075376884422 . 4.0) (140.71356783919597 . 4.0) (139.91959798994975 . 4.0) (139.1256281407035 . 4.0) (138.3316582914573 . 4.0) (137.53768844221105 . 4.0) (136.74371859296483 . 4.0) (135.9497487437186 . 4.0) (135.15577889447235 . 4.0) (134.36180904522615 . 4.0) (133.5678391959799 . 4.0) (132.77386934673365 . 4.0) (131.97989949748745 . 4.0) (131.1859296482412 . 4.0) (130.39195979899498 . 4.0) (129.59798994974875 . 4.0) (128.8040201005025 . 4.0) (128.01005025125627 . 4.0) (127.21608040201006 . 4.0) (126.42211055276383 . 4.0) (125.62814070351759 . 4.0) (124.83417085427135 . 4.0) (124.04020100502512 . 4.0) (123.24623115577889 . 4.0) (122.45226130653266 . 4.0) (121.65829145728644 . 4.0) (120.8643216080402 . 4.0) (120.07035175879396 . 4.0) (119.27638190954775 . 4.0) (118.48241206030151 . 4.0) (117.68844221105527 . 4.0) (116.89447236180905 . 4.0) (116.10050251256281 . 4.0) (115.30653266331657 . 4.0) (114.51256281407036 . 4.0) (113.71859296482413 . 4.0) (112.92462311557789 . 4.0) (112.13065326633165 . 4.0) (111.33668341708542 . 4.0) (110.5427135678392 . 4.0) (109.74874371859296 . 4.0) (108.95477386934674 . 4.0) (108.1608040201005 . 4.0) (107.36683417085426 . 4.0) (106.57286432160805 . 4.0) (105.77889447236181 . 4.0) (104.98492462311557 . 4.0) (104.19095477386934 . 4.0) (103.39698492462311 . 4.0) (102.60301507537689 . 4.0) (101.80904522613066 . 4.0) (101.01507537688443 . 4.0) (100.2211055276382 . 4.0) (99.42713567839196 . 4.0) (98.63316582914572 . 4.0) (97.83919597989949 . 4.0) (97.04522613065326 . 4.0) (96.25125628140704 . 4.0) (95.4572864321608 . 4.0) (94.66331658291458 . 4.413144210075032) (93.86934673366835 . 4.592681605168309) (93.0753768844221 . 5.0357788773495145) (92.28140703517589 . 5.285351024152874) (91.48743718592964 . 5.981937955158031) (90.69346733668341 . 6.650160655817132) (89.89949748743717 . 7.388564852543681) (89.10552763819095 . 8.741155301927009) (88.31155778894473 . 9.521361755655676) (87.51758793969849 . 11.09821476078119) (86.72361809045225 . 13.000156815878384) (85.92964824120602 . 14.591853997993482) (85.1356783919598 . 16.2818627196788) (84.34170854271355 . 17.934709562940895) (83.54773869346734 . 19.860752967370487) (82.7537688442211 . 22.031168603640765) (81.95979899497488 . 24.008231204020205) (81.16582914572865 . 27.165447861634412) (80.37185929648241 . 29.95945630698356) (79.57788944723617 . 32.87481411792939) (78.78391959798995 . 35.7019345078042) (77.98994974874373 . 38.79699896922101) (77.19597989949747 . 41.83208334064352) (76.40201005025126 . 44.94528877097097) (75.60804020100502 . 47.31604780003692) (74.8140703517588 . 49.41902089951493) (74.02010050251255 . 51.81705761132421) (73.22613065326632 . 54.52204229839267) (72.4321608040201 . 56.16346847506118) (71.63819095477386 . 58.25509679548149) (70.84422110552764 . 60.88743455595761) (70.0502512562814 . 63.555213903351195) (69.25628140703517 . 65.86247155330933) (68.46231155778895 . 68.25075332311536) (67.66834170854271 . 70.68863460553973) (66.87437185929647 . 72.52314772894016) (66.08040201005025 . 74.17098638535127) (65.28643216080403 . 75.90051760223365) (64.49246231155779 . 77.69482015678756) (63.698492462311556 . 78.61124500790262) (62.90452261306533 . 79.3631915126004) (62.1105527638191 . 80.51817334360274) (61.31658291457286 . 81.1647766099946) (60.52261306532663 . 82.59414470769634) (59.7286432160804 . 83.22834913272831) (58.934673366834176 . 83.80069622251044) (58.140703517587944 . 84.17967006321143) (57.346733668341706 . 84.40106689025069) (56.552763819095475 . 84.73751639553299) (55.75879396984925 . 85.16796108006055) (54.96482412060301 . 85.60353469167687) (54.170854271356774 . 85.92024544785444) (53.376884422110564 . 86.48650523839774) (52.582914572864325 . 86.61094799693387) (51.78894472361809 . 86.84192344548599) (50.99497487437186 . 86.88574681757773) (50.20100502512563 . 86.95006885249306) (49.4070351758794 . 86.95006885249306) (48.61306532663316 . 86.99053265493357) (47.81909547738693 . 86.99053265493357) (47.02512562814071 . 86.99053265493357) (46.827540851198194 . 87.0)) 0.0 0.0) (do-set-pen! ((210 105 30 1.0) 0.5 solid round round #f)) (draw-lines ((182.0 . 4.0) (181.20603015075378 . 4.0) (180.41206030150752 . 4.0) (179.61809045226133 . 4.0) (178.82412060301507 . 4.0) (178.03015075376885 . 4.0) (177.2361809045226 . 4.0) (176.4422110552764 . 4.0) (175.64824120603015 . 4.0) (174.85427135678393 . 4.0) (174.06030150753767 . 4.0) (173.26633165829145 . 4.0) (172.47236180904522 . 4.0) (171.67839195979897 . 4.0) (170.88442211055278 . 4.0) (170.09045226130652 . 4.0) (169.29648241206033 . 4.0) (168.50251256281408 . 4.0) (167.70854271356785 . 4.0) (166.9145728643216 . 4.0) (166.12060301507537 . 4.0) (165.32663316582915 . 4.0) (164.5326633165829 . 4.0) (163.7386934673367 . 4.0) (162.94472361809048 . 4.0) (162.1507537688442 . 4.0) (161.356783919598 . 4.0) (160.56281407035178 . 4.0) (159.76884422110555 . 4.0) (158.9748743718593 . 4.0) (158.18090452261305 . 4.0) (157.38693467336682 . 4.0) (156.59296482412063 . 4.0) (155.79899497487438 . 4.0) (155.00502512562812 . 4.0) (154.2110552763819 . 4.0) (153.4170854271357 . 4.0) (152.62311557788948 . 4.0) (151.82914572864323 . 4.0) (151.03517587939697 . 4.0) (150.24120603015075 . 4.0) (149.44723618090455 . 4.0) (148.6532663316583 . 4.0) (147.85929648241205 . 4.0) (147.06532663316582 . 4.0) (146.2713567839196 . 4.0) (145.47738693467335 . 4.0) (144.68341708542715 . 4.0) (143.8894472361809 . 4.0) (143.09547738693468 . 4.0) (142.30150753768845 . 4.0) (141.5075376884422 . 4.0) (140.71356783919597 . 4.0) (139.91959798994975 . 4.0) (139.1256281407035 . 4.0) (138.3316582914573 . 4.0) (137.53768844221105 . 4.0) (136.74371859296483 . 4.0) (135.9497487437186 . 4.0) (135.15577889447235 . 4.0) (134.36180904522615 . 4.0) (133.5678391959799 . 4.0) (132.77386934673365 . 4.0) (131.97989949748745 . 4.0) (131.1859296482412 . 4.0) (130.39195979899498 . 4.0) (129.59798994974875 . 4.0) (128.8040201005025 . 4.0) (128.01005025125627 . 4.0) (127.21608040201006 . 4.0) (126.42211055276383 . 4.0) (125.62814070351759 . 4.0) (124.83417085427135 . 4.0) (124.04020100502512 . 4.0) (123.24623115577889 . 4.0) (122.45226130653266 . 4.0) (121.65829145728644 . 4.0) (120.8643216080402 . 4.0) (120.07035175879396 . 4.0) (119.27638190954775 . 4.0) (118.48241206030151 . 4.0) (117.68844221105527 . 4.0) (116.89447236180905 . 4.0) (116.10050251256281 . 4.0) (115.30653266331657 . 4.0) (114.51256281407036 . 4.0) (113.71859296482413 . 4.0) (112.92462311557789 . 4.0) (112.13065326633165 . 4.0) (111.33668341708542 . 4.0) (110.5427135678392 . 4.0) (109.74874371859296 . 4.0) (108.95477386934674 . 4.0) (108.1608040201005 . 4.0) (107.36683417085426 . 4.0) (106.57286432160805 . 4.0) (105.77889447236181 . 4.0) (104.98492462311557 . 4.0) (104.19095477386934 . 4.0) (103.39698492462311 . 4.0) (102.60301507537689 . 4.0) (101.80904522613066 . 4.0) (101.01507537688443 . 4.0) (100.2211055276382 . 4.0) (99.42713567839196 . 4.0) (98.63316582914572 . 4.0) (97.83919597989949 . 4.0) (97.04522613065326 . 4.0) (96.25125628140704 . 4.0) (95.4572864321608 . 4.0) (95.4572864321608 . 4.0)) 0.0 0.0) (draw-lines ((93.8717801589005 . 4.0) (93.86934673366835 . 4.000175537688833) (93.0753768844221 . 4.268506836936211) (92.28140703517589 . 4.611791832989979) (91.48743718592964 . 4.982347759127691) (90.69346733668341 . 5.499839344182874) (89.89949748743717 . 6.065720861742037) (89.10552763819095 . 6.8474161266444185) (88.31155778894473 . 7.727209672915762) (87.51758793969849 . 9.233213810647385) (86.72361809045225 . 10.769843184121626) (85.92964824120602 . 12.023860287720794) (85.1356783919598 . 14.00956585174977) (84.34170854271355 . 15.67671900848768) (83.54773869346734 . 17.782104175486666) (82.7537688442211 . 19.40597425350208) (81.95979899497488 . 21.104625938836946) (81.16582914572865 . 24.113123566937013) (80.37185929648241 . 26.180543693016432) (79.57788944723617 . 29.43090016778489) (78.78391959798995 . 31.939494063624373) (77.98994974874373 . 34.89157245935042) (77.19597989949747 . 37.42934523078506) (76.40201005025126 . 40.12613980045761) (75.60804020100502 . 43.091095057105946) (74.8140703517588 . 46.08669338619935) (74.02010050251255 . 49.14294238867579) (73.22613065326632 . 51.41795770160733) (72.4321608040201 . 53.45224581065311) (71.63819095477386 . 55.747760347375646) (70.84422110552764 . 57.265422586899525) (70.0502512562814 . 59.34050038236309) (69.25628140703517 . 61.53895701811924) (68.46231155778895 . 64.60496096259892) (67.66834170854271 . 66.43565110874599) (66.87437185929647 . 68.5139951282027) (66.08040201005025 . 70.18615647179159) (65.28643216080403 . 72.1323395406235) (64.49246231155779 . 74.48803698606959) (63.698492462311556 . 75.35018356352596) (62.90452261306533 . 76.25823705882817) (62.1105527638191 . 77.59325522782582) (61.31658291457286 . 79.08093767571968) (60.52261306532663 . 80.02299814944651) (59.7286432160804 . 80.57450801012884) (58.934673366834176 . 81.18787520606098) (58.140703517587944 . 81.99461565107428) (57.346733668341706 . 82.4846473954636) (56.552763819095475 . 83.21534074732415) (55.75879396984925 . 83.73346749136802) (54.96482412060301 . 84.36503673689455) (54.170854271356774 . 84.87832598071698) (53.376884422110564 . 85.49778047588798) (52.582914572864325 . 85.72905200306612) (51.78894472361809 . 85.97236226879973) (50.99497487437186 . 86.16568175385085) (50.20100502512563 . 86.4570740046498) (49.4070351758794 . 86.4570740046498) (48.61306532663316 . 86.65375305935214) (47.81909547738693 . 86.65375305935214) (47.02512562814071 . 86.65375305935214) (46.23115577889447 . 86.73444590578394) (45.43718592964824 . 86.73444590578394) (44.64321608040201 . 86.83047728648081) (43.84924623115579 . 87.0) (43.05527638190955 . 87.0) (42.26130653266331 . 87.0) (41.46733668341709 . 87.0) (40.673366834170864 . 87.0) (39.87939698492463 . 87.0) (39.085427135678394 . 87.0) (38.291457286432156 . 87.0) (37.49748743718593 . 87.0) (36.70351758793969 . 87.0) (35.90954773869347 . 87.0) (35.11557788944724 . 87.0) (34.321608040201006 . 87.0) (33.527638190954775 . 87.0) (32.73366834170854 . 87.0) (31.93969849246232 . 87.0) (31.14572864321608 . 87.0) (30.351758793969847 . 87.0) (29.557788944723626 . 87.0) (28.76381909547739 . 87.0) (27.969849246231156 . 87.0) (27.175879396984932 . 87.0) (26.381909547738687 . 87.0) (25.587939698492466 . 87.0) (24.793969849246224 . 87.0) (24.0 . 87.0)) 0.0 0.0) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-font (8 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (set-alpha 1/2) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((24.0 . 87.0) (24.0 . 4.0)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 36.510636875524725 86.0 36.510636875524725 81.0) (draw-line 36.510636875524725 77.0 36.510636875524725 72.0) (draw-line 36.510636875524725 68.0 36.510636875524725 63.0) (draw-line 36.510636875524725 59.0 36.510636875524725 54.0) (draw-line 36.510636875524725 50.0 36.510636875524725 45.0) (draw-line 36.510636875524725 41.0 36.510636875524725 36.0) (draw-line 36.510636875524725 32.0 36.510636875524725 27.0) (draw-line 36.510636875524725 23.0 36.510636875524725 18.0) (draw-line 36.510636875524725 14.0 36.510636875524725 9.0) (draw-line 36.510636875524725 5.0 36.510636875524725 4.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 47.088229637161604 86.0 47.088229637161604 81.0) (draw-line 47.088229637161604 77.0 47.088229637161604 72.0) (draw-line 47.088229637161604 68.0 47.088229637161604 63.0) (draw-line 47.088229637161604 59.0 47.088229637161604 54.0) (draw-line 47.088229637161604 50.0 47.088229637161604 45.0) (draw-line 47.088229637161604 41.0 47.088229637161604 36.0) (draw-line 47.088229637161604 32.0 47.088229637161604 27.0) (draw-line 47.088229637161604 23.0 47.088229637161604 18.0) (draw-line 47.088229637161604 14.0 47.088229637161604 9.0) (draw-line 47.088229637161604 5.0 47.088229637161604 4.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 56.250957259636124 86.0 56.250957259636124 81.0) (draw-line 56.250957259636124 77.0 56.250957259636124 72.0) (draw-line 56.250957259636124 68.0 56.250957259636124 63.0) (draw-line 56.250957259636124 59.0 56.250957259636124 54.0) (draw-line 56.250957259636124 50.0 56.250957259636124 45.0) (draw-line 56.250957259636124 41.0 56.250957259636124 36.0) (draw-line 56.250957259636124 32.0 56.250957259636124 27.0) (draw-line 56.250957259636124 23.0 56.250957259636124 18.0) (draw-line 56.250957259636124 14.0 56.250957259636124 9.0) (draw-line 56.250957259636124 5.0 56.250957259636124 4.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 64.33305580632236 86.0 64.33305580632236 81.0) (draw-line 64.33305580632236 77.0 64.33305580632236 72.0) (draw-line 64.33305580632236 68.0 64.33305580632236 63.0) (draw-line 64.33305580632236 59.0 64.33305580632236 54.0) (draw-line 64.33305580632236 50.0 64.33305580632236 45.0) (draw-line 64.33305580632236 41.0 64.33305580632236 36.0) (draw-line 64.33305580632236 32.0 64.33305580632236 27.0) (draw-line 64.33305580632236 23.0 64.33305580632236 18.0) (draw-line 64.33305580632236 14.0 64.33305580632236 9.0) (draw-line 64.33305580632236 5.0 64.33305580632236 4.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((71.56273931490902 . 87.0) (71.56273931490902 . 4.0)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 119.12547862981805 86.0 119.12547862981805 81.0) (draw-line 119.12547862981805 77.0 119.12547862981805 72.0) (draw-line 119.12547862981805 68.0 119.12547862981805 63.0) (draw-line 119.12547862981805 59.0 119.12547862981805 54.0) (draw-line 119.12547862981805 50.0 119.12547862981805 45.0) (draw-line 119.12547862981805 41.0 119.12547862981805 36.0) (draw-line 119.12547862981805 32.0 119.12547862981805 27.0) (draw-line 119.12547862981805 23.0 119.12547862981805 18.0) (draw-line 119.12547862981805 14.0 119.12547862981805 9.0) (draw-line 119.12547862981805 5.0 119.12547862981805 4.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 146.94789756061567 86.0 146.94789756061567 81.0) (draw-line 146.94789756061567 77.0 146.94789756061567 72.0) (draw-line 146.94789756061567 68.0 146.94789756061567 63.0) (draw-line 146.94789756061567 59.0 146.94789756061567 54.0) (draw-line 146.94789756061567 50.0 146.94789756061567 45.0) (draw-line 146.94789756061567 41.0 146.94789756061567 36.0) (draw-line 146.94789756061567 32.0 146.94789756061567 27.0) (draw-line 146.94789756061567 23.0 146.94789756061567 18.0) (draw-line 146.94789756061567 14.0 146.94789756061567 9.0) (draw-line 146.94789756061567 5.0 146.94789756061567 4.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-line 166.68821794472706 86.0 166.68821794472706 81.0) (draw-line 166.68821794472706 77.0 166.68821794472706 72.0) (draw-line 166.68821794472706 68.0 166.68821794472706 63.0) (draw-line 166.68821794472706 59.0 166.68821794472706 54.0) (draw-line 166.68821794472706 50.0 166.68821794472706 45.0) (draw-line 166.68821794472706 41.0 166.68821794472706 36.0) (draw-line 166.68821794472706 32.0 166.68821794472706 27.0) (draw-line 166.68821794472706 23.0 166.68821794472706 18.0) (draw-line 166.68821794472706 14.0 166.68821794472706 9.0) (draw-line 166.68821794472706 5.0 166.68821794472706 4.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((182.0 . 87.0) (182.0 . 4.0)) 0.0 0.0) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-font (8 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (set-alpha 1/2) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((24.0 . 87.0) (182.0 . 87.0)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((24.0 . 45.5) (182.0 . 45.5)) 0.0 0.0) (do-set-pen! ((0 0 0 1.0) 1/2 solid round round #f)) (draw-lines ((24.0 . 4.0) (182.0 . 4.0)) 0.0 0.0) (set-alpha 1) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-font (8 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (set-alpha 1) (do-set-pen! ((0 2 123 1.0) 0.5 solid round round #f)) (draw-lines ((182.0 . 4.0) (181.20603015075378 . 4.0) (180.41206030150752 . 4.0) (179.61809045226133 . 4.0) (178.82412060301507 . 4.0) (178.03015075376885 . 4.0) (177.2361809045226 . 4.0) (176.4422110552764 . 4.0) (175.64824120603015 . 4.0) (174.85427135678393 . 4.0) (174.06030150753767 . 4.0) (173.26633165829145 . 4.0) (172.47236180904522 . 4.0) (171.67839195979897 . 4.0) (170.88442211055278 . 4.0) (170.09045226130652 . 4.0) (169.29648241206033 . 4.0) (168.50251256281408 . 4.0) (167.70854271356785 . 4.0) (166.9145728643216 . 4.0) (166.12060301507537 . 4.0) (165.32663316582915 . 4.0) (164.5326633165829 . 4.0) (163.7386934673367 . 4.0) (162.94472361809048 . 4.0) (162.1507537688442 . 4.0) (161.356783919598 . 4.0) (160.56281407035178 . 4.0) (159.76884422110555 . 4.0) (158.9748743718593 . 4.0) (158.18090452261305 . 4.0) (157.38693467336682 . 4.0) (156.59296482412063 . 4.0) (155.79899497487438 . 4.0) (155.00502512562812 . 4.0) (154.2110552763819 . 4.0) (153.4170854271357 . 4.0) (152.62311557788948 . 4.0) (151.82914572864323 . 4.0) (151.03517587939697 . 4.0) (150.24120603015075 . 4.0) (149.44723618090455 . 4.0) (148.6532663316583 . 4.0) (147.85929648241205 . 4.0) (147.06532663316582 . 4.0) (146.2713567839196 . 4.0) (145.47738693467335 . 4.0) (144.68341708542715 . 4.0) (143.8894472361809 . 4.0) (143.09547738693468 . 4.0) (142.30150753768845 . 4.0) (141.5075376884422 . 4.0) (140.71356783919597 . 4.0) (139.91959798994975 . 4.0) (139.1256281407035 . 4.0) (138.3316582914573 . 4.0) (137.53768844221105 . 4.0) (136.74371859296483 . 4.0) (135.9497487437186 . 4.0) (135.15577889447235 . 4.0) (134.36180904522615 . 4.0) (133.5678391959799 . 4.0) (132.77386934673365 . 4.0) (131.97989949748745 . 4.0) (131.1859296482412 . 4.0) (130.39195979899498 . 4.0) (129.59798994974875 . 4.0) (128.8040201005025 . 4.0) (128.01005025125627 . 4.0) (127.21608040201006 . 4.0) (126.42211055276383 . 4.0) (125.62814070351759 . 4.0) (124.83417085427135 . 4.0) (124.04020100502512 . 4.0) (123.24623115577889 . 4.0) (122.45226130653266 . 4.0) (121.65829145728644 . 4.0) (120.8643216080402 . 4.0) (120.07035175879396 . 4.0) (119.27638190954775 . 4.0) (118.48241206030151 . 4.0) (117.68844221105527 . 4.0) (116.89447236180905 . 4.0) (116.10050251256281 . 4.0) (115.30653266331657 . 4.0) (114.51256281407036 . 4.0) (113.71859296482413 . 4.0) (112.92462311557789 . 4.0) (112.13065326633165 . 4.0) (111.33668341708542 . 4.0) (110.5427135678392 . 4.0) (109.74874371859296 . 4.0) (108.95477386934674 . 4.0) (108.1608040201005 . 4.0) (107.36683417085426 . 4.0) (106.57286432160805 . 4.0) (105.77889447236181 . 4.0) (104.98492462311557 . 4.0) (104.19095477386934 . 4.0) (103.39698492462311 . 4.0) (102.60301507537689 . 4.0) (101.80904522613066 . 4.0) (101.01507537688443 . 4.0) (100.2211055276382 . 4.0) (99.42713567839196 . 4.0) (98.63316582914572 . 4.0) (97.83919597989949 . 4.0) (97.04522613065326 . 4.0) (96.25125628140704 . 4.00506591796875) (95.4572864321608 . 4.06585693359375) (94.66331658291458 . 4.18743896484375) (93.86934673366835 . 4.4356689453125) (93.0753768844221 . 4.7396240234375) (92.28140703517589 . 5.21075439453125) (91.48743718592964 . 5.76800537109375) (90.69346733668341 . 6.5025634765625) (89.89949748743717 . 7.49041748046875) (89.10552763819095 . 8.559326171875) (88.31155778894473 . 9.9271240234375) (87.51758793969849 . 11.36077880859375) (86.72361809045225 . 12.9666748046875) (85.92964824120602 . 14.72454833984375) (85.1356783919598 . 16.61920166015625) (84.34170854271355 . 18.4581298828125) (83.54773869346734 . 20.41357421875) (82.7537688442211 . 22.61724853515625) (81.95979899497488 . 24.91717529296875) (81.16582914572865 . 27.38427734375) (80.37185929648241 . 30.04388427734375) (79.57788944723617 . 32.8250732421875) (78.78391959798995 . 35.611328125) (77.98994974874373 . 38.873779296875) (77.19597989949747 . 41.6904296875) (76.40201005025126 . 44.4361572265625) (75.60804020100502 . 47.07550048828125) (74.8140703517588 . 49.7655029296875) (74.02010050251255 . 52.04010009765625) (73.22613065326632 . 54.3450927734375) (72.4321608040201 . 56.54876708984375) (71.63819095477386 . 58.6815185546875) (70.84422110552764 . 60.80413818359375) (70.0502512562814 . 63.12939453125) (69.25628140703517 . 65.1051025390625) (68.46231155778895 . 67.22265625) (67.66834170854271 . 69.30474853515625) (66.87437185929647 . 71.06768798828125) (66.08040201005025 . 72.81036376953125) (65.28643216080403 . 74.52264404296875) (64.49246231155779 . 76.0677490234375) (63.698492462311556 . 77.23291015625) (62.90452261306533 . 78.26129150390625) (62.1105527638191 . 79.239013671875) (61.31658291457286 . 80.171142578125) (60.52261306532663 . 80.9512939453125) (59.7286432160804 . 81.6199951171875) (58.934673366834176 . 82.2177734375) (58.140703517587944 . 82.78009033203125) (57.346733668341706 . 83.35760498046875) (56.552763819095475 . 83.90472412109375) (55.75879396984925 . 84.42144775390625) (54.96482412060301 . 84.8115234375) (54.170854271356774 . 85.19146728515625) (53.376884422110564 . 85.601806640625) (52.582914572864325 . 85.926025390625) (51.78894472361809 . 86.189453125) (50.99497487437186 . 86.35662841796875) (50.20100502512563 . 86.55419921875) (49.4070351758794 . 86.71124267578125) (48.61306532663316 . 86.79229736328125) (47.81909547738693 . 86.86322021484375) (47.02512562814071 . 86.898681640625) (46.23115577889447 . 86.9493408203125) (45.43718592964824 . 86.9898681640625) (44.64321608040201 . 87.0) (43.84924623115579 . 87.0) (43.05527638190955 . 87.0) (42.26130653266331 . 87.0) (41.46733668341709 . 87.0) (40.673366834170864 . 87.0) (39.87939698492463 . 87.0) (39.085427135678394 . 87.0) (38.291457286432156 . 87.0) (37.49748743718593 . 87.0) (36.70351758793969 . 87.0) (35.90954773869347 . 87.0) (35.11557788944724 . 87.0) (34.321608040201006 . 87.0) (33.527638190954775 . 87.0) (32.73366834170854 . 87.0) (31.93969849246232 . 87.0) (31.14572864321608 . 87.0) (30.351758793969847 . 87.0) (29.557788944723626 . 87.0) (28.76381909547739 . 87.0) (27.969849246231156 . 87.0) (27.175879396984932 . 87.0) (26.381909547738687 . 87.0) (25.587939698492466 . 87.0) (24.793969849246224 . 87.0) (24.0 . 87.0)) 0.0 0.0) (set-origin 0.0 10.0) (set-smoothing smoothed) (set-text-mode transparent) (set-clipping-region (#t (((((0.0 . 10.0) (190.0 . 10.0) (190.0 . 110.0) (0.0 . 110.0)))) . any))) (set-font (8 "bold" roman normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1) (set-origin 0.0 0.0) (set-smoothing unsmoothed) (set-text-mode transparent) (set-clipping-region #f) (set-font (12 #f default normal normal #f default #f aligned)) (set-text-foreground (0 0 0 1.0)) (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-background (255 255 255 1.0)) (set-alpha 1.0) (set-font (8 "Liberation Serif" default normal bold #f default #t unaligned)) (draw-text "10 samples of 140 configurations" 63.73828125 0.0 #t 0 0) (set-font (12 #f default normal normal #f default #f aligned))) 190.0 110.0 6.16015625 0.0))
| false |
e0549ccc41bb561873ef045c06b2eac2aa9e2f01 | 18434afe1c80686258b26c27020a4ed15f561afd | /lisp/stream.rkt | eed430e4d720ab25db35a2a462c837e5c672e910 | []
| no_license | ParkinWu/outofwork | cc9a50b5fa23c68dfc38e1915c6746ece19d4ffa | a3d7370182cd62cca50b97d524ea897801e1cec0 | refs/heads/master | 2020-07-25T00:39:24.290684 | 2017-01-04T01:46:39 | 2017-01-04T01:46:39 | 73,782,894 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,190 | rkt | stream.rkt | #lang racket
(require racket/stream)
(define (fold-right op init seq)
(define (iter a result)
(if (null? a)
result
(iter (cdr a)
(op (car a)
result))))
(iter seq init))
(define (enumerate-interval a b)
(define (iter a result)
(if (> a b)
result
(iter (+ a 1) (cons a result))))
(iter a null))
(define (sum-oddes a b)
(fold-right +
0
(filter odd? (enumerate-interval a b))))
;(car (cdr (filter odd? (enumerate-interval 10000 10000000))))
(define (enumerate-interval-stream a b)
(define (iter a result)
(if (> a b)
result
(iter (+ a 1) (stream-cons a result))))
(iter a empty-stream))
(define (filter-stream f seq)
(define (iter a result)
(if (stream-empty? a)
result
(if (f (stream-first a))
(iter (stream-rest a) (stream-cons (stream-first a) result))
(iter (stream-rest a) result))))
(iter seq empty-stream))
;(car (cdr (filter odd? (enumerate-interval 1 8000000))))
(stream-first (stream-rest
(stream-filter odd?
(enumerate-interval-stream 1 9000000))))
| false |
206f3d0638bfaaf2083173f286c515f2a0f5b163 | 67c87680aa55f10aeaaaa3d755573313ab4af46d | /1/18.rkt | 8459970016ecbfadb0352d76f0011a0213c57e83 | []
| no_license | noahlt/sicp | 5f6cdac4b291cbbd86f946dcc71fa654e2f5ef0a | b210886218c1f45de2a03df75c578d2889f460fc | refs/heads/master | 2020-12-30T09:58:01.580566 | 2016-01-31T17:34:38 | 2016-01-31T17:34:38 | 8,126,410 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 422 | rkt | 18.rkt | #lang racket
(define (double x)
(* x 2))
(define (halve x)
(/ x 2))
(define (even? n)
(= (remainder n 2) 0))
(define (odd? n)
(= (remainder n 2) 1))
(define (fast-mult a b)
(fast-mult-helper 0 a b))
(define (fast-mult-helper a b c)
(cond ((= b 1)
(+ a c))
((odd? b)
(fast-mult-helper (+ a c) (- b 1) c))
((even? b)
(fast-mult-helper a (halve b) (double c)))))
| false |
7ba58e3cdb215eb918ad09aca4361d7f0621a1c3 | 67d4a9a1030ecbe8fb83f31e5e94ba1843c962b7 | /request/check.rkt | beb9a3abf37da5dc5a35a0c03174965e073094f6 | [
"MIT"
]
| permissive | jackfirth/racket-request | 8cdc109f9159b6e6a63b3419884f440c724c7bfb | d010a60ad227a540f40b4707cd570d101d5530b3 | refs/heads/master | 2022-08-03T05:19:42.398702 | 2022-07-22T04:06:27 | 2022-07-22T04:06:27 | 38,994,326 | 23 | 7 | MIT | 2022-09-05T08:17:17 | 2015-07-13T06:09:29 | Racket | UTF-8 | Racket | false | false | 2,634 | rkt | check.rkt | #lang racket
(require "param.rkt"
rackunit)
(provide (all-from-out "param.rkt")
check-get
check-get-exn
check-get-not-exn
check-put
check-put-exn
check-put-not-exn
check-post
check-post-exn
check-post-not-exn
check-delete
check-delete-exn
check-delete-not-exn)
(define (fail-check-unless-responses-equal actual-response expected-response)
(unless (equal? actual-response expected-response)
(fail-check "Check failure - expected response does not equal actual response")))
(define-syntax-rule (with-request-check-info (location response) body ...)
(with-check-info (['location location]
['response response])
body ...))
(define-syntax-rule (with-request-check-info/body (location request-body response) body ...)
(with-check-info (['location location]
['request-body request-body]
['response response])
body ...))
(define (check-response location actual-response response)
(with-request-check-info (location actual-response)
(fail-check-unless-responses-equal actual-response response)))
(define (check-response/body location body actual-response response)
(with-request-check-info/body (location body actual-response)
(fail-check-unless-responses-equal actual-response response)))
(define-check (check-get location response)
(check-response location (get location) response))
(define-check (check-get-exn exn-pred location)
(check-exn exn-pred (thunk (get location))))
(define-check (check-get-not-exn location)
(check-not-exn (thunk (get location))))
(define-check (check-put location body response)
(check-response/body location body (put location body) response))
(define-check (check-put-exn exn-pred location body)
(check-exn exn-pred (thunk (put location body))))
(define-check (check-put-not-exn location body)
(check-not-exn (thunk (put location body))))
(define-check (check-post location body response)
(check-response/body location body (post location body) response))
(define-check (check-post-exn exn-pred location body)
(check-exn exn-pred (thunk (post location body))))
(define-check (check-post-not-exn location body)
(check-not-exn (thunk (post location body))))
(define-simple-check (check-delete location response)
(check-response location (delete location) response))
(define-check (check-delete-exn exn-pred location)
(check-exn exn-pred (thunk (delete location))))
(define-check (check-delete-not-exn location)
(check-not-exn (thunk (delete location))))
| true |
6d29608a11afea6468a6cb5b94723e026e52ebcc | 05acd32769e873a795433169209a6a4f9ba53c6e | /vestige-lib/vestige/private/tracing/logging.rkt | 961d1374ac1ddf304766596a137c806e03873736 | []
| no_license | haakonhr/vestige | 67479e394203d3c46079f7b8693c59102ba1b349 | ee7f0b35ba5e5d1a3e5ec90976c658bce24d0ba4 | refs/heads/master | 2023-03-04T23:51:34.753447 | 2021-02-16T16:17:35 | 2021-02-16T16:17:35 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 3,464 | rkt | logging.rkt | #lang racket/base
(require racket/format
racket/match
racket/string
syntax/parse/define
"../logging/app.rkt"
"../logging/depth.rkt"
"../logging/log.rkt"
"../logging/data.rkt")
(provide log-args
log-results
cms->tracing-data
make-called-hash-table)
;; Intentionally not using make-continuation-mark-key.
(define key 'vestige-tracing-continuation-mark-key)
(define-simple-macro (with-tracing-mark data e:expr)
(with-continuation-mark key data e))
(define (cms->tracing-data cms)
(match (continuation-mark-set-first cms key)
[(vector call? tail? name message caller called args-from args-upto)
(hasheq 'call call?
'tail tail?
'name name
'message message
'args-from args-from
'args-upto args-upto
'called called
'caller (caller-vector->hasheq caller))]
[#f #f]))
(define (log-args name tail? args kws kw-vals caller called positional-syms)
(define args-str (string-join
(append (match positional-syms
[(? symbol? s)
(list (~a s "=" (~v args)))]
[(? list? ss)
(for/list ([s (in-list ss)]
[v (in-list args)])
(~a s "=" (~v v)))])
(for/list ([k (in-list kws)]
[v (in-list kw-vals)])
(~a k "=" (~v v))))))
(define prefix (~a "("
name
(if (equal? args-str "") "" " ")))
(define suffix ")")
(define args-from (string-length prefix))
(define args-upto (+ args-from (string-length args-str)))
(define message (~a prefix args-str suffix))
(with-tracing-mark (vector #t tail? name message caller called args-from args-upto)
(with-more-logging-data #:srcloc? #f
(log! (~a (make-string (cms->logging-depth) #\>) " " message)))))
(define (log-results name results caller called)
(define results-str
(~a (match results
[(list) "#<void>"]
[(list v) (~v v)]
[vs (~s (cons 'values vs))])))
(with-tracing-mark (vector #f #f name results-str caller called #f #f)
(with-more-logging-data #:srcloc? #f
(log! (~a (make-string (cms->logging-depth) #\<) " " results-str)))))
;; The srcloc for all three of these should be the same file. If it's
;; ever not, then that's a bug with the srcloc handling in forms.rkt.
;; Supplying the file pathname thrice sucks especially because it
;; takes by far the most space. So here we reshape the three srclocs
;; into a little hash-table. We state the file pathname, once, and
;; supply only the cdr -- (line col pos span) -- of each
;; srcloc-as-list.
(define (make-called-hash-table definition header formals)
(match (list definition header formals)
[(list (cons file definition) (cons file header) (cons file formals))
(hasheq 'file file
'definition definition
'header header
'formals formals)]
[_ (raise-arguments-error
'make-called-hash-table
"expected srcloc-as-list/c values to have same file"
"definition" definition
"header" header
"formals" formals)]))
| false |
9401b30eeeb082912b8a18c990847baadb2ca817 | 14f7135f07d2e3f5a182bbc94b50662746fbbd18 | /cps.rkt | 113213cb3efcdd49ba1d566c51c4c065b2e449b6 | []
| no_license | evalwhen/plai-exercise | 5df104e885588e48e389f8535e4eda3579bdb34c | 5e2d9d6c020b78665702e31baa84e7444f7d3429 | refs/heads/master | 2020-12-30T05:52:49.121403 | 2020-02-12T00:47:01 | 2020-02-12T00:47:01 | 238,882,429 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,942 | rkt | cps.rkt | #lang plai-typed
(define (read-number [prompt : string]) : number
(begin
(display prompt)
(let ([v (read)])
(if (s-exp-number? v)
(s-exp->number v)
(read-number prompt)))))
;
;(display
; (+ (read-number "First number")
; (read-number "Second number")))
(define-type-alias label number)
(define new-label
(let ([counter 0])
(lambda ()
(begin (set! counter (+ counter 1))
counter))))
(define table (make-hash empty))
(define (read-number/suspend [prompt : string] rest)
(let ([g (new-label)])
(begin
(hash-set! table g rest)
(display prompt)
(display " To enter it, use the action field label ")
(display g)
(display "\n")
((error 'halting "Program shut down")))))
(define (resume [g : label] [n : number])
((some-v (hash-ref table g)) n))
;(read-number/suspend "First number"
; (lambda (v1)
; (display
; (+ v1
; (read-number "Second number")))))
;(read-number/suspend "First number"
; (lambda (v1)
; (read-number/suspend "Second number"
; (lambda (v2)
; (display
; (+ v1 v2))))))
(define cookie '-100)
(read-number/suspend "First number"
(lambda (v1)
(begin
(set! cookie v1)
(read-number/suspend "Second number"
(lambda (v2)
(display
(+ cookie v2)))))))
;(read-number/stateless "First number" prog1)
;
;(define (prog1 v1)
; (read-number/stateless "Second number" prog2))
;
;(define (prog2 v2)
; (display (+ v1 v2)))
| false |
b6f14cb6d40ef171787c755a4ca86310d225d925 | 2767601ac7d7cf999dfb407a5255c5d777b7b6d6 | /phone/tilt.rkt | 15e821a67b8d3e6c5b8a124d2b1a6ed88cb31aee | []
| no_license | manbaum/moby-scheme | 7fa8143f3749dc048762db549f1bcec76b4a8744 | 67fdf9299e9cf573834269fdcb3627d204e402ab | refs/heads/master | 2021-01-18T09:17:10.335355 | 2011-11-08T01:07:46 | 2011-11-08T01:07:46 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 7,841 | rkt | tilt.rkt | #lang s-exp "../js-vm/base.rkt"
(require "../js-vm/permissions/require-permission.rkt")
(require "../js-vm/ffi/ffi.rkt")
(require "../js-vm/jsworld/jsworld.rkt")
(require "in-phone.rkt")
(require "mock-tilt-setup.rkt")
(provide ;on-acceleration!
on-acceleration
;on-shake!
on-shake
;on-tilt!
on-tilt)
(require-permission "PERMISSION:TILT"
"PERMISSION:SHAKE")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Mocks
(define (mock-on-acceleration world-updater)
(make-world-config (lambda (on-acc)
(mock-acceleration-setup on-acc))
(lambda (shutdown-f)
(shutdown-f))
(lambda (w x y z)
(world-updater w
(prim-js->racket x)
(prim-js->racket y)
(prim-js->racket z)))))
(define (mock-on-tilt world-updater delay)
(make-world-config (lambda (on-acc)
(mock-tilt-setup on-acc))
(lambda (shutdown-f)
(shutdown-f))
(lambda (w x y z)
(world-updater w
(prim-js->racket x)
(prim-js->racket y)
(prim-js->racket z)))))
(define (mock-on-shake world-updater)
(make-world-config (lambda (on-acc)
(mock-shake-setup on-acc))
(lambda (shutdown-f)
(shutdown-f))
(lambda (w)
(world-updater w))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (phonegap-on-acceleration world-updater)
(let ([accelerometer (get-accelerometer)])
(make-world-config (lambda (success error)
(js-call (js-get-field accelerometer "watchAcceleration")
accelerometer
success
error))
(lambda (shutdown-f) (js-call shutdown-f #f))
(lambda (w js-x js-y js-z)
(let ([x (prim-js->racket js-x)]
[y (prim-js->racket js-y)]
[z (prim-js->racket js-z)])
(world-updater w x y z)))
(lambda (w e)
(error 'on-acceleration "an error occured with the accelerometer")))))
(define (phonegap-on-tilt world-updater delay)
(let ([accelerometer (get-accelerometer)]
[options (js-make-hash)])
(js-set-field! options
"frequency"
(racket->prim-js (* delay 1000)))
(make-world-config (lambda (on-change)
(let ([shutdown-f
(js-call (js-get-field
accelerometer
"watchOrientation")
accelerometer
on-change
js-undefined
options
)])
shutdown-f))
(lambda (shutdown-f)
(js-call shutdown-f #f))
;; on-change
(lambda (w js-azimuth js-pitch js-roll)
(let ([azimuth (prim-js->racket js-azimuth)]
[pitch (prim-js->racket js-pitch)]
[roll (prim-js->racket js-roll)])
(world-updater w azimuth pitch roll))))))
(define (phonegap-on-shake world-updater)
(let ([accelerometer (get-accelerometer)])
(make-world-config (lambda (success error)
(js-call (js-get-field accelerometer "watchShake")
accelerometer
success
error))
(lambda (shutdown-f) (js-call shutdown-f #f))
world-updater
(lambda (w e)
(error 'on-shake "an error occured with the accelerometer")))))
;; get-accelerometer: -> js-value
;; Gets the accelerometer object.
(define (get-accelerometer)
(let ([navigator (js-get-global-value "navigator")])
(js-get-field navigator "accelerometer")))
#;(define (on-acceleration! world-updater effect-updater)
(let ([accelerometer (js-new (js-get-field (js-get-global-value "phonegap") "Accelerometer"))])
(make-world-config (lambda (success error)
(js-call (js-get-field accelerometer "watchAcceleration")
accelerometer
success
error))
(lambda (shutdown-f) (js-call shutdown-f #f))
(lambda (w js-x js-y js-z)
(let ([x (prim-js->racket js-x)]
[y (prim-js->racket js-y)]
[z (prim-js->racket js-z)])
(world-with-effects (effect-updater w x y z)
(world-updater w x y z))))
(lambda (w e)
(error 'on-acceleration! "an error occured with the accelerometer")))))
#;(define (on-shake! world-updater effect-updater)
(let ([accelerometer (js-new (js-get-field (js-get-global-value "phonegap") "Accelerometer"))])
(make-world-config (lambda (success error)
(js-call (js-get-field accelerometer "watchShake")
accelerometer
success
error))
(lambda (shutdown-f) (js-call shutdown-f #f))
(lambda (w)
(world-with-effects (effect-updater w)
(world-updater w)))
(lambda (w e)
(error 'on-shake! "an error occured with the accelerometer")))))
#;(define (on-tilt! world-updater effect-updater)
(let ([accelerometer (js-new (js-get-global-value "Accelerometer"))])
(make-world-config (lambda (success error)
(js-call (js-get-field accelerometer "watchOrientation")
accelerometer
success
error))
(lambda (shutdown-f) (js-call shutdown-f #f))
(lambda (w js-azimuth js-pitch js-roll)
(let ([azimuth (prim-js->racket js-azimuth)]
[pitch (prim-js->racket js-pitch)]
[roll (prim-js->racket js-roll)])
(world-with-effects (effect-updater w azimuth pitch roll)
(world-updater w azimuth pitch roll))))
(lambda (w e)
(error 'on-tilt! "an error occured with the accelerometer")))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; adapt: (world-updater -> world-config) (world-updater -> world-config) -> (world-updater -> world-config)
;; Does the run-time check to see which implementation of a world updater is
;; appropriate.
(define (adapt mock-impl phone-impl)
(lambda (world-updater)
(cond
[(running-in-phone-context?)
(phone-impl world-updater)]
[else
(mock-impl world-updater)])))
;; Here are the provided bindings.
(define on-acceleration (adapt mock-on-acceleration phonegap-on-acceleration))
(define on-tilt
(case-lambda
[(world-updater) (on-tilt world-updater 1)]
[(world-updater delay)
(cond [(running-in-phone-context?)
(phonegap-on-tilt world-updater delay)]
[else
(mock-on-tilt world-updater delay)])]))
(define on-shake (adapt mock-on-shake phonegap-on-shake))
| false |
2f0de0de3b43e66b731cd55d43dc3ff239472efc | 657061c0feb2dcbff98ca7a41b4ac09fe575f8de | /Racket/Exercises/Week8/streams.rkt | 346df4ad3e3bb4bdc2dbeaa3e9683426c37db274 | []
| no_license | vasil-pashov/FunctionalProgramming | 77ee7d9355329439cc8dd89b814395ffa0811975 | bb998a5df7b715555d3272c3e39b0a7481acf80a | refs/heads/master | 2021-09-07T19:31:05.031600 | 2018-02-27T20:50:44 | 2018-02-27T20:50:44 | 108,046,015 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,117 | rkt | streams.rkt | #lang racket
(define-syntax cons-stream
(syntax-rules () ((cons-stream h t) (cons h (delay t)))))
(define empty-stream? null?)
(define empty-stream '())
(define head car)
(define (tail stream) (force (cdr stream)))
(define (enum-stream a b)
(if (> a b)
empty-stream
(cons-stream a (enum-stream (+ 1 a) b))))
(define (stream-take s n)
(if (or (empty-stream? s) (= 0 n))
'()
(cons (head s) (stream-take (tail s) (- n 1)))))
(define (search-stream p? s)
(cond
((empty-stream? s) #f)
((p? (head s)) s)
(else (search-stream p? (tail s)))))
(define (from n)
(cons-stream n (from (+ 1 n))))
(define nats (from 0))
(define (next-fib a b)
(cons-stream a (next-fib b (+ a b))))
(define stream-fibs (next-fib 0 1))
(define (map-stream f stream)
(cons-stream (f (head stream)) (map-stream f (tail stream))))
(define (filter-stream p? stream)
(if (p? (head stream))
(cons-stream (head stream) (filter-stream p? (tail stream)))
(filter-stream p? (tail stream))))
(define (zip op s1 s2)
(cons-stream (op (head s1) (head s2)) (zip op (tail s1) (tail s2))))
| true |
1758a73b6a09c9e7cb9ec7a8247b44b28482fb1a | 17126876cd4ff4847ff7c1fbe42471544323b16d | /beautiful-racket-demo/txtadv-demo/main.rkt | 07bd170e4623e5408b160684517876c603e43255 | [
"MIT"
]
| permissive | zenspider/beautiful-racket | a9994ebbea0842bc09941dc6d161fd527a7f4923 | 1fe93f59a2466c8f4842f17d10c1841609cb0705 | refs/heads/master | 2020-06-18T11:47:08.444886 | 2019-07-04T23:21:02 | 2019-07-04T23:21:02 | 196,293,969 | 1 | 0 | NOASSERTION | 2019-07-11T00:47:46 | 2019-07-11T00:47:46 | null | UTF-8 | Racket | false | false | 111 | rkt | main.rkt | #lang racket/base
(module reader racket/base
(require "reader.rkt")
(provide (all-from-out "reader.rkt"))) | false |
fba999701acab15786efa5ab3681696351786625 | 51a53a16e2ab9fe5cfae68b5710788db7d9dd1f3 | /info.rkt | 1db07ead184ee035fbb9cd41b2c6e2231e55a831 | []
| no_license | spdegabrielle/inference | 09b41c4af9cfee2be36c3a20bdcbed551f69f87c | b407fd29d0a82f3262ddd9ced3259117b9448f40 | refs/heads/master | 2021-01-20T05:54:24.793208 | 2013-10-14T20:19:09 | 2013-10-14T20:19:09 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 588 | rkt | info.rkt | #lang info
(define name "Inference")
(define blurb
(list "Implements a rule-based inference engine that supports both "
"forward (data-driven) and backward (goal-driven) chaining."))
(define release-notes
(list "Added query*-values and query*-values* as query* versions of "
"query-values and query-values*. Also changed the printing of "
"assertions to use the error print limits."))
(define categories '(scientific))
(define scribblings '(("scribblings/inference.scrbl" (multi-page))))
(define primary-file "inference.ss")
(define repositories (list "4.x"))
| false |
3be080f14fc6415d177949c018c9b7e3eedb50cc | d9c17bbf78ee71e76c3631b50409906c5e8fe3b0 | /lang/expander.rkt | c27f84b4933b937d2f12832e3e1e154462064bed | []
| no_license | williamberman/stack-language | d11ef0c8f2cfcc9282d239d889754db559d5c996 | ad741faa85b7f79eaa16948b1618c27756e6ec92 | refs/heads/master | 2022-04-23T12:42:17.577222 | 2020-04-18T04:07:08 | 2020-04-18T04:07:08 | 256,666,172 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 2,080 | rkt | expander.rkt | #lang racket
(provide #%module-begin
#%app
#%datum
(rename-out [#%x-top-interaction #%top-interaction])
stack-eval
stack-program
clear!
pop!
+
-
*
/)
(require "utils.rkt")
(define clear! 'clear!)
(define pop! 'pop!)
(define-syntax-rule (#%x-top-interaction . input)
(stack-eval input the-global-stack))
(define the-global-stack (list))
(define-syntax stack-program
(syntax-rules ()
[(stack-program argument)
(stack-eval argument the-global-stack)]
[(stack-program rest-arguments ... argument)
(stack-eval argument (stack-program rest-arguments ...))]))
(define (stack-eval-internal arg the-stack)
(cond
[(number? arg) (cons arg the-stack)]
[(stack-function? arg)
(begin
(define arguments (list))
(for ([_ (in-range (stack-function-number-arguments arg))])
(set! arguments (cons (car the-stack) arguments))
(set! the-stack (cdr the-stack)))
(cons (apply arg arguments) the-stack))]
[(equal? arg clear!) (list)]
[(equal? arg pop!) (cdr the-stack)]
[else (begin
(displayln (format "~a: Not recognized" arg))
the-stack)]))
(define (stack-eval . args)
(define the-next-stack (apply stack-eval-internal args))
(set! the-global-stack the-next-stack)
the-next-stack)
(struct stack-function (number-arguments function)
#:property prop:procedure (struct-field-index function))
(define-syntax +
(lambda (stx)
(syntax-case stx ()
[val
(identifier? (syntax val))
(syntax (stack-function 2 add))])))
(define-syntax -
(lambda (stx)
(syntax-case stx ()
[val
(identifier? (syntax val))
(syntax (stack-function 2 sub))])))
(define-syntax *
(lambda (stx)
(syntax-case stx ()
[val
(identifier? (syntax val))
(syntax (stack-function 2 mult))])))
(define-syntax /
(lambda (stx)
(syntax-case stx ()
[val
(identifier? (syntax val))
(syntax (stack-function 2 div))])))
| true |
2c192892853a1d2b30aa212a7fabf62dafab6d60 | 53543edaeff891dd1c2a1e53fc9a1727bb9c2328 | /benchmarks/mbta/base/t-view-types.rkt | 013b22548e587b4e404a5cda78cf57a8168e089c | [
"MIT"
]
| permissive | bennn/gtp-checkup | b836828c357eb5f9f2b0e39c34b44b46f2e97d22 | 18c69f980ea0e59eeea2edbba388d6fc7cc66a45 | refs/heads/master | 2023-05-28T16:26:42.676530 | 2023-05-25T03:06:49 | 2023-05-25T03:06:49 | 107,843,261 | 2 | 0 | NOASSERTION | 2019-04-25T17:12:26 | 2017-10-22T06:39:33 | Racket | UTF-8 | Racket | false | false | 644 | rkt | t-view-types.rkt | #lang typed/racket
(provide
;; types
Manage)
;; =============================================================================
(require "t-graph-types.rkt")
(define-type Manage
(Class
(field [mbta-subways [Instance MBTA]]
[disabled [Listof Station]])
;; disable the given station: #f for sucecss, String for failure
[add-to-disabled (-> String [U False String])]
;; enable the given station: #f for sucecss, String for failure
[remove-from-disabled (-> String [U False String])]
;; turn the inquiry strings into stations and find a path from the first to the second
[find (-> String String String)]))
| false |
451639b7ac6c32a0b0626607ac3546074d987b50 | 25a6efe766d07c52c1994585af7d7f347553bf54 | /gui-doc/scribblings/gui/pasteboard-class.scrbl | ee4c15e230d174781a29c1cb86761db726ee2048 | [
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/gui | 520ff8f4ae5704210822204aa7cd4b74dd4f3eef | d01d166149787e2d94176d3046764b35c7c0a876 | refs/heads/master | 2023-08-25T15:24:17.693905 | 2023-08-10T16:45:35 | 2023-08-10T16:45:35 | 27,413,435 | 72 | 96 | NOASSERTION | 2023-09-14T17:09:52 | 2014-12-02T03:35:22 | Racket | UTF-8 | Racket | false | false | 31,923 | scrbl | pasteboard-class.scrbl | #lang scribble/doc
@(require "common.rkt")
@defclass/title[pasteboard% object% (editor<%>)]{
A @racket[pasteboard%] object is an editor for displaying snips with
arbitrary @techlink{location}s.
@defconstructor[()]{
The editor will not be displayed until it is attached to an
@racket[editor-canvas%] object or some other @techlink{display}.
A new @racket[keymap%] object is created for the new editor. See also
@method[editor<%> get-keymap] and @method[editor<%> set-keymap].
A new @racket[style-list%] object is created for the new editor. See
also @method[editor<%> get-style-list] and @method[editor<%>
set-style-list].
}
@defmethod*[([(add-selected [snip (is-a?/c snip%)])
void?]
[(add-selected [x real?]
[y real?]
[w (and/c real? (not/c negative?))]
[h (and/c real? (not/c negative?))])
void?])]{
Selects snips without deselecting other snips. When coordinates are
given, this method selects all snips that intersect with the given
rectangle (in editor coordinates).
@|OnSelectNote|
}
@defmethod[#:mode pubment
(after-delete [snip (is-a?/c snip%)])
void?]{
@methspec{
Called after a snip is deleted from the editor (and after the
@techlink{display} is refreshed; use @method[pasteboard% on-delete]
and @method[editor<%> begin-edit-sequence] to avoid extra refreshes
when @method[pasteboard% after-delete] modifies the editor).
See also @method[pasteboard% can-delete?] and @method[editor<%>
on-edit-sequence].
No internals locks are set when this method is called.
}
@methimpl{
Does nothing.
}
}
@defmethod[#:mode pubment
(after-insert [snip (is-a?/c snip%)]
[before (or/c (is-a?/c snip%) #f)]
[x real?]
[y real?])
void?]{
@methspec{
Called after a snip is inserted into the editor (and after the
@techlink{display} is refreshed; use @method[pasteboard% on-insert]
and @method[editor<%> begin-edit-sequence] to avoid extra refreshes
when @method[pasteboard% after-insert] modifies the editor).
See also @method[pasteboard% can-insert?] and @method[editor<%>
on-edit-sequence].
No internals locks are set when this method is called.
}
@methimpl{
Does nothing.
}
}
@defmethod[#:mode pubment
(after-interactive-move [event (is-a?/c mouse-event%)])
void?]{
@methspec{
Called after the user stops interactively dragging snips (the ones
that are selected; see @method[pasteboard%
find-next-selected-snip]). The mouse event that terminated the move
(usually a button-up event) is provided.
See also @method[pasteboard% can-interactive-move?] and
@method[pasteboard% on-interactive-move].
}
@methimpl{
Does nothing.
}
}
@defmethod[#:mode pubment
(after-interactive-resize [snip (is-a?/c snip%)])
void?]{
@methspec{
Called after the user stops interactively resizing a snip (the one
that is currently selected; see @method[pasteboard%
find-next-selected-snip]). The @racket[snip] argument is the snip
that was resized.
See also @method[pasteboard% can-interactive-resize?] and
@method[pasteboard% on-interactive-resize].
}
@methimpl{
Does nothing.
}}
@defmethod[#:mode pubment
(after-move-to [snip (is-a?/c snip%)]
[x real?]
[y real?]
[dragging? any/c])
void?]{
@methspec{
Called after a given snip is moved within the editor (and after the
@techlink{display} is refreshed; use @method[pasteboard% on-move-to]
and @method[editor<%> begin-edit-sequence] to avoid extra refreshes
when @method[pasteboard% after-move-to] modifies the editor).
If @racket[dragging?] is not @racket[#f], then this move was a temporary
move for dragging.
See also
@method[pasteboard% can-move-to?] and
@method[editor<%> on-edit-sequence].
No internals locks are set when this method is called.
}
@methimpl{
Does nothing.
}}
@defmethod[#:mode pubment
(after-reorder [snip (is-a?/c snip%)]
[to-snip (is-a?/c snip%)]
[before? any/c])
boolean?]{
@methspec{
Called before a snip is moved in the pasteboard's front-to-back snip
order (and after the @techlink{display} is refreshed; use
@method[pasteboard% on-reorder] and @method[editor<%>
begin-edit-sequence] to avoid extra refreshes when
@method[pasteboard% after-reorder] modifies the editor).
If @racket[before?] is @racket[#t], then @racket[snip] was moved before
@racket[to-snip], otherwise @racket[snip] was moved after @racket[to-snip].
See also @method[pasteboard% can-reorder?] and @method[editor<%>
on-edit-sequence].
No internals locks are set when this method is called.
}
@methimpl{
Does nothing.
}}
@defmethod[#:mode pubment
(after-resize [snip (is-a?/c snip%)]
[w (and/c real? (not/c negative?))]
[h (and/c real? (not/c negative?))]
[resized? any/c])
void?]{
@methspec{
Called after a given snip is resized (and after the @techlink{display}
is refreshed; use @method[pasteboard% on-resize] and
@method[editor<%> begin-edit-sequence] to avoid extra refreshes when
@method[pasteboard% after-resize] modifies the editor), or after an
unsuccessful resize attempt was made.
If @racket[resized?] is not @racket[#f], the snip was successfully
resized.
See also @method[pasteboard% can-resize?] and @method[editor<%>
on-edit-sequence].
No internals locks are set when this method is called.
}
@methimpl{
Does nothing.
}}
@defmethod[#:mode pubment
(after-select [snip (is-a?/c snip%)]
[on? any/c])
void?]{
@methspec{
Called after a snip in the pasteboard is selected or deselected. See
also @method[pasteboard% on-select]. This method is not called after
selected snip is deleted (and thus de-selected indirectly); see also
@method[pasteboard% after-delete].
If @racket[on?] is @racket[#t], then @racket[snip] was just selected,
otherwise @racket[snip] was just deselected.
See also @method[pasteboard% can-select?] and @method[editor<%>
on-edit-sequence].
No internals locks are set when this method is called.
}
@methimpl{
Does nothing.
}}
@defmethod[#:mode pubment
(can-delete? [snip (is-a?/c snip%)])
boolean?]{
@methspec{
Called before a snip is deleted from the editor.
If the return value is @racket[#f], then the
delete will be aborted.
See also @method[pasteboard% on-delete] and @method[pasteboard%
after-delete].
The editor is internally locked for writing when this method is called (see
also @|lockdiscuss|).
}
@methimpl{
Returns @racket[#t].
}
}
@defmethod[#:mode pubment
(can-insert? [snip (is-a?/c snip%)]
[before (or/c (is-a?/c snip%) #f)]
[x real?]
[y real?])
boolean?]{
@methspec{
Called before a snip is inserted from the editor. If the return value
is @racket[#f], then the insert will be aborted.
See also @method[pasteboard% on-insert] and @method[pasteboard%
after-insert].
The editor is internally locked for writing when this method is called (see
also @|lockdiscuss|).
}
@methimpl{
Returns @racket[#t].
}
}
@defmethod[#:mode pubment
(can-interactive-move? [event (is-a?/c mouse-event%)])
boolean?]{
@methspec{
Called when the user starts interactively dragging snips (the ones
that are selected; see @method[pasteboard%
find-next-selected-snip]). All of the selected snips will be
moved. If @racket[#f] is returned, the interactive move is
disallowed. The mouse event that started the move (usually a
button-down event) is provided.
See also @method[pasteboard% on-interactive-move], @method[pasteboard%
after-interactive-move], and @method[pasteboard%
interactive-adjust-move].
}
@methimpl{
Returns @racket[#t].
}}
@defmethod[#:mode pubment
(can-interactive-resize? [snip (is-a?/c snip%)])
boolean?]{
@methspec{
Called when the user starts interactively resizing a snip (the one
that is selected; see @method[pasteboard%
find-next-selected-snip]). If @racket[#f] is returned, the
interactive resize is disallowed.
The @racket[snip] argument is the snip that will be resized.
See also @method[pasteboard% after-interactive-resize],
@method[pasteboard% after-interactive-resize], and
@method[pasteboard% interactive-adjust-resize].
}
@methimpl{
Returns @racket[#t].
}}
@defmethod[#:mode pubment
(can-move-to? [snip (is-a?/c snip%)]
[x real?]
[y real?]
[dragging? any/c])
boolean?]{
@methspec{
Called before a snip is moved in the editor. If the return value is
@racket[#f], then the move will be aborted.
If @racket[dragging?] is not @racket[#f], then this move is a
temporary move for dragging.
See also @method[pasteboard% on-move-to] and @method[pasteboard%
after-move-to].
The editor is internally locked for writing when this method is called
(see also @|lockdiscuss|).
}
@methimpl{
Returns @racket[#t].
}}
@defmethod[#:mode pubment
(can-reorder? [snip (is-a?/c snip%)]
[to-snip (is-a?/c snip%)]
[before? any/c])
boolean?]{
@methspec{
Called before a snip is moved in the pasteboard's front-to-back snip
order. If the return value is @racket[#f], then the reordering will
be aborted.
If @racket[before?] is @racket[#t], then @racket[snip] is to be moved before
@racket[to-snip], otherwise @racket[snip] is to be moved after
@racket[to-snip].
See also @method[pasteboard% on-reorder] and @method[pasteboard%
after-reorder].
The editor is internally locked for writing when this method is called (see
also @|lockdiscuss|).
}
@methimpl{
Returns @racket[#t].
}}
@defmethod[#:mode pubment
(can-resize? [snip (is-a?/c snip%)]
[w (and/c real? (not/c negative?))]
[h (and/c real? (not/c negative?))])
boolean?]{
@methspec{
Called before a snip is resized in the editor. If the return value is
@racket[#f], then the resize will be aborted.
See also @method[pasteboard% on-resize] and @method[pasteboard%
after-resize].
The editor is internally locked for writing when this method is called (see
also @|lockdiscuss|).
}
@methimpl{
Returns @racket[#t].
}}
@defmethod[#:mode pubment
(can-select? [snip (is-a?/c snip%)]
[on? any/c])
boolean?]{
@methspec{
This method is called before a snip in the pasteboard is selected or
deselected. If @racket[#f] is returned, the selection change is
disallowed. This method is not called when a selected snip is to be
deleted (and thus de-selected indirectly); see also
@method[pasteboard% can-delete?].
If @racket[on?] is @racket[#t], then @racket[snip] will be selected,
otherwise @racket[snip] will be deselected.
See also @method[pasteboard% on-select] and @method[pasteboard%
after-select].
The editor is internally locked for writing when this method is called (see
also @|lockdiscuss|).
}
@methimpl{
Returns @racket[#t].
}}
@defmethod*[([(change-style [style (or/c (is-a?/c style-delta%) (is-a?/c style<%>) #f) #f]
[snip (or/c (is-a?/c snip%) #f) #f])
void?])]{
Changes the style of @racket[snip] to a specific style or by applying
a style delta. If @racket[snip] is @racket[#f], then all currently
selected snips are changed. If @racket[style] is @racket[#f], then
the default style is used, according to @method[editor<%> default-style-name].
To change a large collection of snips from one style to another style,
consider providing a @racket[style<%>] instance rather than a
@racket[style-delta%] instance. Otherwise, @method[pasteboard%
change-style] must convert the @racket[style-delta%] instance to the
@racket[style<%>] instance for every snip; this conversion consumes
both time and (temporary) memory.
When a @racket[style] is provided: @InStyleListNote[@racket[style]]
}
@defmethod[#:mode override
(copy-self-to [dest (or/c (is-a?/c text%) (is-a?/c pasteboard%))])
void?]{
In addition to the default @xmethod[editor<%> copy-self-to] work, the
dragability, selection visibility state, and scroll step of
@this-obj[] are installed into @racket[dest].
}
@defmethod*[([(delete)
void?]
[(delete [snip (is-a?/c snip%)])
void?])]{
Deletes @racket[snip] when provided, or deletes the currently selected
snips from the editor when @racket[snip] is not provided.
@MonitorMethod[@elem{The content of an editor} @elem{the
system in response to other method
calls} @elem{@method[pasteboard% on-delete]} @elem{content deletion}]
}
@defmethod[(do-copy [time exact-integer?]
[extend? any/c])
void?]{
@methspec{
Called to copy the editor's current selection into the clipboard.
This method is provided so that it can be overridden by subclasses.
Do not call this method directly; instead, call @method[editor<%>
copy].
See @|timediscuss| for a discussion of the @racket[time] argument. If
@racket[time] is outside the platform-specific range of times,
@|MismatchExn|.
}
@methimpl{
Copies the current selection, extending the current clipboard contexts
if @racket[extend?] is true.
}}
@defmethod[(do-paste [time exact-integer?])
void?]{
@methspec{
Called to paste the current contents of the clipboard into the editor.
This method is provided so that it can be overridden by subclasses.
Do not call this method directly; instead, call @method[editor<%>
paste].
See @|timediscuss| for a discussion of the @racket[time] argument. If
@racket[time] is outside the platform-specific range of times,
@|MismatchExn|.
}
@methimpl{
Pastes.
}}
@defmethod[(do-paste-x-selection [time exact-integer?])
void?]{
@methspec{
Called to paste the current contents of the X11 selection on Unix (or
the clipboard on Windows and Mac OS) into the editor. This
method is provided so that it can be overridden by subclasses. Do
not call this method directly; instead, call @method[editor<%>
paste-x-selection].
See @|timediscuss| for a discussion of the @racket[time] argument. If
@racket[time] is outside the platform-specific range of times,
@|MismatchExn|.
}
@methimpl{
Pastes.
}}
@defmethod[(erase)
void?]{
Deletes all snips from the editor.
See also @method[pasteboard% delete].
}
@defmethod[(find-next-selected-snip [start (or/c (is-a?/c snip%) #f)])
(or/c (is-a?/c snip%) #f)]{
Returns the next selected snip in the editor, starting the search
after @racket[start]. (@|seesniporderdiscuss|) If @racket[start] is @racket[#f],
then the search starts with the first snip in the editor (and thus
returns the first selected snip, if any are selected). If no more
selected snips are available, or if @racket[start] is not in the
pasteboard, @racket[#f] is returned.
}
@defmethod[(find-snip [x real?]
[y real?]
[after (or/c (is-a?/c snip%) #f) #f])
(or/c (is-a?/c snip%) #f)]{
Finds the frontmost snip (after a given snip) that intersects a given
@techlink{location}. @|seesniporderdiscuss|
The @racket[x] and @racket[y] arguments are in editor coordinates. If
@racket[after] is not supplied, the frontmost snip at @racket[x] and
@racket[y] is returned, otherwise the frontmost snip behind @racket[after]
is returned. If @racket[after] is a snip that is not in the pasteboard,
@racket[#f] is returned.
@|OVD|
}
@defmethod[(get-area-selectable)
boolean?]{
Returns whether snips can be selected by dragging a selection box in the
pasteboard's background. By default, area selection
is allowed. See also @method[pasteboard% set-area-selectable].
@history[#:added "1.12"]}
@defmethod[(get-center) (values real? real?)]{
Returns the center of the pasteboard in pasteboard coordinates.
The first result is the x-coordinate of the center and
the second result is the y-coordinate of the center.
}
@defmethod[(get-dragable)
boolean?]{
Returns whether snips in the editor can be interactively dragged by
event handling in @method[pasteboard% on-default-event]: @racket[#t]
if dragging is allowed, @racket[#f] otherwise. By default, dragging
is allowed. See also @method[pasteboard% set-dragable].
}
@defmethod[(get-scroll-step)
(and/c real? (not/c negative?))]{
Gets the editor @techlink{location} offset for each vertical scroll
position. See also @method[pasteboard% set-scroll-step].
}
@defmethod[(get-selection-visible)
boolean?]{
Returns whether selection dots are drawn around the edge of selected
snips in the pasteboard. By default, selection dots are on. See also
@method[pasteboard% set-selection-visible].
}
@defmethod*[#:mode extend
([(insert [snip (is-a?/c snip%)])
void?]
[(insert [snip (is-a?/c snip%)]
[before (or/c (is-a?/c snip%) #f)]
[x real?]
[y real?])
void?]
[(insert [snip (is-a?/c snip%)]
[x real?]
[y real?])
void?]
[(insert [snip (is-a?/c snip%)]
[before (or/c (is-a?/c snip%) #f)])
void?])]{
Inserts @racket[snip] at @techlink{location} @math{(@racket[x],
@racket[y])} just in front of
@racket[before]. (@|seesniporderdiscuss|) If @racket[before] is not
provided or is @racket[#f], then @racket[snip] is inserted behind all
other snips. If @racket[x] and @racket[y] are not provided, the snip
is added at the center of the pasteboard.
}
@defmethod[(interactive-adjust-mouse [x (box/c real?)]
[y (box/c real?)])
void?]{
@methspec{
This method is called during interactive dragging and resizing (of the
currently selected snips; see @method[pasteboard%
find-next-selected-snip]) to preprocess the current mouse
@techlink{location} (in editor coordinates). The snip and actual x
and y coordinates are passed into the method (boxed); the resulting
coordinates are used instead of the actual mouse @techlink{location}.
See also
@method[pasteboard% interactive-adjust-resize].
}
@methimpl{
A negative value for either @racket[x] or @racket[y] is replaced with
@racket[0].
}}
@defmethod[(interactive-adjust-move [snip (is-a?/c snip%)]
[x (box/c real?)]
[y (box/c real?)])
void?]{
@methspec{
This method is called during an interactive move (for each selected
snip) to preprocess the user-determined snip @techlink{location} for each
selected snip. The snip and mouse-determined @techlink{location}s (in editor
coordinates) are passed into the method (boxed); the resulting
@techlink{location}s are used for graphical feedback to the user during moving.
The actual mouse coordinates are first sent through
@method[pasteboard% interactive-adjust-mouse] before determining the
@techlink{location}s passed into this method.
}
@methimpl{
Does nothing.
}}
@defmethod[(interactive-adjust-resize [snip (is-a?/c snip%)]
[width (box/c (and/c real? (not/c negative?)))]
[height (box/c (and/c real? (not/c negative?)))])
void?]{
@methspec{
This method is called during interactive resizing of a snip to
preprocess the user-determined snip size. The snip and
mouse-determined height and width are passed into the method (boxed);
the resulting height and width are used for graphical feedback to the
user during resizing.
The actual mouse coordinates are first sent through
@method[pasteboard% interactive-adjust-mouse] before determining the
sizes passed into this method.
}
@methimpl{
Does nothing.
}}
@defmethod[(is-selected? [snip (is-a?/c snip%)])
boolean?]{
Returns @racket[#t] if a specified snip is currently selected or
@racket[#f] otherwise.
}
@defmethod[(lower [snip (is-a?/c snip%)])
void?]{
Moves the snip one level deeper (i.e., behind one more other snip) in
the pasteboard's snip order. @|seesniporderdiscuss|
See also @method[pasteboard% raise], @method[pasteboard% set-before],
and @method[pasteboard% set-after].
}
@defmethod*[([(move [snip (is-a?/c snip%)]
[x real?]
[y real?])
void?]
[(move [x real?]
[y real?])
void?])]{
Moves @racket[snip] right @racket[x] pixels and down @racket[y]
pixels. If @racket[snip] is not provided, then all selected snips
are moved.
@|OnMoveNote|
}
@defmethod[(move-to [snip (is-a?/c snip%)]
[x real?]
[y real?])
void?]{
Moves @racket[snip] to a given @techlink{location} in the editor.
@|OnMoveNote|
}
@defmethod[(no-selected)
void?]{
Deselects all selected snips in the editor.
@|OnSelectNote|
}
@defmethod[#:mode override
(on-default-char [event (is-a?/c key-event%)])
void?]{
Calls @method[pasteboard% delete] with no arguments in response to the
Delete or Backspace key, and calls @method[pasteboard% move] with
suitable @racket[0]/@racket[1]/@racket[-1] arguments in response to an
arrow key.
}
@defmethod[#:mode override
(on-default-event [event (is-a?/c mouse-event%)])
void?]{
Selects, drags, and resizes snips:
@itemize[
@item{Clicking on a snip selects the snip. Shift-clicking extends
the current selection with the snip.}
@item{Clicking in the space between snips drags a selection
box; once the mouse button is released, all snips touching the
box are selected. Shift-clicking extends the current selection
with the new snips.}
@item{Double-clicking on a snip calls
@method[pasteboard% on-double-click].}
@item{Clicking on a selected snip drags the selected snip(s) to a new
@techlink{location}.}
@item{Clicking on a hiliting tab for a selected object resizes the
object.}
]
}
@defmethod[#:mode pubment
(on-delete [snip (is-a?/c snip%)])
void?]{
Called before a snip is deleted from the editor, after
@method[pasteboard% can-delete?] is called to verify that the
deletion is allowed. The @method[pasteboard% after-delete] method is
guaranteed to be called after the delete has completed.
The editor is internally locked for writing when this method is called
(see also @|lockdiscuss|). Use @method[pasteboard% after-delete] to
modify the editor, if necessary.
}
@defmethod[(on-double-click [snip (is-a?/c snip%)]
[event (is-a?/c mouse-event%)])
void?]{
@methspec{
This method is called when the user double-clicks on a snip in the
editor. The clicked-on snip and event records are passed to the
method.
}
@methimpl{
If @racket[snip] accepts events, it is designated as the caret owner
and all snips in the editor are unselected.
}}
@defmethod[#:mode pubment
(on-insert [snip (is-a?/c snip%)]
[before (or/c (is-a?/c snip%) #f)]
[x real?]
[y real?])
void?]{
Called before a snip is inserted from the editor, after
@method[pasteboard% can-insert?] is called to verify that the
insertion is allowed. The @method[pasteboard% after-insert] method is
guaranteed to be called after the insert has completed.
The editor is internally locked for writing when this method is called
(see also @|lockdiscuss|). Use @method[pasteboard% after-insert] to
modify the editor, if necessary.
}
@defmethod[#:mode pubment
(on-interactive-move [event (is-a?/c mouse-event%)])
void?]{
@methspec{
Called when the user starts interactively dragging snips (the ones
that are selected; see @method[pasteboard% find-next-selected-snip]),
after @method[pasteboard% can-interactive-move?] is called to verify
that the move is allowed. The @method[pasteboard%
after-interactive-move] method is guaranteed to be called after the
move has completed. All of the selected snips will be moved. The
mouse event that started the move (usually a button-down event) is
provided.
See also @method[pasteboard% interactive-adjust-move].
}
@methimpl{
Does nothing.
}}
@defmethod[#:mode pubment
(on-interactive-resize [snip (is-a?/c snip%)])
void?]{
@methspec{
Called when the user starts interactively resizing a snip (the one
that is selected; see @method[pasteboard% find-next-selected-snip]),
after @method[pasteboard% can-interactive-resize?] is called to
verify that the resize is allowed. The @method[pasteboard%
after-interactive-resize] method is guaranteed to be called after the
resize has completed.
The @racket[snip] argument is the snip that will be resized.
}
@methimpl{
Does nothing.
}}
@defmethod[#:mode pubment
(on-move-to [snip (is-a?/c snip%)]
[x real?]
[y real?]
[dragging? any/c])
void?]{
@methspec{
Called before a snip is moved in the editor, after @method[pasteboard%
can-move-to?] is called to verify that the move is allowed. The
@method[pasteboard% after-move-to] method is guaranteed to be called
after the move has completed.
If @racket[dragging?] is not @racket[#f], then this move is a
temporary move for dragging.
The editor is internally locked for writing when this method is called
(see also @|lockdiscuss|). Use @method[pasteboard% after-move-to] to
modify the editor, if necessary. See also @method[pasteboard%
on-interactive-move] and @method[pasteboard%
interactive-adjust-move].
}
@methimpl{
Does nothing.
}}
@defmethod[#:mode pubment
(on-reorder [snip (is-a?/c snip%)]
[to-snip (is-a?/c snip%)]
[before? any/c])
void?]{
@methspec{
Called before a snip is moved in the pasteboard's front-to-back snip
order, after @method[pasteboard% can-reorder?] is called to verify
that the reorder is allowed. The @method[pasteboard% after-reorder]
method is guaranteed to be called after the reorder has completed.
If @racket[before?] is @racket[#t], then @racket[snip] is to be moved
before @racket[to-snip], otherwise @racket[snip] is to be moved after
@racket[to-snip].
The editor is internally locked for writing when this method is called
(see also @|lockdiscuss|). Use @method[pasteboard% after-reorder] to
modify the editor, if necessary.
}
@methimpl{
Does nothing.
}}
@defmethod[#:mode pubment
(on-resize [snip (is-a?/c snip%)]
[w (and/c real? (not/c negative?))]
[h (and/c real? (not/c negative?))])
void?]{
@methspec{
Called before a snip is resized by the editor, after
@method[pasteboard% can-resize?] is called to verify that the resize
is allowed. The @method[pasteboard% after-resize] method is
guaranteed to be called after the resize has completed.
The editor is internally locked for writing when this method is called (see
also @|lockdiscuss|). Use
@method[pasteboard% after-resize] to modify the editor, if necessary.
Note that a snip calls
@method[editor<%> resized], not this method, to notify the pasteboard that the snip resized
itself.
}
@methimpl{
Does nothing.
}}
@defmethod[#:mode pubment
(on-select [snip (is-a?/c snip%)]
[on? any/c])
void?]{
@methspec{
Called before a snip in the pasteboard is selected or deselected,
after @method[pasteboard% can-select?] is called to verify that the
selection is allowed. The @method[pasteboard% after-select] method is
guaranteed to be called after the selection has completed. This
method is not called when a selected snip is to be deleted (and thus
de-selected indirectly); see also @method[pasteboard% on-delete] .
If @racket[on?] is @racket[#t], then @racket[snip] will be selected,
otherwise @racket[snip] will be deselected.
The editor is internally locked for writing when this method is called
(see also @|lockdiscuss|). Use @method[pasteboard% after-select] to
modify the editor, if necessary.
}
@methimpl{
Does nothing.
}}
@defmethod[(raise [snip (is-a?/c snip%)])
void?]{
Moves a snip one level shallower (i.e., in front of one more other
snip) in the pasteboard's snip order. @|seesniporderdiscuss|
See also @method[pasteboard% lower], @method[pasteboard% set-before],
and @method[pasteboard% set-after].
}
@defmethod[(remove [snip (is-a?/c snip%)])
void?]{
Removes the specified snip from the editor in a non-undoable manner
(so the snip is completely free of the pasteboard can be used in
other editors).
See also @method[pasteboard% delete].
}
@defmethod[(remove-selected [snip (is-a?/c snip%)])
void?]{
Deselects @racket[snip] (if it is currently selected) without
deselecting any other snips.
@|OnSelectNote|
}
@defmethod[(resize [snip (is-a?/c snip%)]
[w (and/c real? (not/c negative?))]
[h (and/c real? (not/c negative?))])
boolean?]{
Attempts to resize a given snip. If the snip allows resizing,
@racket[#t] is returned, otherwise @racket[#f] is returned. Using
this method instead of calling the snip's @method[snip% resize]
method directly will make the resize undo-able.
}
@defmethod[(set-after [snip (is-a?/c snip%)]
[after (or/c (is-a?/c snip%) #f)])
void?]{
Changes the depth of @racket[snip] moving it just behind
@racket[after]. If @racket[after] is @racket[#f], @racket[snip] is
moved to the back. @|seesniporderdiscuss|
See also @method[pasteboard% raise], @method[pasteboard% lower], and
@method[pasteboard% set-before].
}
@defmethod[(set-area-selectable [allow-drag? any/c])
void?]{
Set whether snips can be selected by dragging a selection box in the
pasteboard's background by event handling in @method[pasteboard%
on-default-event]: a true value allows selection, @racket[#f]
disallows selection. See also @method[pasteboard% get-area-selectable].
@history[#:added "1.12"]}
@defmethod[(set-before [snip (is-a?/c snip%)]
[before (or/c (is-a?/c snip%) #f)])
void?]{
Changes the depth of @racket[snip] moving it just in front of
@racket[before]. If @racket[before] is @racket[#f], @racket[snip] is
moved to the front. @|seesniporderdiscuss|
See also @method[pasteboard% raise], @method[pasteboard% lower], and
@method[pasteboard% set-after].
}
@defmethod[(set-dragable [allow-drag? any/c])
void?]{
Sets whether snips in the editor can be interactively dragged by event
handling in @method[pasteboard% on-default-event]: a true value
allows dragging, @racket[#f] disallows dragging. See also
@method[pasteboard% get-dragable].
}
@defmethod[(set-scroll-step [stepsize (and/c real? (not/c negative?))])
void?]{
Sets the editor @techlink{location} offset for each vertical scroll
position. See also @method[pasteboard% get-scroll-step].
}
@defmethod[(set-selected [snip (is-a?/c snip%)])
void?]{
Selects a specified snip (deselecting all others).
@|OnSelectNote|
}
@defmethod[(set-selection-visible [visible? any/c])
void?]{
Sets whether selection dots are drawn around the edge of selected
snips in the pasteboard. See also @method[pasteboard%
get-selection-visible].
}}
| false |
f96ac39796367de7114975748f8e7c1996cde60c | 52c2225c9f44c0da28ca1fd44606a8d197c8eac8 | /EOPL/ch1/list-length-test.rkt | c1584f712488950eeecee983d7e139beee449153 | []
| no_license | alanzplus/EOPL | c74c1e9dd27c0580107fd860b88016320a6f231c | d7b06392d26d93df851d0ca66d9edc681a06693c | refs/heads/master | 2021-06-20T00:59:21.685904 | 2019-08-15T06:18:10 | 2019-08-15T07:06:53 | 147,045,798 | 8 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 352 | rkt | list-length-test.rkt | #lang eopl
(require rackunit "list-length.rkt")
(require rackunit/text-ui)
(define list-length-test
(test-suite
"Tests for list-length.rkt"
(check-equal? (list-length '()) 0 "Empty list")
(check-equal? (list-length '(a b)) 2 "Simple list")
(check-equal? (list-length '(a b (a b c))) 3 "Nested list")))
(run-tests list-length-test)
| false |
03622503cef6279ce571ce657a507b3b811fad1d | f025f407eecf366f90254534e28cd068e19f40d1 | /handin-server/private/reloadable.rkt | 32de38f85ef4235221ac621c1189d59e471f2b28 | []
| no_license | DBatUTuebingen/handin | ace4f43ea9885ff32a5f20db14596b29843d09b4 | a2e83de246bda808b94d56b79458701fe1dc45b2 | refs/heads/master | 2021-01-22T01:58:36.859616 | 2018-10-22T08:35:06 | 2018-10-22T08:35:06 | 65,276,711 | 1 | 0 | null | 2018-08-29T13:36:28 | 2016-08-09T08:19:50 | Racket | UTF-8 | Racket | false | false | 3,420 | rkt | reloadable.rkt | #lang racket/base
(require syntax/moddep "logger.rkt")
(module mon racket/base
(define sema (make-semaphore 1))
(define-syntax-rule
(provide/monitor (id x ...))
(begin
(define -id
(let ([id (λ (x ...)
(call-with-semaphore
sema
(λ () (id x ...))))])
id))
(provide (rename-out [-id id]))))
(define-syntax-rule
(protect e)
(call-with-semaphore sema (λ () e)))
(provide provide/monitor protect))
(require (submod "." mon))
(module+ test
(module m racket/base
(require (submod ".." ".." mon))
(define (f x) (* 2 (g x)))
(define (g x) (+ x 1))
(provide/monitor (f x))
(provide/monitor (g x)))
(require (submod "." m) rackunit)
(check-equal? (g 2) 3)
(check-equal? (f 11) 24))
(provide/monitor (reload-module modspec path))
(define (reload-module modspec path)
;; the path argument is not needed (could use resolve-module-path here), but
;; its always known when this function is called
(let* ([name ((current-module-name-resolver) modspec #f #f #t)])
(log-line "(re)loading module from ~a" modspec)
(parameterize ([current-module-declare-name name]
[compile-enforce-module-constants #f])
;; only notify, it's fine to reset the file timer, since there's no point
;; in attempting to reload it yet again until it is edited.
(with-handlers ([exn? (lambda (e)
(log-line "error, module not reloaded (~a)"
(exn-message e)))])
(namespace-require '(only racket module #%top-interaction))
(load/use-compiled path)))))
;; pulls out a value from a module, reloading the module if its source file was
;; modified
(provide/monitor (auto-reload-value modspec valname))
(define module-times (make-hash))
(define (auto-reload-value modspec valname)
(define path0 (resolve-module-path modspec #f))
(define last (hash-ref module-times path0 #f))
(define-values (path cur)
(let ([s (file-or-directory-modify-seconds path0 #f (lambda () #f))])
(if s
(values path0 s)
(let* ([p (and (regexp-match? #rx#"[.]rkt$" (path->bytes path0))
(path-replace-suffix path0 #".ss"))]
[s (and p (file-or-directory-modify-seconds p #f (lambda () #f)))])
(if s (values p s) (values path0 +inf.0))))))
(unless (equal? cur last)
(hash-set! module-times path cur)
(reload-module modspec path))
(dynamic-require modspec valname))
(define poll-freq 2000.0) ; poll at most once every two seconds
;; pulls out a procedure from a module, and returns a wrapped procedure that
;; automatically reloads the module if the file was changed whenever the
;; procedure is used
(provide/monitor (auto-reload-procedure x y))
(define (auto-reload-procedure modspec procname)
(let ([path (resolve-module-path modspec #f)] [date #f] [proc #f] [poll #f])
(define (reload)
(unless (and proc (< (- (current-inexact-milliseconds) poll) poll-freq))
(set! poll (current-inexact-milliseconds))
(let ([cur (file-or-directory-modify-seconds path)])
(unless (equal? cur date)
(set! date cur)
(reload-module modspec path)
(set! proc (dynamic-require modspec procname))))))
(reload)
(lambda xs (protect (reload)) (apply proc xs))))
| true |
27666a5c1531ddaedcb569ff005449242fcb6435 | f5da4884c236512f9a945100234e213e51f980d3 | /serval/arm32/interp/branch-immediate.rkt | 23819fb186e07e56b3c6288e311ac3209bb3e333 | [
"MIT"
]
| permissive | uw-unsat/serval | 87574f5ec62480463ae976468d4ae7a56e06fe9f | 72adc4952a1e62330aea527214a26bd0c09cbd05 | refs/heads/master | 2022-05-12T23:19:48.558114 | 2022-01-20T18:53:26 | 2022-01-20T18:53:26 | 207,051,966 | 45 | 12 | MIT | 2022-03-21T14:05:50 | 2019-09-08T02:40:10 | Racket | UTF-8 | Racket | false | false | 432 | rkt | branch-immediate.rkt | #lang rosette
(require
"common.rkt")
(provide
b)
(define (decode imm24)
(define imm32 (sign-extend (concat imm24 (bv #b00 2)) (bitvector 32)))
(values imm32))
(define (interpret-b cpu imm24)
(define-values (imm32) (decode imm24))
(branch-write-pc cpu (bvadd (cpu-gpr-ref cpu (integer->gpr 15)) imm32) 'DIR))
(define-insn (imm24)
#:encode (lambda (H) (list (bv #b101 3) (bv H 1) imm24))
[(#b0) b interpret-b])
| false |
e08b26b326ebef60acf07d27ffec55451bdb110d | 3461eccca4043bb3a844b348cfb39c4eb13f326e | /unstable/lens/vector.scrbl | 4ed69b7e16e8f54f8a7dd5e105830655ce843118 | []
| no_license | stamourv/lens | d66eced5ac97e35539674c05f4633740f365d50a | 97079b84639fe8d7674e0e6914aa35b6f1fd047f | refs/heads/master | 2021-01-18T11:08:06.687532 | 2015-08-13T16:03:06 | 2015-08-13T16:03:06 | 40,678,675 | 0 | 0 | null | 2015-08-13T19:48:06 | 2015-08-13T19:48:06 | null | UTF-8 | Racket | false | false | 1,019 | scrbl | vector.scrbl | #lang scribble/manual
@(require lens/doc-util/main)
@title{Vector lenses}
@defproc[(vector-ref-lens [i exact-nonnegative-integer?]) lens?]{
Returns a lens that views an element of a vector.
@lenses-unstable-examples[
(lens-view (vector-ref-lens 2) #(a b c d))
(lens-set (vector-ref-lens 2) #(a b c d) "sea")
]}
@defproc[(vector-ref-nested-lens [i exact-nonnegative-integer?] ...) lens?]{
Like @racket[list-ref-nested-lens], but for vectors.
Equivalent to @racket[(lens-thrush (vector-ref-lens i) ...)].
@lenses-unstable-examples[
(lens-view (vector-ref-nested-lens 2 1) #(a b #(s i) d))
(lens-set (vector-ref-nested-lens 2 1) #(a b #(s i) d) "eye")
]}
@defproc[(vector-pick-lens [i exact-nonnegative-integer?] ...) lens?]{
Like @racket[list-refs-lens], but for vectors.
Equivalent to @racket[(lens-join/vector (vector-ref-lens i) ...)].
@lenses-unstable-examples[
(define 1-5-6-lens (vector-pick-lens 1 5 6))
(lens-view 1-5-6-lens #(a b c d e f g))
(lens-set 1-5-6-lens #(a b c d e f g) #(1 2 3))
]}
| false |
6d352b69482955f819dcf88957ee786ef1493008 | 3e9f044c5014959ce0e915fe1177d19f93d238ed | /racket/com-spacetimecat/rackbol/example/sketch.rkt | b761bb566218542b11f06d3182f06805e6b12599 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"Apache-2.0",
"LicenseRef-scancode-public-domain",
"CC0-1.0",
"BSD-2-Clause"
]
| permissive | edom/work | 5e15c311dd49eb55fafbff3455cae505fa51643a | df55868caa436efc631e145a43e833220b8da1d0 | refs/heads/master | 2022-10-10T22:25:11.652701 | 2020-02-26T19:42:08 | 2020-02-26T19:44:58 | 138,504,284 | 0 | 1 | NOASSERTION | 2022-10-06T01:38:07 | 2018-06-24T18:03:16 | TeX | UTF-8 | Racket | false | false | 6,102 | rkt | sketch.rkt | #lang s-exp "../web.rkt"
(provide (all-defined-out))
;; TODO
;; https://docs.racket-lang.org/continue/index.html
;; https://docs.racket-lang.org/db/using-db.html
#|
(DEFINE TABLE information_schema:tables
SCHEMA information_schema
COLUMN table_catalog
COLUMN table_schema
COLUMN table_name
)
;; or
(read_schema_from connection)
;; then
(struct SQL_Select (columns from where))
(SELECT
table_catalog AS catalog
table_schema AS schema
table_name AS name
FROM information_schema:tables
WHERE table_schema NOT IN [pg_catalog information_schema]
DO
(printf "~v~n" (list catalog schema name))
)
|#
(define-syntax-rule (with-semaphore Sem Body ...)
(call-with-semaphore Sem (lambda () Body ...))
)
(define current-request (make-parameter #f))
(define (start_web_server_thread model)
(define ID (GET id OF model))
(define ADDRESS (GET ADDRESS OF model))
(define PORT (GET PORT OF model))
(define s_start_time (format-date/iso (current-date)))
(define sem (make-semaphore 1))
;; Problem: This request_count can grow without bounds,
;; although it takes a very long time for it to grow big enough to impact the running program.
;; We assume that the program is restarted periodically.
(define request_count 0)
(define (get_count) (with-semaphore sem request_count))
(define (increment_count) (with-semaphore sem (set! request_count (+ request_count 1))))
(define (furnish xexpr_list)
(response/xexpr
;; https://lists.racket-lang.org/users/archive/2011-November/049394.html
#:preamble #"<!doctype html>"
`(html
(head
(title "Test")
(link ((rel "stylesheet") (type "text/css") (href "/style.css")))
)
(body
(main ,@xexpr_list)
(footer
(p "Current server time: " ,(format-date/iso (current-date)))
(p "Server start time: " ,s_start_time)
(p "Uptime: ")
(p "Request count: " ,(~a (get_count)))
)
)
)
)
)
(define (response/furnish xexpr_list)
(response/xexpr
#:preamble #"<!doctype html>"
(furnish xexpr_list)))
(define (not_found)
(response/xexpr
#:code 404
#:preamble #"<!doctype html>"
(furnish
`[(h1 "Not found")]
)))
(define routes
(hash
(cons "GET" "/") (λ => response/furnish `[(h1 "Home")])
(cons "GET" "/test") (λ => response/furnish `[(h1 "Test")])
))
(define (start request)
(increment_count)
(define method "GET")
(define url "/")
(define handle (hash-ref routes (cons method url) (const not_found)))
(parameterize ([current-request request])
(handle)
)
)
(define static_path [list (build-path (collection-path "rackbol" "private") "static")])
(printf "~a: static_path = ~v~n" ID static_path)
(printf "~a: Listening on ~a:~a~n" ID ADDRESS PORT)
(thread [lambda ()
(serve/servlet start
#:listen-ip ADDRESS
#:port PORT
#:servlet-path "/"
#:extra-files-paths static_path
#:log-file "request.log"
#:stateless? #t
#:command-line? #t
#:launch-browser? #f
#:banner? #f
)])
)
;; -------------------- Logic programming.
(require "../private/logic.rkt")
(define %father_child
(%rel ()
[('f1 'c1)]
[('f2 'c2)]
))
(define %mother_child
(%rel ()
[('m1 'c1)]
[('m2 'c2)]
))
(define (logic)
(%for-each F M C #:satisfying
(%father_child F C)
(%mother_child M C)
#:do
(printf "~a ~a ~a~n" F M C)
)
(%FOR-EACH F M C SATISFYING
(%father_child F C)
(%mother_child M C)
DO
(printf "~a ~a ~a~n" F M C)
)
)
;; -------------------- Import.
(define (show-tables)
(FOR EACH ROW IN TABLE pg_1 information_schema tables
AS t (table_catalog table_schema table_name)
DO (printf "~a ~a ~a~n" t.table_catalog t.table_schema t.table_name)
)
)
(define (show-columns)
(FOR EACH ROW IN TABLE pg_1 information_schema columns
AS c (table_catalog table_schema table_name column_name data_type)
DO (printf "~a ~a ~a ~a ~a~n" c.table_catalog c.table_schema c.table_name c.column_name c.data_type)
)
)
(DEFINE STORAGE pg_1
TYPE postgresql
HOST localhost
PORT 5432
CATALOG test
USER test
PASSWORD test
)
(define (import)
(define table_order_column (make-hash))
;; TODO: Parameterize pg_1
;; TODO: LEFT JOIN
(FOR EACH ROW IN pg_1
(SELECT table_catalog table_schema table_name
FROM information_schema.tables
WHERE (NOT-IN table_schema ["pg_catalog" "information_schema"])
)
DO (define key (list table_catalog table_schema table_name))
(hash-set! table_order_column key (make-hash))
)
(FOR EACH ROW IN pg_1
(SELECT table_catalog table_schema table_name column_name ordinal_position
FROM information_schema.columns
WHERE (NOT-IN table_schema ["pg_catalog" "information_schema"])
)
DO (define key (list table_catalog table_schema table_name))
(hash-set! (hash-ref table_order_column key) ordinal_position column_name)
)
(pretty-print table_order_column)
(define tables
(for/list ([(cat-sch-tab order_column) (in-hash table_order_column)])
(match cat-sch-tab
[(list catalog schema name)
(list
catalog schema name
(hash-map order_column (λ k v -> v) #t)
)
]
)
)
)
(pretty-print tables)
)
(import)
| true |
44bd7ef1436d06ff3cf4354f5d78215ac6bac54b | ddcff224727303b32b9d80fa4a2ebc1292eb403d | /4. Metalinguistic Abstraction/4.1/4.14.rkt | 7646ebe33a06d72cad6c0dfcecb59abd298ae5f4 | []
| no_license | belamenso/sicp | 348808d69af6aff95b0dc5b0f1f3984694700872 | b01ea405e8ebf77842ae6a71bb72aef64a7009ad | refs/heads/master | 2020-03-22T02:01:55.138878 | 2018-07-25T13:59:18 | 2018-07-25T13:59:18 | 139,345,220 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 252 | rkt | 4.14.rkt | #lang racket
#|
It cannot work because map is a higher-order function, it takes
and executes a function, but functions in underlying scheme and in our
implementation are not represented in the same way and do not have access
to the same environment
|# | false |
15e9facd31a343a2b44e5c71686ce5e3db259a78 | a18b561b599c8e85d697ecb421fe98cbb41814d1 | /planet/terrain/rivers.rkt | ab58c9775937615faa527b44c9b7ec3d87a2057b | []
| no_license | his1220/earthgen | f501f1c6b91831adc3072e4dc7bbe5b9f7045793 | 0fd1904905fea41a441e7494388d734e298b77bc | refs/heads/master | 2021-01-18T15:14:11.895611 | 2015-03-20T19:50:30 | 2015-03-20T20:35:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,030 | rkt | rivers.rkt | #lang typed/racket
(provide (all-defined-out))
(require vraid/types
vraid/flow
"terrain-structs.rkt"
"../grid.rkt")
(: corner-river-direction (planet-terrain integer -> (maybe integer)))
(define (corner-river-direction planet n)
(let ([direction ((corner-terrain-data-river-direction (planet-terrain-corner planet)) n)])
(if (<= 0 direction)
direction
#f)))
(: corner-river-destination (planet-terrain integer -> (maybe integer)))
(define (corner-river-destination planet n)
(and-let ([direction (corner-river-direction planet n)])
((grid-corner-corner planet) n direction)))
(: river-flows-to? (planet-terrain integer -> (integer -> Boolean)))
(define ((river-flows-to? planet to) from)
(and-let ([destination (corner-river-destination planet from)])
(= to destination)))
(: corner-river-sources (planet-terrain integer -> integer-list))
(define (corner-river-sources planet n)
(filter (river-flows-to? planet n)
(grid-corner-corner-list planet n)))
| false |
a153c359f83385683432b49aad21f4a860ee39f6 | 9101470cfbfc3c91e240e2a963fb3760744d9d25 | /guide/ch14/simple_factory_unit.rkt | 1b76dc085e77ec3c5ee2b27e2a6307d1b817b40d | [
"MIT"
]
| permissive | sylsaint/racket | 49e2fc01ccec8538d0d9b9d35f73b4b6772bfd93 | 5c11113e5247502e6e0ea877f2538dce508c36f2 | refs/heads/master | 2020-12-21T22:17:32.873776 | 2016-12-19T09:32:14 | 2016-12-19T09:43:25 | 59,442,778 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 447 | rkt | simple_factory_unit.rkt | #lang racket
(require "toy_factory_sig.rkt")
(define-unit simple-factory@
(import)
(export toy-factory^)
(printf "Factory started.\n")
(define-struct toy (color) #:transparent)
(define (build-toys n)
(for/list ([i (in-range n)])
(make-toy 'blue)))
(define (repaint t col)
(make-toy col)))
(provide simple-factory@)
| false |
b851206c56317e26605c2112f03ab6121e2edd7b | c1ef82a3c7e437be4bfb8304f4202cf6e0492a93 | /writer.rkt | efbde6734a7e744dc4c3b1a100eaac2bd49678c5 | [
"MIT"
]
| permissive | magnolisp/konffaa | 0edc8adf01235dd6beda9b2eabf59553c5b1d5c7 | fce6ef55655e7dac658b88c2662acd2ed33c9a6a | refs/heads/master | 2021-01-10T07:49:21.324882 | 2016-10-05T10:50:56 | 2016-10-05T10:50:56 | 51,612,853 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 11,751 | rkt | writer.rkt | #lang racket/base
#|
|#
(require (for-syntax racket/base)
racket/function
racket/list
racket/match
racket/port
racket/string
racket/unit
"attribute.rkt"
"util.rkt")
;;;
;;; generic utilities
;;;
(define-syntax on-fail
(syntax-rules ()
((_ fail-expr expr)
(with-handlers
((exn:fail?
(lambda (e) fail-expr)))
expr))))
(define (file-read file)
(call-with-input-file*
file
(lambda (in)
(port->string in))))
;; Checks whether a file either does not exist or has been changed.
(define (file-changed? file s)
;; Would there be a good way to write a function for comparing two
;; input streams? Then we could handle large files as well. ((nin
;; (open-input-string s))) and then compare to file input.
(on-fail #t (not (equal? (file-read file) s))))
;;(write-nl (file-changed? configure-script (file-read configure-script)))
(define* (write-changed-file file s)
(when (file-changed? file s)
(call-with-output-file*
file
(lambda (out)
(display s out))
#:exists 'truncate/replace)
(displayln file)))
(define (capture-output f)
(let ((output (open-output-string)))
(parameterize ((current-output-port output))
(f))
(get-output-string output)))
(define-syntax* capture
(syntax-rules ()
((_ body ...)
(capture-output (lambda () body ...)))))
(define* (space-join l)
(string-join l " "))
(define (for-each-sep elemact sepact lst)
(define first #t)
(for-each
(lambda (elem)
(if first
(set! first #f)
(when sepact (sepact)))
(when elemact (elemact elem)))
lst))
;;;
;;; local utilities
;;;
(define (disp . args)
(display (apply format args)))
(define (disp-nl . args)
(apply disp args) (newline))
;;;
;;; pretty printing
;;;
(define* (display-generated-notice pfx)
(display pfx)
(displayln " generated -- do not edit"))
(define* (write-scheme-symlink file target)
(write-changed-file
file
(capture
(display-generated-notice ";;")
(displayln "#lang racket/base")
(disp-nl "(require ~s)" target)
(disp-nl "(provide (all-from-out ~s))" target))))
(define path-censor-re #rx"[-.]")
(define* (path-h-ifdefy p)
(string-append
"__"
(string-downcase
(regexp-replace* path-censor-re (path->string (path-basename p)) "_"))
"__"
))
(define (ident-sanitize a-s)
(define s a-s)
(set! s (regexp-replace* #rx"^[-]" s "_"))
(when-let r (regexp-match #rx"^(.*)[?]$" s)
(set! s (string-append "is_" (second r))))
(set! s (regexp-replace* #rx"^[^a-zA-Z_]+" s ""))
(set! s (regexp-replace* #rx"[^a-zA-Z0-9_]+" s ""))
(when (string=? s "")
(raise-argument-error 'ident-sanitize "emittable name" a-s))
s)
(define* (name-to-c sym)
(string->symbol
(string-upcase
(ident-sanitize (symbol->string sym)))))
(define* (name-to-ruby sym)
(string->symbol
(string-append
"$"
(string-upcase
(ident-sanitize (symbol->string sym))))))
(define* (name-to-gmake sym)
(name-to-c sym))
(define* (name-to-gmake/negate sym)
(string->symbol
(string-append
"NOT__"
(symbol->string (name-to-gmake sym)))))
(define (bool-attr? attr)
(boolean? (second attr)))
(define (true-attr? attr)
(eqv? #t (second attr)))
;; Returns a list of symbols.
(define (bool-attrs-to-qmake-list attrs)
(map
(lambda (entry)
(let ((name (first entry)))
(name-to-gmake name)))
(filter true-attr? attrs)))
;; Returns a list of symbols.
(define (bool-attrs-to-qmake-list/with-negates attrs)
(map
(lambda (entry)
(let ((name (first entry))
(value (second entry)))
((if value name-to-gmake name-to-gmake/negate) name)))
(filter bool-attr? attrs)))
(define* (display/c value)
(cond
((or (attr-defined? value) (eqv? value #t))
(display "1"))
((eqv? value #f)
(display "0"))
((number? value)
(write value))
((hexnum? value)
(display (format "0x~a" (number->string (hexnum-num value) 16))))
((string? value)
(write value))
((symbol? value)
(display/c (symbol->string value)))
((list? value)
(begin
(display "{")
(for-each-sep display/c (thunk (display ", ")) value)
(display "}")))
(else
(error "cannot display as C" value))
))
(define* (display-attr/c name value)
(cond
((attr-undefined? value)
(void))
(else
(begin
(disp "#define ~a " (name-to-c name))
(display/c value)
(newline)))
))
(define* (display/ruby value)
(cond
((or (attr-defined? value) (eqv? value #t))
(display "true"))
((eqv? value #f)
(display "false"))
((number? value)
(write value))
((hexnum? value)
(disp "0x~a" (number->string (hexnum-num value) 16)))
((string? value)
(write value))
((symbol? value)
(display/ruby (symbol->string value)))
((list? value)
(begin
(display "[")
(for-each-sep display/c (thunk (display ", ")) value)
(display "]")))
(else
(error "cannot display as Ruby" value))
))
(define* (display-attr/ruby name value)
(cond
((attr-undefined? value)
(void))
(else
(begin
(display (name-to-ruby name))
(display " = ")
(display/ruby value)
(newline)))
))
(define* (display-attr/rkt name value)
(cond
[(attr-undefined? value)
(void)]
[else
(display "(define ")
(print name (current-output-port) 1)
(display " ")
(print value (current-output-port) 0)
(displayln ")")]))
(define* (display/gmake value)
(cond
((or (attr-defined? value) (eqv? value #t))
(display "true"))
((number? value)
(write value))
((string? value)
(display value))
((symbol? value)
(display/gmake (symbol->string value)))
((list? value)
(for-each-sep display/gmake (thunk (display " ")) value))
(else
(error "cannot display as GNU Make" value))
))
(define* (display-attr/gmake name value)
(set! name (name-to-gmake name))
(cond
((attr-undefined? value)
(void))
((eqv? value #t)
(begin (disp-nl "~a := true" name)
(disp-nl "NOT__~a :=" name)))
((eqv? value #f)
(begin (disp-nl "~a :=" name)
(disp-nl "NOT__~a := true" name)))
((hexnum? value)
(begin
(disp-nl "~a__DEC := ~s" name (hexnum-num value))
(disp-nl "~a__HEX := ~a"
name (number->string (hexnum-num value) 16))))
(else
(begin
(display name)
(display " := ")
(display/gmake value)
(newline)))
))
(define* (display-attr/qmake name value)
(set! name (name-to-gmake name))
(cond
((attr-undefined? value)
(void))
((eqv? value #t)
(begin (disp-nl "~a = true" name)
;;(disp-nl "NOT__~a =" name)
))
((eqv? value #f)
(begin (disp-nl "~a =" name)
;;(disp-nl "NOT__~a = true" name)
))
((hexnum? value)
(begin
(disp-nl "~a__DEC = ~s" name (hexnum-num value))
(disp-nl "~a__HEX = ~a"
name (number->string (hexnum-num value) 16))))
(else
(begin
(display name)
(display " = ")
(display/gmake value)
(newline)))
))
;; For convenience, we add all boolean variables (or their
;; negations) to the CONFIG variable with the += operator.
(define (display-qmake-bools attrs)
(display "CONFIG += ")
(for-each-sep display (thunk (display " "))
(bool-attrs-to-qmake-list attrs))
(newline))
;;;
;;; generic API
;;;
;; To define a new back end, implement the desired `lang^` as a unit,
;; and then call `make-write-include-file` to get a code generation
;; routine for the specified language.
(provide (struct-out Model) lang^)
(struct Model
(path ; path-string?
attrs ; (listof (list/c symbol? any/c))
) #:transparent)
(define-signature writer^
(write-file ; (-> Model? any/c)
))
(define-signature lang^
(line-comment-prefix ; string?
display-attr ; (-> symbol? any/c any/c)
display-preamble ; (-> Model? any/c)
display-postamble ; (-> Model? any/c)
))
(define-unit ruby-lang@
(import)
(export lang^)
(define line-comment-prefix "#")
(define display-attr display-attr/ruby)
(define display-preamble void)
(define display-postamble void))
(define-unit gmake-lang@
(import)
(export lang^)
(define line-comment-prefix "#")
(define display-attr display-attr/gmake)
(define display-preamble void)
(define display-postamble void))
(define-unit qmake-lang@
(import)
(export lang^)
(define line-comment-prefix "#")
(define display-attr display-attr/qmake)
(define display-preamble void)
(define (display-postamble m)
(display-qmake-bools (Model-attrs m))))
(define-unit rkt-lang@
(import)
(export lang^)
(define line-comment-prefix ";;")
(define display-attr display-attr/rkt)
(define (display-preamble m)
(displayln "#lang racket/base")
(displayln "(provide (all-defined-out))"))
(define display-postamble void))
(define-unit c-lang@
(import)
(export lang^)
(define line-comment-prefix "//")
(define display-attr display-attr/c)
(define (display-preamble m)
(define harness-name (path-h-ifdefy (Model-path m)))
(disp-nl "#ifndef ~a" harness-name)
(disp-nl "#define ~a" harness-name))
(define (display-postamble m)
(define harness-name (path-h-ifdefy (Model-path m)))
(disp-nl "#endif // ~a" harness-name)))
(define-unit include-file-writer@
(import lang^)
(export writer^)
(define (write-file m)
(write-changed-file
(Model-path m)
(capture
(display-file m))))
(define (display-file m)
(display-generated-notice line-comment-prefix)
(display-preamble m)
(display-attrs m)
(display-postamble m))
(define (display-attrs m)
(for ([entry (in-list (Model-attrs m))])
(match-define (list name value) entry)
(display-attr name value))))
(define* (make-write-include-file lang@)
(define-compound-unit writer@
(import)
(export (tag writer^ W))
(link
[([L : lang^]) lang@]
[([W : writer^]) include-file-writer@ L]))
(define-values/invoke-unit/infer writer@)
(lambda (pn attrs)
(write-file (Model pn attrs))))
(define* write-ruby-file
(make-write-include-file ruby-lang@))
(define* write-gmake-file
(make-write-include-file gmake-lang@))
(define* write-qmake-file
(make-write-include-file qmake-lang@))
(define* write-c-file
(make-write-include-file c-lang@))
(define* write-rkt-file
(make-write-include-file rkt-lang@))
#|
Copyright 2009 Helsinki Institute for Information Technology (HIIT)
and the authors. All rights reserved.
Authors: Tero Hasu <[email protected]>
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation files
(the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge,
publish, distribute, sublicense, and/or sell copies of the Software,
and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
|#
| true |
313253c7eac778c094a840a41b718944a16f9fe6 | d0ea449400a715f50fd720c265d2b923c34bc464 | /digitama/unsafe/layer.rkt | fd9f792fcf5a313a8378174aecfa7c7a1b9f4e17 | []
| no_license | wargrey/psd | c3d69b8c7d6577cdac9be433be832e80d2bb32d4 | 73b16a52e0777250d02e977f7dcbd7c1d98ef772 | refs/heads/master | 2020-12-02T06:26:02.875227 | 2018-07-16T11:00:58 | 2018-07-16T11:00:58 | 96,830,933 | 1 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 2,462 | rkt | layer.rkt | #lang typed/racket/base
(provide psd-layer-info-parse! psd-infobase-ref)
(require typed/racket/unsafe)
(require "../layer/format.rkt")
(require "../exn.rkt")
(module unsafe racket/base
(provide (all-defined-out))
(define (psd-layer-info-parser? func)
(and (procedure? func)
(eq? (procedure-arity func) 4))))
(unsafe-require/typed
(submod "." unsafe)
[psd-layer-info-parser? (-> Any Boolean : PSD-Layer-Info-Parser)])
(define psd-layer-info-parsers : (HashTable Symbol PSD-Layer-Info-Parser) (make-hasheq))
(define psd-layer-info-parse! : (-> PSD-Layer-Infobase Symbol Path-String (-> PSD-Layer-Info-Parser PSD-Layer-Info)
(-> PSD-Layer-Info) (-> exn:fail Any) (Option PSD-Layer-Info))
(lambda [infobase key parser-dir do-with-parser fallback on-error]
(define parser : PSD-Layer-Info-Parser
(hash-ref! psd-layer-info-parsers key
(λ [] (let ([~a.rkt (build-path parser-dir (string-append (string-downcase (symbol->string key)) ".rkt"))])
(with-handlers ([exn? (λ [[e : exn]] (make-fallback-parser fallback))])
(assert (dynamic-require ~a.rkt key) psd-layer-info-parser?))))))
(define info : (Option PSD-Layer-Info)
(with-handlers ([exn:fail? (λ [[ef : exn:fail]] (and (on-error ef) #false))])
(do-with-parser parser)))
(cond [(not info) (hash-remove! infobase key)]
[else (hash-set! infobase key info)])
info))
(define make-fallback-parser : (-> (-> PSD-Layer-Info) PSD-Layer-Info-Parser)
(lambda [fallback]
(λ [[bs : Bytes] [idx : Fixnum] [size : Index] [args : (Listof Any)]] : PSD-Layer-Info
(fallback))))
(define psd-infobase-ref : (-> Symbol PSD-Layer-Infobase Symbol (Option PSD-Layer-Info))
(lambda [src infobase key]
(define maybe-info : (U PSD-Layer-Info PSD-Layer-Segment Void) (hash-ref infobase key void))
(or (and (PSD-Layer-Info? maybe-info) maybe-info)
(and (vector? maybe-info)
(let-values ([(block start size) (values (vector-ref maybe-info 0) (vector-ref maybe-info 1) (vector-ref maybe-info 2))])
(psd-layer-info-parse!
infobase key /psd/layer/blocks
(λ [[parse : PSD-Layer-Info-Parser]] (parse block start size null))
(λ [] (throw-unsupported-error src "unimplemeneted tagged information: ~a" key))
psd-warn-broken-information))))))
| false |
23d64f77dca1c4c66032bdc98fe18ede5f190e9f | 4d0587b88b4bc4a4f5c11ce07fd9cec8f2eae1a3 | /slideshow-tex/info.rkt | 26492f78877077cb549e0f05b7e80585794eaa95 | [
"CC0-1.0"
]
| permissive | stchang/slideshow-tex | 1440728396652377a678455b06437cfec0d48fd6 | e6010e3314f5c90621a440560e9f1e4416186138 | refs/heads/master | 2021-07-15T05:07:34.435209 | 2021-06-23T20:51:23 | 2021-06-23T20:51:23 | 3,185,303 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 360 | rkt | info.rkt | #lang setup/infotab
(define name "slideshow-tex")
(define scribblings '(("main.scrbl")))
(define categories '(misc))
(define repositories (list "4.x"))
(define primary-file
'("main.rkt"))
(define blurb
(list '(div "Package to use LaTex code in Slideshow.")))
(define release-notes
(list
'(div "Fix define-preamble to work with custom .sty files."))) | false |
f655ff0c8e944e3ec7247ba6f9ca03283f1f8b78 | fc69a32687681f5664f33d360f4062915e1ac136 | /test/dssl2/format.rkt | 69e33b1210245699e9a571e7b513c13eab6966d2 | []
| no_license | tov/dssl2 | 3855905061d270a3b5e0105c45c85b0fb5fe325a | e2d03ea0fff61c5e515ecd4bff88608e0439e32a | refs/heads/main | 2023-07-19T22:22:53.869561 | 2023-07-03T15:18:32 | 2023-07-03T15:18:32 | 93,645,003 | 12 | 6 | null | 2021-05-26T16:04:38 | 2017-06-07T14:31:59 | Racket | UTF-8 | Racket | false | false | 425 | rkt | format.rkt | #lang dssl2
assert "a%db".format(5) == "a5b"
assert "a%pb".format(5) == "a5b"
assert "a%sb".format(5) == "a5b"
assert "a%db".format("hello") == "a'hello'b"
assert "a%pb".format("hello") == "a'hello'b"
assert "a%sb".format("hello") == "ahellob"
assert "%p + %p = %p".format(3, 4, 7) == "3 + 4 = 7"
assert "%%".format() == "%"
assert "~a".format() == "~a"
assert "%p".format(inf) == 'inf'
assert "%p".format(nan) == 'nan'
| false |
7f2ccf8d8a3207cc1d9764352de5e9fa7317a7d6 | c01a4c8a6cee08088b26e2a2545cc0e32aba897b | /medikanren2/neo/dbKanren/test/datalog/unmanaged-notation-micro.rkt | d429d509040602f1bb16518106e80303893cb243 | [
"MIT"
]
| permissive | webyrd/mediKanren | c8d25238db8afbaf8c3c06733dd29eb2d7dbf7e7 | b3615c7ed09d176e31ee42595986cc49ab36e54f | refs/heads/master | 2023-08-18T00:37:17.512011 | 2023-08-16T00:53:29 | 2023-08-16T00:53:29 | 111,135,120 | 311 | 48 | MIT | 2023-08-04T14:25:49 | 2017-11-17T18:03:59 | Racket | UTF-8 | Racket | false | false | 1,888 | rkt | unmanaged-notation-micro.rkt | #lang racket/base
(provide run-datalog)
(require "micro.rkt" (except-in racket/match ==))
;(require "micro-with-sets.rkt" (except-in racket/match ==))
;; This example syntax demonstrates how to use the core concepts. This is only
;; one possible syntax. For instance, you could also implement a Kanren-style
;; syntax that uses the same core concepts.
;; - Programs are made up of rules and facts:
;; - Atom: a predicate constant followed by zero or more terms
;; - Rule: a head atom followed by zero or more body atoms
;; - Fact: a single atom
;; - Terms in rules may be variables or constants:
;; - An unquoted symbol is treated as a variable.
;; - Any quoted value is treated as a constant.
;; - All other non-pair values are treated as constants.
;; - Variables cannot appear nested in other terms.
;; - Terms in facts are always unquoted constants, including symbols and pairs.
;; - There are no queries. There are only rules and facts.
;; - e.g., (run-datalog rules facts) ==> more-facts
(define (atom-vars atom) (filter var? atom))
(define (rule-safe?! rule)
(let ((vars.body (apply append (map atom-vars (cdr rule)))))
(for-each (lambda (var.head) (or (member var.head vars.body)
(error "unsafe rule" rule)))
(atom-vars (car rule)))))
(define (parse-term expr)
(match expr
((? symbol?) (var expr))
(`(quote ,c) c)
((cons _ _) (error "unsupported function call" expr))
(_ expr)))
(define (parse-atom expr) (cons (car expr) (map parse-term (cdr expr))))
(define (parse-rule expr) (let ((rule (map parse-atom expr)))
(rule-safe?! rule)
rule))
(define (enforce rule) (realize (car rule) (conj* (map relate (cdr rule)))))
(define (run-datalog e*.rules F*)
(exhaust* (map enforce (map parse-rule e*.rules)) F*))
| false |
a86bd26dfdbaaad63eefa08cc276b91dc0eb5112 | 74d97fddf219ae96e8783d2972b8d8d6656468ea | /1/runtime-config.rkt | 10d1918411e0ca2f011f0031bbfb1ac6409b78bf | [
"MIT"
]
| permissive | juv4uk/russian-lang | f700ffe0e035c01bc48f59bbdf9c9d333f26513c | 3966db07cf44d5c410d835670eb36796d11c7fba | refs/heads/master | 2023-04-14T04:34:32.229980 | 2021-05-09T06:38:27 | 2021-05-09T06:38:27 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 126 | rkt | runtime-config.rkt | #lang racket/base
(require 1/reader)
(provide configure)
(define (configure data)
(current-read-interaction my-read-syntax)) | false |
7150d8c46185ab387b5d4de095feed64104c1e56 | c3a9b8fdc636be58af7086b5c8fce28652a11605 | /example-main.rkt | e75e2a57c3e63c2e53fb33e3cf2487b22956292c | []
| no_license | jeapostrophe/grade-samurai | 69a3f3d674bf820135d5383d6eb5b5f9d550d5f0 | b0e0f8d85f8eca9b8d57139ded52c9280edf2838 | refs/heads/master | 2022-12-10T08:02:06.289586 | 2022-12-02T20:53:08 | 2022-12-02T20:53:08 | 4,076,734 | 0 | 0 | null | 2012-11-06T22:57:59 | 2012-04-19T15:25:53 | Racket | UTF-8 | Racket | false | false | 1,893 | rkt | example-main.rkt | #lang racket/base
(require web-server/servlet-env
racket/match
racket/list
racket/date
racket/runtime-path
"app.rkt"
"model.rkt")
(define (simple-date month day year)
(find-seconds 0 0 17 day month year))
(define musical-notation
(assignment 3/20 0 "music" (+ (current-seconds) 120) (+ (current-seconds) 360) (+ (current-seconds) 720)
(list
(question 1 0 "Explain how musical notation is like a programming language." 'bool)
(question 1 0 "Be sure that you have." 'bool)
(question 1 0 "What's your favorite number between 0 and 1?" 'numeric))))
(define rinterp
(assignment 0 3/40 "rinterp" (simple-date 1 23 2013) (simple-date 1 30 2013) (simple-date 1 31 2013)
(list
(question 0 1 "Does your interpreter have a runtime error that is not a parse error?" 'bool))))
(define final
(assignment 3/5 0 "final" (simple-date 4 15 2013) (simple-date 4 23 2013) #f
(list (question 0 1 "What grade you think you deserve on the final?" 'numeric))))
(define assignments (list musical-notation rinterp final))
(require (planet jaymccarthy/ldap))
(define (authenticate-byu u p)
(ldap-authenticate "ldap.byu.edu" 389 (format "uid=~a,ou=People,o=BYU.edu" u) p))
(define-runtime-path secret-salt-path "secret-salt")
(define-runtime-path db-path "db")
(module+ main
(samurai-go!
#:db db-path
#:port 8000
#:assignments assignments
#:authenticate
(λ (u p)
(match u
["admin"
(and (string=? p "password")
'admin)]
["test"
(and (string=? p "test")
'user)]
[_
(and (authenticate-byu u p)
'user)]))
#:username-request-text "NetId: "
#:password-request-text "RouteY Password: "))
| false |
20ab9d7875504d5c3b35d82e4d5ee828ecadcdf4 | d755de283154ca271ef6b3b130909c6463f3f553 | /htdp-test/2htdp/utest/info.rkt | 6054c16f0ff043227618ec9230036edb3cd00d2b | [
"LicenseRef-scancode-unknown-license-reference",
"MIT",
"Apache-2.0"
]
| permissive | racket/htdp | 2953ec7247b5797a4d4653130c26473525dd0d85 | 73ec2b90055f3ab66d30e54dc3463506b25e50b4 | refs/heads/master | 2023-08-19T08:11:32.889577 | 2023-08-12T15:28:33 | 2023-08-12T15:28:33 | 27,381,208 | 100 | 90 | NOASSERTION | 2023-07-08T02:13:49 | 2014-12-01T13:41:48 | Racket | UTF-8 | Racket | false | false | 52 | rkt | info.rkt | #lang info
(define test-omit-paths
'("sam.rkt"))
| false |
8d3475d1d473a70a8a5d754a34c5795e7d560a81 | 4d3a7c20c201dddb361e7f6685a1340a51bf54d3 | /rkt/untyped/stdlib/stdlib-with-translations.rkt | 7cc4c00caf6632f0dc5d9311e7ccd545da6ca9f7 | []
| no_license | williamberman/tapl | ec0ecfcec7d8b2dc051988916b3bd6d5c6fe44dd | d07a99284f49b486a3b492b92061940f19e4d713 | refs/heads/master | 2021-01-07T00:35:05.362536 | 2020-06-19T03:16:01 | 2020-06-19T03:16:01 | 241,753,416 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 151 | rkt | stdlib-with-translations.rkt | #lang racket/base
(require "stdlib.rkt"
"translations.rkt")
(provide (all-from-out "stdlib.rkt"
"translations.rkt"))
| false |
81145b047a9ececaa5050e2a3bb0d1917c646c8a | e3cfbb9a978d3ac739d7a623bc8982d3dee1ba64 | /fortune.rkt | 22d126ecf2d1f54956e64a60c21b8c1028838327 | []
| no_license | xuchunyang/learn-racket | 7cbeb1545c519705bb8759851c2d104760163203 | 13ca916e5eafa7f4de141034fe65a2f99c2b7f71 | refs/heads/master | 2020-03-22T17:10:47.754872 | 2020-01-17T17:24:08 | 2020-01-17T17:24:08 | 140,378,786 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 740 | rkt | fortune.rkt | #lang racket
(require web-server/servlet
web-server/servlet-env)
(define (shell-command-to-string command)
(with-output-to-string (lambda () (system command))))
(define (start req)
(response/xexpr
`(html (head (title "Fortune"))
(body (pre
,(shell-command-to-string "fortune"))))))
(match (system-type)
['macosx (serve/servlet start
#:servlet-regexp #rx""
#:servlet-path "/")]
;; Ubuntu 服务器
['unix (serve/servlet start
#:servlet-regexp #rx""
#:servlet-path "/"
#:launch-browser? #f
#:port 80
#:listen-ip #f)])
| false |
54e120ac6471ccfb41604b0289aa8a4b154a196a | 04d3f2a238af3f50bff5a2fe2b5d8113cdceace8 | /homework/2/sample-solution.rkt | 053fa1188da59a2fb841110897001383b8d5263f | []
| no_license | neu-cs4800s13/public | 8571de8ad77ecfcd588b7cf89f508defcb3876f1 | 97f3bddba2d1ab44a0df32d8372b9861916ac615 | refs/heads/master | 2021-01-19T13:46:16.689367 | 2013-04-16T21:20:42 | 2013-04-16T21:20:42 | 7,541,574 | 1 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 4,856 | rkt | sample-solution.rkt | #lang racket
(provide
quickselect
stooge-sort)
(module+ main
(require rackunit))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Quickselect
;; quickselect : Natural-Number (Listof Real-Number) -> Real-Number
;; Produces the ith-smallest element of xs, indexed from zero.
;; The index i must be less than the length of xs.
(define (quickselect i xs)
;; Base case can simply be when the pivot is the result.
;; There is technically no need to test for small inputs!
;; Furthermore, the input can never be empty, since i < (length xs).
(define pivot (first xs))
(define left (all-less-than pivot xs))
(define right (all-greater-than pivot xs))
(define n (length xs))
(define n1 (length left))
(define n2 (length right))
(cond
[(< i n1) (quickselect i left)]
[(>= i (- n n2)) (quickselect (- i (- n n2)) right)]
[else pivot]))
(module+ main
(check-equal? (quickselect 0 (list 20 10 50)) 10)
(check-equal? (quickselect 1 (list 20 10 50)) 20)
(check-equal? (quickselect 2 (list 20 10 50)) 50))
;; all-less-than : Real-Number (Listof Real-Number) -> (Listof Real-Number)
;; Produces every element in xs that is less than k.
(define (all-less-than k xs)
(cond
[(empty? xs) empty]
[else
(define rest-less-than
(all-less-than k (rest xs)))
(cond
[(< (first xs) k) (cons (first xs) rest-less-than)]
[else rest-less-than])]))
(module+ main
(check-equal? (all-less-than 20 (list 20 10 50)) (list 10)))
;; all-greater-than : Real-Number (Listof Real-Number) -> (Listof Real-Number)
;; Produces every element in xs that is greater than k.
(define (all-greater-than k xs)
(cond
[(empty? xs) empty]
[else
(define rest-greater-than
(all-greater-than k (rest xs)))
(cond
[(> (first xs) k) (cons (first xs) rest-greater-than)]
[else rest-greater-than])]))
(module+ main
(check-equal? (all-greater-than 20 (list 20 10 50)) (list 50)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Stooge sort
;; stooge-sort : (Vectorof Real-Number) -> Void
;; Puts the elements of v in sorted order.
(define (stooge-sort v)
(stooge-sort-between v 0 (vector-length v)))
(module+ main
(let {[v (vector 1 2 3)]} (stooge-sort v) (check-equal? v (vector 1 2 3)))
(let {[v (vector 1 3 2)]} (stooge-sort v) (check-equal? v (vector 1 2 3)))
(let {[v (vector 2 1 3)]} (stooge-sort v) (check-equal? v (vector 1 2 3)))
(let {[v (vector 2 3 1)]} (stooge-sort v) (check-equal? v (vector 1 2 3)))
(let {[v (vector 3 1 2)]} (stooge-sort v) (check-equal? v (vector 1 2 3)))
(let {[v (vector 3 2 1)]} (stooge-sort v) (check-equal? v (vector 1 2 3))))
;; stooge-sort-between :
;; (Vectorof Real-Number) Natural-Number Natural-Number -> Void
;; Puts the elements of v between indices lo (inclusive) and hi (exclusive)
;; into sorted order.
(define (stooge-sort-between v lo hi)
(define n (- hi lo))
(cond
[(< n 2) (void)]
[else
(vector-swap-if-necessary! v lo (sub1 hi))
(cond
[(< n 3) (void)]
[else
(define mid1 (+ lo (floor (* n 1/3))))
(define mid2 (+ lo (floor (* n 2/3))))
(stooge-sort-between v lo mid2)
(stooge-sort-between v mid1 hi)
(stooge-sort-between v lo mid2)])]))
(module+ main
(let {[v (vector 3 2 1)]}
(stooge-sort-between v 0 3)
(check-equal? v (vector 1 2 3)))
(let {[v (vector 3 2 1)]}
(stooge-sort-between v 0 2)
(check-equal? v (vector 2 3 1)))
(let {[v (vector 3 2 1)]}
(stooge-sort-between v 1 3)
(check-equal? v (vector 3 1 2)))
(let {[v (vector 3 2 1)]}
(stooge-sort-between v 0 1)
(check-equal? v (vector 3 2 1)))
(let {[v (vector 3 2 1)]}
(stooge-sort-between v 1 2)
(check-equal? v (vector 3 2 1)))
(let {[v (vector 3 2 1)]}
(stooge-sort-between v 2 3)
(check-equal? v (vector 3 2 1))))
;; vector-swap-if-necessary! :
;; (Vectorof Real-Number) Natural-Number Natural-Number -> Void
;; If v[j] < v[i], swaps v[i] with v[j]. Does nothing otherwise.
(define (vector-swap-if-necessary! v i j)
(define v.i (vector-ref v i))
(define v.j (vector-ref v j))
(cond
[(<= v.i v.j) (void)]
[else
(vector-set! v i v.j)
(vector-set! v j v.i)]))
(module+ main
(let {[v (vector 3 2 1)]}
(vector-swap-if-necessary! v 0 2)
(check-equal? v (vector 1 2 3)))
(let {[v (vector 1 2 3)]}
(vector-swap-if-necessary! v 0 2)
(check-equal? v (vector 1 2 3)))
(let {[v (vector 3 2 1)]}
(vector-swap-if-necessary! v 0 1)
(check-equal? v (vector 2 3 1)))
(let {[v (vector 1 2 3)]}
(vector-swap-if-necessary! v 0 1)
(check-equal? v (vector 1 2 3)))
(let {[v (vector 3 2 1)]}
(vector-swap-if-necessary! v 1 2)
(check-equal? v (vector 3 1 2)))
(let {[v (vector 1 2 3)]}
(vector-swap-if-necessary! v 1 2)
(check-equal? v (vector 1 2 3))))
| false |
f5a3cf03cfd8c67e73c4fe4b0700266771f11951 | 20c553d1bfe87db1c033d55c2dee45a62f7f402f | /s16vec-play.rkt | 1545c78997ba023f4d9c36fec4c9216f4adeffe9 | []
| no_license | gottreu/rack-portaudio | e16e7948adbef78150952cd6df18c76313b9b8ea | 9ef3c4decd9e89c058fcfba4c2d2da69a088b4d4 | refs/heads/master | 2021-01-15T23:41:20.301034 | 2012-08-31T22:09:20 | 2012-08-31T22:09:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 2,177 | rkt | s16vec-play.rkt | #lang racket
(require ffi/vector
ffi/unsafe
(rename-in racket/contract [-> c->])
"portaudio.rkt"
"callback-support.rkt")
;; this module provides a function that plays a sound.
(define nat? exact-nonnegative-integer?)
(provide/contract [s16vec-play (c-> s16vector? nat? (or/c false? nat?) integer?
(c-> void?))])
;; it would use less memory to use stream-play, but
;; there's an unacceptable 1/2-second lag in starting
;; a new place.
(define channels 2)
;; given an s16vec, a starting frame, a stopping frame or
;; false, and a sample rate, play the sound.
(define (s16vec-play s16vec start-frame pre-stop-frame sample-rate)
(define total-frames (/ (s16vector-length s16vec) channels))
(define stop-frame (or pre-stop-frame
total-frames))
(check-args s16vec total-frames start-frame stop-frame)
(define sound-frames (- stop-frame start-frame))
(pa-maybe-initialize)
(define copying-info (make-copying-info s16vec start-frame stop-frame))
(define sr/i (exact->inexact sample-rate))
(define stream
(pa-open-default-stream
0 ;; input channels
2 ;; output channels
'paInt16 ;; sample format
sr/i ;; sample rate
0 ;;frames-per-buffer
copying-callback ;; callback (NULL means just wait for data)
copying-info))
(pa-set-stream-finished-callback stream copying-info-free)
(pa-start-stream stream)
(define (stopper)
(pa-maybe-stop-stream stream))
stopper)
(define (check-args vec total-frames start-frame stop-frame)
(unless (integer? total-frames)
(raise-type-error 's16vec-play "vector of length divisible by 2" 0 vec start-frame stop-frame))
(when (<= total-frames start-frame)
(raise-type-error 's16vec-play "start frame < total number of frames" 1 vec start-frame stop-frame))
(when (< total-frames stop-frame)
(raise-type-error 's16vec-play "end frame < total number of frames" 2 vec start-frame stop-frame))
(when (< stop-frame start-frame)
(raise-type-error 's16vec-play "start frame <= end frame" 1 vec start-frame stop-frame)))
| false |
b0aaa4a59d2094a1d84216200fa10a021dcc1984 | d1beee618d659e47b2e401a651040de2d7ab982f | /rtm/request.rkt | b0101080a8114272439f0fb952bb5e745077ba23 | []
| no_license | sindoc/metacima | 77cee62e71c7cdc0a4073f96cc87309938e7eb38 | ea07ac19e456b98c4d38b263888c6df9533b1464 | refs/heads/master | 2021-01-25T10:07:30.404313 | 2012-07-20T16:26:28 | 2012-07-20T16:28:38 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,243 | rkt | request.rkt | #lang racket
(require net/url
net/url-structs
"reader/base.rkt")
(provide (all-defined-out))
(define *api-key* "9nw4jk48dn9prvxw46why38f")
(define *search-page-number* 1)
(define *search-page-limit* 1)
(define *host* "api.rottentomatoes.com")
(define *api-path* "/api/public/v1.0/")
(define (prepare-request- path query)
(make-url
"http"
#f ;; user
"api.rottentomatoes.com" ;; host
#f ;; port
#t ;; path-absulute?
path
query
#f ;; fragment
))
(define (prepare-request path-elements query #:api-key (api-key *api-key*))
(prepare-request-
(append
(list
(make-path/param "api" null)
(make-path/param "public" null)
(make-path/param "v1.0" null))
(map (λ (path-element) (make-path/param path-element null)) path-elements))
(append
query
(list
(cons 'apikey api-key)))))
(define (search-movies query
#:page-limit (page-limit *search-page-limit*)
#:page-number (page-number *search-page-number*))
(get-pure-port
(prepare-request
(list "movies.json")
`((q . ,query)
(page_limit . ,(number->string page-limit))
(page . ,(number->string page-number)))))) | false |
3226fa30f9cc1b475629062577fa50ed6821c162 | ca308b30ee025012b997bb8a6106eca1568e4403 | /concrete-knowledge.rkt | c8018a08af74b7d89cda0c9197efccf24752ac8d | [
"MIT"
]
| permissive | v-nys/cclp | 178d603c6980922d0fe3f13ee283da61809e0a99 | c20b33972fdc3b1f0509dd6b9e4ece4f5f3192b3 | refs/heads/master | 2022-02-18T07:12:28.750665 | 2017-10-30T06:55:45 | 2017-10-30T06:55:45 | 64,598,287 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 2,140 | rkt | concrete-knowledge.rkt | ; MIT License
;
; Copyright (c) 2016 Vincent Nys
;
; Permission is hereby granted, free of charge, to any person obtaining a copy
; of this software and associated documentation files (the "Software"), to deal
; in the Software without restriction, including without limitation the rights
; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
; copies of the Software, and to permit persons to whom the Software is
; furnished to do so, subject to the following conditions:
;
; The above copyright notice and this permission notice shall be included in all
; copies or substantial portions of the Software.
;
; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
; SOFTWARE.
#lang racket
(require "concrete-domain.rkt")
(require racket/serialize)
(serializable-struct rule (head body idx)
#:transparent
#:methods
gen:equal+hash
[(define (equal-proc r1 r2 equal?-recur)
(and (equal?-recur (rule-head r1) (rule-head r2))
(equal?-recur (rule-body r1) (rule-body r2))
(equal?-recur (rule-idx r1) (rule-idx r2))))
(define (hash-proc my-rule hash-recur)
(+ (hash-recur (rule-head my-rule))
(* 3 (hash-recur (rule-body my-rule)))
(* 5 (hash-recur (rule-idx my-rule)))))
(define (hash2-proc my-rule hash2-recur)
(+ (hash2-recur (rule-head my-rule))
(hash2-recur (rule-body my-rule))
(hash2-recur (rule-idx my-rule))))])
(provide (struct-out rule)) | false |
61314fc333ed6f3c8e9fa1fc688898a1ea69a798 | 66c92b955f3caa70ea4b322654079450ab9eff36 | /gm-pepm-2018/with-cache/exact-runtime-chaos.rktd | 41315ec3b87d849ade84a63f32591d0d4f095da0 | [
"MIT"
]
| permissive | nuprl/retic_performance | ebc3a5656ce77539ff44c50ac00dacd0a22496ec | da634137b151553c354eafcc549e1650043675f9 | refs/heads/master | 2023-06-22T05:41:16.151571 | 2023-06-12T20:16:13 | 2023-06-12T20:16:13 | 85,637,202 | 3 | 1 | MIT | 2023-06-12T20:16:14 | 2017-03-20T23:23:11 | Racket | UTF-8 | Racket | false | false | 2,812,529 | rktd | exact-runtime-chaos.rktd | ;; This file was generated by the `with-cache` library on 2017-07-30
(((600 62 6 30)) (3) 1 (((lib "pict/private/pict.rkt") . pict-deserialize-info)) 3 ((q 255 255 255 1.0) (q 12 #f default normal normal #f default #f aligned) (q 8 "Liberation Serif" default normal bold #f default #t unaligned)) () (0 (q (do-set-pen! ((0 0 0 1.0) 1 solid round round #f)) (do-set-brush! ((255 255 255 1.0) solid #f #f #f)) (set-font (12 #f default normal normal #f default #f aligned)) (set-smoothing unsmoothed) (set-text-mode transparent) (set-alpha 1.0) (set-clipping-region #f) (set-background (255 255 255 1.0)) (set-text-background (255 255 255 1.0)) (set-text-foreground (0 0 0 1.0)) (set-font (8 "Liberation Serif" default normal bold #f default #t unaligned)) (draw-text "chaos" 0.0 0.0 #t 0 0) (set-font (12 #f default normal normal #f default #f aligned)) (transform #(1/4 0 0 1/4 0 0)) (draw-bitmap (760 248 #t #t #"\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\344\344\344\377\262\262\262\377\232\232\232\377\235\235\235\377\304\304\304\377\354\354\354\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\314\314\314\377>>>\377\1\1\1\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377,,,\377\313\313\313\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\244\244\244\377\5\5\5\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\4\4\4\377\210\210\210\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\323\323\323\377\t\t\t\377\0\0\0\377\0\0\0\377111\377\206\206\206\377\277\277\277\377\315\315\315\377\241\241\241\377---\377\0\0\0\377\0\0\0\377\1\1\1\377\304\304\304\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377]]]\377\0\0\0\377\0\0\0\377777\377\363\363\363\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\373\373\373\377QQQ\377\0\0\0\377\0\0\0\377///\377\375\375\375\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\363\363\363\377\n\n\n\377\0\0\0\377\n\n\n\377\355\355\355\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\351\351\351\377\n\n\n\377\0\0\0\377\0\0\0\377\331\331\331\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\375\375\375\377\340\340\340\377\361\361\361\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\306\306\306\377\0\0\0\377\0\0\0\377QQQ\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377666\377\0\0\0\377\0\0\0\377\253\253\253\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\373\373\373\377\226\226\226\377***\377\6\6\6\377\0\0\0\377\0\0\0\377\35\35\35\377III\377\264\264\264\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\252\252\252\377\0\0\0\377\0\0\0\377{{{\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377NNN\377\0\0\0\377\0\0\0\377\227\227\227\377\377\377\377\377\377\377\377\377\377\377\377\377\356\356\356\377,,,\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\1\1\1\377www\377\373\373\373\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\303\303\303\377ooo\377ooo\377\301\301\301\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377!!!\377\0\0\0\377\0\0\0\377\304\304\304\377\377\377\377\377\377\377\377\377\376\376\376\377MMM\377\0\0\0\377\0\0\0\377999\377}}}\377\265\265\265\377\244\244\244\377xxx\377\r\r\r\377\0\0\0\377\0\0\0\377~~~\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\251\251\251\377\0\0\0\377\0\0\0\377\6\6\6\377\363\363\363\377\377\377\377\377\377\377\377\377\323\323\323\377\0\0\0\377\0\0\0\377SSS\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\343\343\343\377\16\16\16\377\0\0\0\377\f\f\f\377\365\365\365\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\311\311\311\377\21\21\21\377\0\0\0\377\0\0\0\377\203\203\203\377\377\377\377\377\377\377\377\377\377\377\377\377\240\240\240\377\0\0\0\377\0\0\0\377\223\223\223\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377fff\377\0\0\0\377\0\0\0\377\316\316\316\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\374\374\374\377\215\215\215\377\b\b\b\377\0\0\0\377\0\0\0\377666\377\373\373\373\377\377\377\377\377\377\377\377\377\377\377\377\377\230\230\230\377\0\0\0\377\0\0\0\377AAA\377\371\371\371\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\370\370\370\377\353\353\353\377\353\353\353\377\372\372\372\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\305\305\305\377222\377\0\0\0\377\0\0\0\377\0\0\0\377LLL\377\360\360\360\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\330\330\330\377\0\0\0\377\0\0\0\377\0\0\0\377111\377\231\231\231\377\356\356\356\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\261\261\261\377\35\35\35\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\35\35\35\377\262\262\262\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\344\344\344\377ZZZ\377\0\0\0\377\0\0\0\377\0\0\0\377\21\21\21\377\230\230\230\377\376\376\376\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\203\203\203\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\2\2\2\377000\377rrr\377\273\273\273\377\370\370\370\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\32\32\32\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\240\240\240\377\f\f\f\377\0\0\0\377\0\0\0\377\2\2\2\377bbb\377\352\352\352\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\243\243\243\377%%%\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\r\r\r\377qqq\377\353\353\353\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\31\31\31\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\363\363\363\377\\\\\\\377\0\0\0\377\0\0\0\377\0\0\0\377BBB\377\321\321\321\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\317\317\317\377\203\203\203\377AAA\377\b\b\b\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377222\377\363\363\363\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\261\261\261\377\30\30\30\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\30\30\30\377\262\262\262\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\376\376\376\377MMM\377\0\0\0\377\0\0\0\377\r\r\r\377\232\232\232\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\370\370\370\377\272\272\272\377ggg\377\b\b\b\377\0\0\0\377\0\0\0\377\200\200\200\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\214\214\214\377\0\0\0\377\0\0\0\377\"\"\"\377\340\340\340\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\303\303\303\377\277\277\277\377\316\316\316\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\264\264\264\377\0\0\0\377\0\0\0\377JJJ\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\365\365\365\377\f\f\f\377\0\0\0\377\21\21\21\377\332\332\332\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377///\377\0\0\0\377\r\r\r\377\370\370\370\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\374\374\374\377\3\3\3\377\0\0\0\377;;;\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\250\250\250\377\0\0\0\377\0\0\0\377}}}\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377ccc\377\0\0\0\377\0\0\0\377\260\260\260\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\311\311\311\377\0\0\0\377\0\0\0\377nnn\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377[[[\377\0\0\0\377\0\0\0\377DDD\377WWW\377WWW\377WWW\377WWW\377WWW\377WWW\377WWW\377WWW\377WWW\377WWW\377WWW\377\303\303\303\377\377\377\377\377\377\377\377\377\307\307\307\377\1\1\1\377\0\0\0\377\20\20\20\377\245\245\245\377\375\375\375\377\377\377\377\377\377\377\377\377\353\353\353\377\254\254\254\377\34\34\34\377\0\0\0\377\2\2\2\377\305\305\305\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377555\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\243\243\243\377\377\377\377\377\377\377\377\377\377\377\377\377jjj\377\0\0\0\377\0\0\0\377\0\0\0\377\a\a\a\377+++\377+++\377\1\1\1\377\0\0\0\377\0\0\0\377\0\0\0\377{{{\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\21\21\21\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\243\243\243\377\377\377\377\377\377\377\377\377\377\377\377\377\374\374\374\377\221\221\221\377\16\16\16\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\30\30\30\377\235\235\235\377\375\375\375\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\352\352\352\377\260\260\260\377\216\216\216\377lll\377mmm\377\220\220\220\377\262\262\262\377\363\363\363\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\375\376\375\377\332\354\331\377\274\335\273\377\260\326\256\377\264\330\262\377\311\343\310\377\357\367\357\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\357\367\357\377\253\324\251\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\234\314\232\377\315\345\314\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\371\374\371\377\361\370\361\377\361\370\361\377\375\376\375\377\377\377\377\377\364\371\364\377\320\347\317\377\272\334\271\377\266\332\265\377\302\340\301\377\342\360\341\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\367\373\367\377\247\322\245\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\322\350\321\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\362\370\362\377\305\341\304\377\246\322\244\377\242\320\240\377\243\320\241\377\276\336\275\377\352\365\352\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\356\367\356\377\274\335\273\377\235\315\233\377\233\314\231\377\233\314\231\377\243\320\241\377\254\324\252\377\234\315\232\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\265\332\264\377\367\373\367\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\303\341\302\377\233\314\231\377\233\314\231\377\214\304\212\377{\273x\377s\270q\377v\272s\377\203\300\200\377\227\312\225\377\233\314\231\377\236\315\234\377\363\371\363\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\335\356\334\377\236\315\234\377\233\314\231\377\233\314\231\377\233\314\231\377\227\312\225\377\223\310\221\377\231\313\227\377\314\345\313\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\340\357\337\377\237\316\235\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\204\300\201\377_\255\\\377g\262d\377\223\310\221\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\255\325\253\377\372\375\372\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\374\376\374\377\341\357\340\377\315\345\314\377\313\344\312\377\331\354\330\377\365\372\365\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\342\360\341\377\270\333\267\377\241\317\237\377\233\314\231\377\246\321\244\377\302\340\301\377\357\367\357\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\373\375\373\377\237\316\235\377\226\311\224\377n\266l\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377c\257_\377\205\301\202\377\233\314\231\377\320\347\317\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\346\362\345\377\235\315\233\377\233\314\231\377\233\314\231\377\206\301\203\377j\263g\377_\255\\\377_\255\\\377`\256\\\377m\265j\377\276\334\274\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\356\366\356\377\237\316\235\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\224\310\222\377a\257^\377_\255\\\377_\255\\\377j\263g\377\232\313\230\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\310\343\307\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\375\376\375\377\327\353\326\377\263\330\261\377\251\323\247\377\251\323\247\377\272\334\271\377\345\362\344\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\340\357\337\377\245\321\243\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\236\316\234\377\311\343\310\377\375\376\375\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\376\376\376\377\302\340\301\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\235\315\233\377\332\354\331\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\353\365\353\377\227\312\225\377i\263f\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377\204\300\202\377\273\335\272\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\255\325\253\377\233\314\231\377\232\314\230\377u\271s\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377c\257_\377\311\345\310\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\275\335\274\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377~\276|\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377\205\301\203\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\241\317\237\377\375\376\375\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\374\375\374\377\363\371\363\377\365\372\365\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\376\376\376\377\365\372\365\377\363\371\363\377\375\376\375\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\375\376\375\377\347\363\347\377\336\356\335\377\345\362\344\377\372\375\372\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\361\370\361\377\253\324\251\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\275\335\274\377\374\376\374\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\376\376\376\377\340\357\337\377\302\340\301\377\266\332\265\377\272\334\271\377\320\347\317\377\364\372\364\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\363\371\363\377\321\347\320\377\312\344\311\377\312\344\311\377\300\336\276\377\232\313\230\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\274\335\273\377\376\376\376\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\315\345\314\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\235\315\233\377\344\362\344\377\362\370\362\377\366\372\366\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\351\364\351\377z\273w\377_\255\\\377S\246O\377G\241D\377C\237?\377D\237@\377J\243G\377X\251U\377_\255\\\377_\255\\\377b\256_\377\262\330\261\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\354\366\354\377\233\314\231\377\233\314\231\377|\274y\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377\204\300\202\377\333\354\332\377\377\377\377\377\377\377\377\377\366\372\366\377\337\357\336\377\325\351\324\377\214\304\211\377\227\312\225\377\233\314\231\377\221\307\217\377\211\302\206\377\211\302\206\377l\265i\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377r\267o\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\356\367\356\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\370\373\370\377\316\346\315\377\273\335\272\377\265\331\264\377\300\337\277\377\333\354\332\377\332\355\332\377\244\320\242\377\214\304\211\377\223\310\221\377\233\314\231\377\247\322\245\377\315\346\314\377\363\371\363\377\307\343\306\377\244\321\242\377\233\314\231\377\233\314\231\377\240\316\236\377\277\337\276\377\360\367\360\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\322\350\321\377\241\317\237\377\233\314\231\377\233\314\231\377\233\314\231\377\235\315\233\377\306\342\305\377\373\375\373\377\377\377\377\377\377\377\377\377\374\375\374\377\363\371\363\377\365\372\365\377\377\377\377\377\377\377\377\377\377\377\377\377\370\374\370\377\250\322\246\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\276\336\275\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\344\361\343\377\304\341\303\377\267\333\266\377\271\334\270\377\315\345\314\377\361\370\361\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\365\372\365\377\260\326\256\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\236\315\234\377\327\353\326\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\371\374\371\377\340\357\337\377\322\350\321\377\324\351\323\377\347\363\347\377\376\377\376\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\374\376\374\377\304\341\303\377\235\315\233\377\233\314\231\377\233\314\231\377\225\311\223\377a\257^\377g\261d\377\214\304\211\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\332\354\331\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\364\372\364\377\236\316\234\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\216\305\214\377k\263i\377V\251S\377f\261c\377c\260`\377l\264i\377\230\313\226\377\343\361\343\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\374\376\374\377\341\360\341\377W\251T\377?\235;\377;\2337\377;\2337\377;\2337\377;\2337\377;\2337\377;\2337\377J\243G\377^\255[\377^\255[\377\231\312\227\377\354\365\354\377\371\374\371\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\334\355\333\377\233\314\231\377\225\311\223\377a\257^\377_\255\\\377_\255\\\377[\253X\377S\247P\377Q\245M\377R\246O\377L\243I\377@\235<\377K\243G\377e\260b\377\242\320\240\377\234\315\232\377\232\314\230\377\233\314\231\377\224\311\222\377_\255\\\377V\251S\377R\246N\377]\254Z\377_\255\\\377_\255\\\377>\235;\3777\2302\377C\240@\377L\244I\377U\250Q\377i\263f\377\233\314\231\377\233\314\231\377\233\314\231\377\227\312\225\377\217\307\216\377\221\307\217\377\347\363\347\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\331\354\331\377}\275{\377E\240A\377=\235:\377A\236=\377L\244G\377\\\255X\377K\244H\3777\2313\377T\250P\377_\255\\\377_\255\\\377l\264i\377\215\305\213\377\221\307\217\377s\267p\377\227\312\225\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\240\316\236\377\340\357\337\377\346\362\345\377\336\356\335\377\346\363\346\377\373\375\373\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\376\376\376\377\275\336\274\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\252\323\250\377\340\356\340\377\271\333\270\377\237\316\235\377\233\314\231\377\233\314\231\377\246\321\244\377\314\345\313\377\372\375\372\377\312\344\311\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\217\306\215\377~\276|\377w\271t\377z\273w\377\202\277\177\377~\274{\377\250\323\250\377\266\332\265\377\302\340\301\377\341\357\340\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\367\373\367\377\264\331\263\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\235\315\233\377\314\345\313\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\371\374\371\377\254\325\252\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\227\312\225\377\223\310\221\377\326\351\325\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\325\351\324\377\241\317\237\377\224\310\222\377\214\304\211\377\215\305\213\377\227\312\225\377\255\325\253\377\352\365\352\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\350\364\350\377\315\345\314\377\303\341\302\377\312\344\311\377\342\360\341\377\375\376\375\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\375\376\375\377\265\331\264\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377}\274z\377\\\253Y\377_\255\\\377`\256]\377\211\302\206\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\257\326\255\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\324\351\323\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\214\305\212\377s\270p\377f\261b\377U\250Q\377=\2338\3774\227/\377:\2337\377Z\253V\377_\255\\\377_\255\\\377_\255\\\377e\257b\377\246\322\244\377\322\346\321\377\244\321\242\377\200\277~\377q\267n\377r\267o\377\214\305\212\377\306\341\305\377\310\343\307\377\241\317\237\377\215\305\213\377/\226+\377%\220!\377*\222&\3776\2301\377;\2337\377;\2337\377;\2337\377;\2337\377:\2325\377;\2347\377=\2349\377h\263f\377\233\314\231\377\235\315\233\377\267\332\266\3771:1\377\377\377\377\377\377\377\377\377\377\377\377\377\334\355\333\377\233\314\231\377\200\276}\377N\245K\377B\236>\3770\226,\377*\222%\377.\225*\3774\2300\377'\221#\377 \216\34\377$\220 \377:\2326\377K\244G\377Z\252V\377_\255\\\377i\262e\377\223\311\221\377\227\312\225\377Q\247N\3778\2325\3775\2301\377;\2326\377U\251R\377E\241A\377,\224(\377!\216\34\377 \216\34\377-\224)\3777\2314\377K\243F\377\221\307\217\377\217\306\215\377n\265k\377`\256\\\377_\255\\\377_\255\\\377\233\314\231\377\307\342\306\377\372\375\372\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\262\330\260\377V\251R\377:\2335\3773\227/\377.\224*\377#\217\37\377\37\214\32\377\27\210\23\377\30\212\24\377%\217!\377'\221#\377G\241D\377^\255[\377_\255\\\377U\247R\377I\243E\377I\243F\377Y\253W\377\214\304\212\377\233\314\231\377\227\312\225\377\220\307\216\377\220\306\216\377y\273w\377b\256_\377\220\306\216\377\233\314\231\377\233\314\231\377\235\315\233\377\311\344\310\377\375\376\375\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\317\346\316\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\231\313\227\377\177\275}\377g\261d\377S\247O\377H\242D\377b\256_\377v\271t\377\223\310\221\377\233\314\231\377\233\314\231\377\233\314\231\377\254\325\252\377\236\315\234\377\233\314\231\377\233\314\231\377\220\307\216\377L\243H\377.\223)\377*\223&\377*\223&\377+\222'\377.\224)\3778\2313\377a\256^\377\232\313\230\377\233\314\231\377\233\314\231\377\261\327\257\377\363\371\363\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\374\376\374\377\260\327\256\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\315\345\314\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\306\342\305\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\232\314\230\377\202\277\200\377i\262f\377_\255\\\377_\255\\\377c\257_\377\254\325\252\377\343\361\342\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\307\343\306\377\212\303\210\377k\263h\377_\255\\\377_\255\\\377_\255\\\377`\256]\377s\270q\377\227\311\225\377\345\362\344\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\367\373\367\377\267\332\266\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\255\325\253\377\356\367\356\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\360\367\360\377\312\344\311\377\264\331\263\377\221\306\217\377r\270p\377\204\300\201\377\231\313\227\377\217\306\215\377q\267n\377F\240B\377;\2337\377;\2328\377D\237@\377T\250P\377\214\305\212\377\226\312\224\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\371\374\371\377\377\377\377\377\231\231\231\377\231\231\231\377\304\341\303\377\233\314\231\377\233\314\231\377\232\313\230\377s\270q\377V\250S\377V\251R\377O\245L\3777\2302\377&\221\"\377 \216\34\377\37\215\e\3773\226.\3773\226/\377-\223)\377(\222$\377&\221\"\377.\225+\3775\2300\3777\2313\3779\2325\377L\244H\377_\255\\\377[\254X\377A\236=\377P\246M\377w\272t\377Q\246M\377'\221\"\377\35\214\31\377!\216\34\377%\220!\3771\225-\377;\2337\377:\2337\3777\2313\377(\222#\377&\221!\377A\236>\377p\266m\377\233\314\231\377\233\314\231\377\233\314\231\377\"Q \377\341\357\340\377\377\377\377\377\377\377\377\377\353\365\353\377\215\305\213\377P\246L\3779\2325\377(\221$\377%\220!\377%\220!\377$\217 \377\26\211\22\377\25\210\20\377\30\211\24\377\30\211\24\377$\217\37\377'\221#\377+\223&\377?\235;\377V\251S\377c\260`\377s\267p\377(\221$\377\"\216\35\377\36\215\31\377\32\212\26\377\25\210\21\377\24\207\20\377\24\207\16\377\22\206\r\377\25\207\20\377\30\211\23\377$\217 \3775\2301\377R\246M\377Z\253V\377_\255\\\377_\255\\\377\\\254Y\377a\256^\377\204\301\202\377\216\305\214\377\253\324\251\377\223\230\223\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\373\375\373\377\346\362\345\377\311\344\310\377\254\324\252\377\264\330\263\377\314\345\313\377\270\334\267\377N\245J\377'\221#\377\36\214\32\377\36\214\32\377\30\211\24\377\27\211\23\377\21\205\f\377\17\205\v\377\20\205\v\377\34\212\27\377%\220!\377+\223'\377A\236>\377@\236<\3772\227.\377'\221\"\3779\2325\377;\2337\377O\246L\377K\243G\377U\251R\377T\247Q\3772\227/\377'\220\"\377+\224'\377=\2339\377K\243F\377O\245J\377Z\252W\377_\255\\\377t\270r\377\277\336\276\377\363\371\363\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\373\375\373\377\240\316\236\377\220\307\216\377{\274y\377w\272t\377w\272t\377z\273x\377d\257`\377[\254X\377T\250Q\3776\2301\3774\2270\377R\247O\377_\255\\\377c\257_\377\213\304\210\377\233\314\231\377\232\313\230\377\205\301\203\377W\251S\377\177\275}\377u\271t\377.\225*\377%\220!\377%\220!\377$\220 \377\31\211\25\377\21\206\f\377\20\205\f\377\27\211\23\377*\222&\377Y\252U\377y\274v\377\213\303\211\377\214\305\213\377\242\320\240\377\353\365\353\377\367\373\367\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\320\347\317\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\235\315\233\377\357\367\357\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\374\376\374\377\240\317\236\377\233\314\231\377\233\314\231\377\233\314\231\377\232\313\230\377p\266n\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377\177\276|\377\233\314\231\377\313\344\312\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\354\365\354\377\320\347\317\377\304\341\303\377\310\343\307\377\336\356\335\377\373\375\373\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\337\356\336\377\202\277\177\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377\\\254Y\377S\247O\377p\266m\377\261\327\260\377\301\337\300\377\337\357\336\377\376\376\376\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\367\373\367\377\253\324\251\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\241\317\237\377\355\366\355\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\320\347\317\377\235\315\233\377\233\314\231\377\233\314\231\377c\257`\377X\252U\377X\252U\377T\250P\377W\251S\377M\244I\377.\224*\377(\221#\377!\216\34\377\37\215\e\377#\220\37\377?\235;\377`\256\\\377n\265j\377\203\300\200\377v\271s\377f\260b\377_\255\\\377\230\313\226\377\270\333\267\377\210\226\207\377\231\231\231\377\304\341\303\377\233\314\231\377\213\303\211\377E\241B\377(\221#\377\"\217\36\377$\216\37\377\e\213\26\377\24\207\17\377\21\205\f\377\22\206\r\377\20\205\v\377\25\207\20\377 \216\35\377\26\211\21\377\24\207\20\377\27\211\23\377\16\203\b\377\17\205\n\377\36\214\32\377%\220!\377%\220!\3774\2301\377?\235;\377/\225+\377\37\214\32\377'\221$\377&\220\"\377\26\210\21\377\25\207\20\377\22\206\r\377\25\207\20\377\34\214\30\377'\221\"\377%\220!\377\e\213\26\377\30\211\24\377\37\214\32\377@\235<\377x\272u\377\233\314\231\377\233\314\231\377\233\314\231\377!R\37\377\237\316\235\377\357\367\357\377\377\377\377\377\361\370\361\377f\261c\3779\2325\377\e\213\27\377\25\210\21\377\27\211\22\377\30\211\23\377\20\205\v\377\f\203\a\377\r\203\b\377\23\207\17\377\26\210\21\377\30\211\23\377\24\207\17\377\37\214\32\377\36\214\32\377\e\213\27\377\37\216\32\377\37\215\32\377\30\211\23\377\r\203\b\377\v\202\6\377\t\202\4\377\a\201\2\377\a\201\3\377\b\202\3\377\t\202\4\377\t\202\6\377\16\204\t\377\25\210\20\377-\225*\377(\221#\377=\234:\377O\246L\3770\226,\377!\216\35\377-\224)\3776\2302\377?\234;\377Q\246M\377S\215P\377\225\230\225\377\377\377\377\377\372\375\372\377\272\335\271\377q\266o\377:\2336\377(\221%\377*\222&\3771\225-\3779\2325\377\37\215\32\377\34\213\27\377\30\210\23\377\25\210\20\377\17\205\n\377\17\205\n\377\20\205\v\377\17\205\n\377\v\202\6\377\v\203\6\377\16\203\t\377\32\213\26\377\27\212\23\377\32\211\25\377'\221#\377'\221#\377!\215\34\377#\216\37\377!\215\34\377\34\213\27\377$\217\37\377\37\215\e\377\e\212\26\377\32\213\26\377\30\211\24\377\26\210\21\377\23\207\16\377\"\216\37\377%\220!\377,\224(\377F\240C\377\\\254Y\377z\273w\377\241\317\237\377/<.\377\377\377\377\377\377\377\377\377\377\377\377\377\340\357\337\377s\267q\377_\255\\\377_\255\\\377S\247O\377B\236>\377+\222&\377%\220!\377'\221\"\377\37\215\e\377!\216\34\377%\220 \3771\226-\377:\2326\377<\2348\377-\225*\377%\217!\377\30\211\23\377\27\210\21\377\24\207\20\377!\216\35\377\23\206\16\377\21\206\r\377\31\211\24\377\35\214\31\377\30\212\23\377\21\205\f\377\20\205\f\377\20\205\f\377\20\205\f\377\31\211\24\377.\224)\377:\2337\377>\236;\377D\240A\377<\2348\377W\251T\377\220\306\216\377\251\323\247\377\320\347\317\377\227\231\227\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\352\365\352\377\303\341\302\377q\267n\377h\262d\377n\265k\377\200\276}\377\230\312\226\377\226\312\224\377|\274z\377n\265j\377h\262d\377l\264h\377z\273w\377\274\336\273\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\350\363\350\377{\274y\377[\254X\377E\240A\377>\235:\3774\2270\3772\227.\377B\236>\377Q\246M\377^\255[\377_\255\\\377_\255\\\377s\270p\377\233\314\231\377\233\314\231\377\335\355\334\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\370\373\370\377\272\334\271\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\245\321\243\377\210\226\207\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\241\316\237\377`\256]\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377T\247P\377=\2349\3779\2325\3777\2313\377`\257]\377s\270q\377{\274y\377\241\317\237\377\364\372\364\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\372\374\372\377\337\356\336\377\304\341\303\377\301\336\277\377\332\354\331\377\372\374\372\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\337\276\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\225\311\223\377\207\302\205\377\203\277\200\377\211\302\206\377\227\312\225\377\255\325\253\377\376\377\376\377\377\377\377\377\377\377\377\377\325\352\324\377\233\314\231\377\212\303\207\377j\263h\377E\240B\377&\221\"\377(\221$\377)\221%\377!\215\34\377\36\214\32\3774\2301\377*\222&\377\e\213\26\377\30\211\24\377\27\211\23\377\24\207\17\377\30\211\24\377+\223'\3771\226,\377,\223(\377I\242F\377_\255\\\377`\255\\\377\231\313\227\377\233\314\231\377^\217\\\377u\223t\377\325\352\324\377{\274x\377<\2358\377\37\214\32\377\27\211\23\377\21\206\r\377\f\202\6\377\a\200\2\377\6\200\1\377\6\200\1\377\6\200\2\377\6\200\3\377\t\201\4\377\b\201\3\377\t\202\5\377\t\202\5\377\a\200\2\377\a\201\2\377\n\202\5\377\16\204\n\377\30\211\23\377\31\212\25\377\30\211\23\377\22\206\r\377\21\205\f\377\22\206\r\377\r\203\a\377\r\203\a\377\n\202\6\377\v\203\6\377\f\203\a\377\f\203\a\377\t\202\4\377\r\203\t\377\23\207\16\377\23\206\16\377\34\213\27\377!\216\34\377!\215\34\377G\241B\377g\261d\377n\265j\377\203\277\200\377!R\37\377\233\314\231\377\275\336\274\377\374\375\374\377s\267p\377(\221$\377\22\205\r\377\t\201\4\377\a\201\4\377\a\200\2\377\a\201\2\377\a\200\2\377\a\201\2\377\t\202\4\377\t\202\4\377\r\203\b\377\r\202\t\377\t\201\4\377\17\204\t\377\r\203\b\377\r\203\b\377\r\203\b\377\n\203\5\377\t\202\5\377\a\201\3\377\6\200\2\377\6\200\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\6\200\2\377\v\203\6\377\16\204\n\377\20\205\v\377\17\205\n\377\17\205\n\377\17\205\n\377\25\210\21\377\34\214\31\377$\217\37\377)\222%\3776\2302\377*\206&\377Y\216W\377\361\370\361\377\223\311\220\377U\251R\377*\223%\377%\220!\377%\220!\377%\217!\377\30\211\23\377\20\205\v\377\n\202\5\377\t\202\4\377\t\202\4\377\r\202\b\377\v\203\6\377\b\202\5\377\a\201\2\377\a\201\2\377\a\200\2\377\6\200\1\377\6\200\1\377\t\201\4\377\n\202\5\377\v\203\6\377\v\202\6\377\t\202\4\377\t\201\4\377\t\202\5\377\t\202\4\377\t\202\4\377\n\203\6\377\t\201\5\377\b\201\4\377\a\201\2\377\a\200\3\377\t\202\4\377\n\202\5\377\16\204\t\377\25\210\21\377\26\210\21\377\32\212\25\377(\221$\377F\241C\377\204\301\201\377\"Q \377\357\367\357\377\377\377\377\377\374\376\374\377\230\313\226\377_\255\\\377_\254\\\377I\242F\377;\2337\3775\2300\377#\216\37\377\31\212\25\377\25\210\20\377\20\205\v\377\20\205\f\377\21\206\r\377\23\206\16\377\21\206\f\377\r\203\b\377\t\201\4\377\b\200\3\377\a\201\2\377\a\201\2\377\a\200\2\377\b\200\3\377\b\202\3\377\v\202\6\377\r\203\b\377\r\203\t\377\v\203\6\377\t\202\4\377\n\202\5\377\n\202\5\377\v\203\6\377\f\203\a\377\37\215\e\377,\223'\377&\220!\3770\225,\377;\2337\377=\2349\377a\256^\377\212\303\210\377\233\314\231\377k\221i\377\225\230\225\377\377\377\377\377\377\377\377\377\377\377\377\377\312\344\311\377\233\314\231\377\226\312\224\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377Z\253V\377[\253X\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377o\265l\377\325\352\324\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\342\360\342\377r\266o\3777\2313\377'\221#\377%\220!\377$\217\37\377\34\213\27\377\"\216\36\377(\221%\3778\2324\377D\240@\377]\254Y\377_\255\\\377p\266n\377\233\314\231\377\233\314\231\377\247\322\245\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\360\367\360\377\311\344\310\377\265\331\264\377\265\331\264\377\277\337\276\377\344\361\343\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\373\375\373\377\257\326\255\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377^\216\\\377\211\227\210\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\371\374\371\377p\266m\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377S\247P\377;\2337\377,\223(\377\e\213\27\377\27\211\23\377$\217!\377F\241A\377Q\246O\377M\244I\377\\\254Y\377\266\332\265\377\323\351\322\377\365\372\365\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\375\376\375\377\310\343\307\377\200\276}\377c\257_\377_\255\\\377_\255\\\377_\255\\\377o\266l\377\245\322\244\377\333\354\332\377\353\365\353\377\376\376\376\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\366\372\366\377\234\314\232\377\233\314\231\377\233\314\231\377\226\311\224\377h\263e\377F\241B\377<\2338\377;\2337\377<\2348\377H\241E\377o\266n\377\340\357\337\377\377\377\377\377\365\372\365\377\236\316\234\377v\271t\377V\250S\377?\235;\3776\2312\377%\220!\377%\217!\377\26\210\22\377\17\205\n\377\24\207\17\377\e\213\27\377\37\215\34\377\30\211\24\377\25\207\20\377\17\205\n\377\v\203\6\377\n\202\5\377\16\204\b\377\f\204\b\377\v\203\a\377\f\204\b\377\27\210\23\377#\217\37\377=\235:\377O\246M\377E\213B\377Z\216X\377\245\322\243\377E\240B\377!\216\35\377\22\206\16\377\r\203\b\377\t\201\3\377\6\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\6\177\1\377\6\177\1\377\5\200\1\377\6\200\2\377\a\200\2\377\6\200\1\377\6\200\1\377\6\200\1\377\a\200\2\377\v\202\5\377\22\206\r\377\v\203\5\377\a\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\a\177\2\377\a\200\2\377\6\200\2\377\b\200\2\377\f\204\a\377\e\214\27\377(\222$\377;\2337\377M\244J\377\27b\24\377\222\310\221\377\237\316\235\377s\267q\377\31\211\24\377\20\205\v\377\b\201\4\377\6\200\1\377\5\177\1\377\6\200\1\377\5\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\177\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\5\200\1\377\6\177\1\377\6\177\1\377\6\177\1\377\5\200\2\377\6\200\1\377\t\201\4\377\17\205\n\377\21\206\f\377\23\207\16\377\23\207\r\377\32\212\26\377\"\216\36\377\"\205\35\3774\2101\377{\274y\377]\255Z\377.\224)\377%\220!\377\"\216\35\377\e\213\26\377\20\205\v\377\v\203\6\377\b\201\3\377\6\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\a\200\2\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\5\177\1\377\5\177\1\377\6\177\1\377\6\200\1\377\6\177\1\377\5\200\1\377\a\200\1\377\b\202\3\377\n\202\5\377\r\203\t\377\25\210\21\377\37\214\32\377N\245J\377\31a\26\377\263\330\262\377\377\377\377\377\315\346\314\377\205\300\203\377N\245K\3777\2303\377'\221#\377(\221#\377\37\215\e\377\23\206\16\377\17\204\t\377\f\203\a\377\t\202\4\377\t\202\4\377\a\201\2\377\a\201\2\377\a\200\2\377\5\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\2\377\b\201\4\377\b\201\3\377\a\201\3\377\a\201\2\377\b\201\3\377\t\202\4\377\a\201\2\377\n\202\5\377\16\204\v\377\30\210\23\377%\217 \377&\221\"\377:\2326\3774\2270\377F\241B\377I\243F\377s\270p\377R\215O\377p\221o\377\377\377\377\377\377\377\377\377\320\347\317\377\233\314\231\377\233\314\231\377\223\310\221\377_\255\\\377_\255\\\377_\255\\\377W\251T\377<\2348\377?\235;\377[\254X\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377k\263h\377\233\314\231\377\336\356\335\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\343\361\343\377m\264i\377W\251U\377'\221#\377%\220!\377%\220!\377 \215\34\377\30\211\24\377\31\211\24\377!\216\34\377(\221%\3776\2314\3778\2324\377D\240@\377T\250Q\377s\270p\377\206\301\203\377\232\313\230\3770;0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\314\345\313\377\235\315\233\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\265\332\264\377\367\373\367\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\351\364\351\377\307\343\306\377\270\333\267\377\270\333\267\377\312\344\311\377\345\361\345\377\316\346\315\377\265\331\264\377\257\326\255\377\270\333\267\377\251\323\247\377\231\313\227\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377^\217\\\377d\220b\377\372\374\372\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\355\366\355\377`\256]\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377]\254Y\3778\2325\377 \214\34\377\22\206\r\377\20\205\f\377\20\205\f\377\25\207\20\377\36\214\31\377\31\211\25\377$\220!\3772\226-\377D\240@\377x\273v\377v\271s\377\244\321\242\377\332\354\331\377\373\375\373\377\362\371\362\377\305\343\304\377w\274u\377K\242G\377G\241C\377U\251R\377_\255\\\377Z\253W\377F\241B\377<\2337\377>\235:\377f\261c\377\230\313\226\377\247\322\245\377\332\354\331\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\340\357\337\377\233\314\231\377\233\314\231\377\225\311\223\377O\245L\3772\227.\3772\226.\3773\227.\3778\2324\377:\2337\3774\227/\377)\222$\377>\234:\377o\265l\377O\245K\377+\223(\377$\217!\377\34\214\30\377\35\214\30\377!\216\34\377\e\212\26\377\30\211\23\377\r\204\b\377\f\203\a\377\f\203\a\377\17\205\n\377\20\205\v\377\17\205\n\377\v\203\6\377\t\202\4\377\a\201\2\377\a\201\2\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\t\201\4\377\16\204\t\377\30\211\24\377\36\204\32\377)\206%\377M\245I\3778\2315\377\25\210\21\377\f\203\a\377\t\201\4\377\a\200\2\377\5\200\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\5\177\1\377\6\177\1\377\6\177\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\177\1\377\6\200\1\377\5\177\1\377\6\200\2\377\v\202\6\377\26\210\21\377\e\213\26\377\ft\b\377P\245M\377\\\253Y\377\31\213\24\377\f\203\b\377\b\201\2\377\6\177\1\377\6\200\1\377\5\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\177\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\6\200\1\377\5\200\1\377\6\177\1\377\5\177\1\377\6\177\1\377\6\200\1\377\5\177\1\377\6\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\200\2\377\b\201\3\377\v\203\6\377\r\203\b\377\20\205\v\377\20\201\v\377$\205 \377:\2336\377D\240@\377%\220!\377\35\214\31\377\30\211\24\377\17\205\v\377\b\202\3\377\6\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\6\177\1\377\5\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\177\1\377\5\200\1\377\6\200\1\377\5\177\1\377\5\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\201\2\377\t\202\5\377\16\205\n\377!\216\35\377\21k\r\377g\262d\377\364\370\364\377\226\312\224\377>\2349\377\27\211\23\377\16\205\n\377\r\203\b\377\r\204\b\377\v\202\6\377\t\202\5\377\t\202\4\377\b\202\4\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\a\200\2\377\a\200\2\377\a\200\2\377\a\200\2\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\201\1\377\f\203\b\377\24\207\17\377\24\210\20\377\31\211\25\377\32\212\26\377'\220#\3772\226.\377K\243G\377:\2117\377?\211;\377\323\351\323\377\362\371\362\377\235\315\233\377\233\314\231\377\233\314\231\377\224\311\222\377W\252S\377T\250P\377W\252T\377B\236>\377;\2337\377;\2337\377G\241D\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377r\267p\377\233\314\231\377\245\321\243\377\373\375\373\377\377\377\377\377\377\377\377\377\377\377\377\377\371\374\371\377\207\302\205\377T\247P\3776\2303\377\35\214\30\377\25\210\21\377\24\207\17\377\21\205\f\377\20\205\f\377\22\206\16\377\23\207\16\377\26\211\22\377\30\211\23\377\34\214\30\377.\224)\377T\251Q\377_\255\\\377_\255\\\377l\264i\377+@*\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\312\344\311\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\257\326\255\377\373\375\373\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\374\375\374\377\302\340\301\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\211\302\206\377c\257`\377|\274y\377\232\313\230\377\233\314\231\377\232\313\230\377c\257_\377f\261c\377\216\305\214\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377^\217\\\377^\217\\\377\330\353\327\377\377\377\377\377\377\377\377\377\377\377\377\377\352\365\352\377\264\331\263\377B\236>\377@\235<\377D\237A\377O\245K\377]\254Z\377H\242D\377\37\215\e\377\17\205\n\377\17\204\n\377\17\204\n\377\17\205\n\377\f\203\b\377\17\205\v\377\16\204\n\377\16\204\n\377\17\205\v\377\22\206\r\377&\217!\377A\236<\377B\237>\377M\244I\377>\235;\3775\2301\377(\221$\377\34\214\30\377\30\211\24\377\e\213\27\377#\217\37\3774\227/\3779\2325\377;\2337\377;\2337\377;\2337\377C\237>\377t\270q\377\233\314\231\377\233\314\231\377*D)\377\377\377\377\377\377\377\377\377\377\377\377\377\313\344\313\377~\275{\377h\263e\377&\221#\377\23\207\16\377\22\207\16\377\22\206\r\377\22\206\16\377\25\210\20\377\24\210\17\377\23\207\17\377\22\205\16\377\22\206\r\377\26\210\21\377\17\205\v\377\t\202\4\377\b\202\4\377\n\203\5\377\16\204\t\377\23\206\r\377\f\203\a\377\f\204\a\377\v\202\6\377\n\202\5\377\t\202\5\377\a\200\2\377\b\200\3\377\6\201\2\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\6\200\1\377\6\177\1\377\a\200\2\377\b\201\3\377\n\200\5\377\27\203\23\377\36\214\31\377'\222#\377\20\206\v\377\n\202\4\377\5\201\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\177\1\377\6\200\1\377\5\200\1\377\6\200\1\377\b\200\2\377\r\204\t\377\bz\4\377$\220 \377\21\206\r\377\16\204\t\377\a\200\2\377\6\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\6\177\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\6\200\1\377\b\201\3\377\f\203\b\377\f\201\a\377\17\201\t\377+\223'\377.\224*\377\36\214\31\377\30\211\24\377\r\203\b\377\6\200\1\377\6\177\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\6\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\177\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\t\202\5\377\ty\4\377<\2338\377\217\310\216\377$\217 \377\30\211\23\377\r\204\b\377\b\201\3\377\a\201\2\377\6\200\2\377\6\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\177\1\377\6\200\1\377\5\177\1\377\6\177\1\377\6\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\a\200\2\377\t\202\4\377\n\202\5\377\17\205\n\377\30\211\23\377\30\212\24\377\"\216\36\377/\210,\3779\2116\377}\275z\377\275\336\274\377\227\312\225\377~\276|\377W\252S\377E\237A\3775\2312\3773\227/\3776\2312\377(\221#\3773\227/\377;\2337\377<\2348\377]\255Z\377_\255\\\377_\255\\\377_\255\\\377\205\301\203\377\233\314\231\377\226\311\224\377\276\336\274\377\273\334\272\377\242\317\240\377\253\325\252\377\230\312\227\377A\235=\3778\2325\377%\217 \377\31\211\24\377\20\206\f\377\20\205\f\377\16\205\n\377\f\203\a\377\f\203\a\377\n\202\6\377\v\203\6\377\22\206\r\377\30\211\24\377!\216\35\377@\235<\377X\251U\377_\255\\\377_\255\\\377 T\36\377\371\374\371\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\355\366\355\377\234\315\232\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\317\346\316\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\370\374\370\377\314\345\313\377\246\322\244\377\207\302\204\377v\272s\377{\274y\377\234\314\233\377\312\344\311\377\364\371\364\377\377\377\377\377\377\377\377\377\376\376\376\377\336\356\335\377\274\335\273\377\260\326\256\377\264\330\262\377\315\346\314\377\363\370\363\377\272\334\271\377\233\314\231\377\233\314\231\377\233\314\231\377\232\314\230\377y\273u\377G\241D\377C\237>\377D\240@\377a\257_\377\226\312\224\377\217\306\215\377_\255\\\377_\255\\\377c\257_\377\221\307\217\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377^\217\\\377^\217\\\377\300\337\277\377\377\377\377\377\377\377\377\377\307\342\306\377\214\304\211\377\203\300\200\377=\2339\3779\2325\377.\225*\377\37\215\e\377\32\213\25\377\17\205\n\377\t\202\4\377\t\201\4\377\n\202\5\377\b\201\3\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\t\200\3\377\v\203\6\377\20\205\n\377\24\206\20\377\17\205\n\377\17\204\n\377\r\203\b\377\16\204\n\377\16\204\t\377\24\206\17\377\26\210\21\377\30\211\23\377\30\211\23\377\37\214\32\3770\225+\3770\225,\3770\225,\3771\225-\377Q\246M\377\221\307\217\377\233\314\231\377!R\37\377\342\360\341\377\374\375\374\377\303\341\302\377s\271p\377-\224)\377\23\206\17\377\t\202\4\377\b\201\3\377\b\201\4\377\t\202\5\377\n\201\5\377\a\200\2\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\b\201\2\377\6\177\1\377\6\177\1\377\6\200\1\377\6\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\200\3\377\20\206\f\377\17\206\v\377\n\201\5\377\6\177\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\200\2\377\6\177\1\377\21\205\f\377\a\200\2\377\b\201\4\377\6\200\1\377\6\177\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\t\200\4\377\f\201\a\377\30\211\23\377%\220\"\377\30\210\23\377\r\203\b\377\6\200\1\377\6\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\177\1\377\6\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\6~\1\377\25\210\21\377\30\211\23\377\23\205\16\377\n\203\6\377\b\201\3\377\6\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\177\1\377\6\177\1\377\6\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\5\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\a\200\2\377\17\205\n\377\24\207\17\377\30\211\24\377\36\203\32\377*\207&\377o\266m\377r\267n\377\\\254Y\3776\2302\377-\224)\377+\223'\377*\223&\377!\216\35\377#\217\36\377\"\217\36\377%\220!\377/\226+\377;\2337\377W\251T\377U\250Q\377@\236<\377>\234:\377Z\252W\377W\251S\377J\243G\377W\250T\377_\255\\\377S\247P\377C\237?\377$\220\37\377\26\207\21\377\25\210\21\377\20\205\v\377\23\207\16\377\22\206\r\377\17\205\n\377\f\204\b\377\t\202\4\377\t\201\4\377\t\202\4\377\t\202\4\377\r\203\b\377\26\211\23\377\e\213\27\377 \216\34\377 \215\e\3772\227/\377D\240@\377\37W\35\377\307\343\306\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\373\375\373\377\355\366\355\377\355\366\355\377\373\375\373\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\306\342\305\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\226\312\224\377\214\305\213\377\214\304\212\377\225\311\223\377\233\314\231\377\233\314\231\377\247\322\245\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\350\363\350\377\244\321\242\377\213\304\212\377_\256\\\377R\247O\377D\240@\3778\2324\3773\227/\377=\235:\377h\262e\377\300\336\277\377\362\371\362\377\257\326\255\377\233\314\231\377\233\314\231\377\233\314\231\377\231\313\227\377\214\304\211\377x\272t\377u\270s\377\225\312\223\377\215\305\213\377\204\301\202\377c\257_\377?\234;\377;\2337\377;\2337\377;\2337\377;\2337\377X\252U\377g\262e\377E\240A\377?\235;\377>\235:\377N\244J\377\202\277\177\377\232\313\230\377\233\314\231\377\233\314\231\377\233\314\231\377^\217\\\377^\217\\\377\271\333\270\377\372\375\372\377\241\317\237\377`\255]\377U\250R\377G\241C\377\"\217\36\377\17\205\v\377\17\204\n\377\21\206\f\377\r\203\b\377\t\202\4\377\b\201\3\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\2\377\6\200\2\377\6\177\1\377\a\200\2\377\a\200\2\377\b\201\3\377\a\200\1\377\6\200\1\377\a\201\2\377\t\202\4\377\f\203\a\377\v\203\b\377\20\205\v\377\27\210\23\377$\217 \377%\220!\377\"\216\36\377)\222$\377V\247R\377\216\306\215\377!R\37\377\257\326\255\377\267\333\266\377a\257^\377*\222$\377\r\204\b\377\b\200\2\377\6\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\177\1\377\6\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\200\1\377\5\200\1\377\6\200\3\377\6\177\1\377\a\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\a\177\2\377\22\206\r\377\34\214\32\377\t\203\5\377\6\200\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\200\1\377\5\200\1\377\6\177\1\377\6\200\1\377\b\202\4\377\a\200\2\377\t\202\4\377\b\201\3\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\6\177\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\6\177\1\377\6\177\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\b\201\3\377\v\202\6\377\23\202\17\377#\204\37\377N\245K\377?\234<\377$\221 \377\34\214\30\377\31\212\25\377\30\211\24\377\32\212\25\377\27\211\22\377\20\206\r\377\21\205\r\377\31\212\25\377\34\213\30\377)\221$\377*\222&\377\35\213\31\377\35\213\30\377#\217\37\377\34\213\30\377\25\210\22\377\26\210\21\377!\216\34\3773\227/\3779\2325\3773\227/\377\24\207\17\377\f\203\a\377\v\202\6\377\a\200\2\377\a\200\2\377\b\201\3\377\t\177\3\377\a\201\2\377\6\200\1\377\6\200\1\377\6\200\1\377\a\201\3\377\t\202\5\377\16\203\b\377\16\203\b\377\20\205\f\377\20\205\f\377\25\210\20\377(\221#\377\21m\r\377\200\277~\377\375\376\375\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\363\371\363\377\274\335\273\377\236\316\234\377\233\314\231\377\233\314\231\377\236\315\234\377\276\336\275\377\364\372\364\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\262\330\260\377\233\314\231\377\233\314\231\377\223\310\221\377q\267o\377`\255\\\377_\255\\\377_\255\\\377_\255\\\377n\264k\377\217\306\216\377\233\314\231\377\366\372\366\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\361\370\361\377\226\311\224\377k\264i\377>\234:\377.\224+\377\e\212\27\377\22\206\16\377\21\205\f\377\27\210\23\377\30\211\24\377 \215\e\3773\230/\377`\254\\\377\232\313\230\377\233\314\231\377\230\312\226\377x\271u\377N\244J\377;\2338\377&\222\"\377\35\214\31\377)\222$\377C\240@\377=\2338\3775\2300\377)\222%\3772\227.\3777\2314\377:\2337\377:\2325\377/\225+\377.\224)\377*\222%\3773\227.\3779\2325\3770\225,\3776\2302\377:\2326\377Q\246N\377f\261d\377\204\301\202\377]\217[\377^\217\\\377\277\336\276\377\244\321\242\377S\247P\377*\222%\377\34\213\27\377\23\207\16\377\n\202\5\377\6\200\1\377\6\200\1\377\6\200\1\377\a\201\2\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\5\177\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\2\377\t\200\4\377\n\203\5\377\t\202\4\377\t\202\5\377\r\203\b\377\30\210\24\3771\226-\377\27d\23\377y\273v\377\\\253Y\377\36\214\32\377\17\205\n\377\a\201\2\377\6\177\1\377\6\200\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\b\201\3\377\n\202\6\377\6\200\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\a\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\a\200\2\377\23\202\17\3770\225,\377 \215\e\377\25\207\20\377\30\211\24\377\30\211\24\377\30\211\24\377\21\205\f\377\f\203\a\377\t\202\5\377\a\200\2\377\b\200\4\377\t\202\4\377\b\200\2\377\t\202\4\377\n\202\6\377\t\202\4\377\a\200\2\377\a\200\1\377\6\201\2\377\6\200\2\377\t\201\4\377\20\205\v\377\26\210\21\377\17\205\n\377\t\202\4\377\6\200\1\377\6\200\1\377\5\200\1\377\6\177\1\377\6\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\177\1\377\b\201\3\377\t\202\4\377\v\203\6\377\r\204\b\377\36\214\31\377\rs\n\377?\235;\377\272\333\271\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\356\366\356\377\345\362\344\377\353\365\353\377\347\363\347\377\243\320\241\377\233\314\231\377\233\314\231\377\232\313\230\377\227\311\225\377\227\311\225\377\232\313\230\377\244\321\242\377\352\364\352\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\256\325\254\377\233\314\231\377\216\305\214\377d\260a\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377a\257^\377\211\302\206\377\362\370\362\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\371\374\371\377\342\360\341\377\327\352\326\377\336\356\335\377\365\372\365\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\373\375\373\377\327\353\326\377\275\335\274\377\265\331\264\377\276\336\275\377\330\353\327\377\374\376\374\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\247\322\245\377a\257^\377D\240@\377#\217\36\377\f\203\a\377\a\201\2\377\a\200\2\377\6\200\1\377\a\201\2\377\n\202\6\377\21\206\r\377\31\212\25\377\36\214\31\377Y\253V\377\210\302\206\377T\250Q\377-\223(\377%\220!\377\"\216\35\377\17\205\n\377\f\203\a\377\v\203\6\377\r\203\b\377\22\206\r\377\25\207\20\377\25\210\21\377\31\211\24\377!\216\34\377$\217\37\377\26\210\21\377\23\207\16\377\e\213\26\377\26\210\20\377\34\213\30\377\17\205\n\377\v\203\6\377\v\202\6\377\n\202\5\377\v\203\6\377\21\206\f\377\37\215\e\377,\206(\377K\214I\377\245\320\243\377c\257_\377\34\213\27\377\30\211\24\377\16\204\n\377\a\201\3\377\6\200\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\201\2\377\v\203\6\377\25\210\20\377\fs\b\3774\227/\377\34\212\27\377\r\204\t\377\6\200\2\377\6\200\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\26\210\20\377\26\210\22\377\23\207\17\377\24\207\20\377\21\204\f\377\b\201\4\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\5\177\1\377\6\200\1\377\t\202\4\377\20\205\v\377\tz\4\3770\225+\377p\266m\377\347\363\347\377\377\377\377\377\377\377\377\377\377\377\377\377\324\351\323\377\246\322\244\377\231\313\227\377\205\302\204\377o\266m\377P\245L\377d\260a\377\177\276|\377k\264i\377\\\254Y\377_\255\\\377_\255\\\377f\261c\377~\275{\377\241\317\237\377\324\351\323\377\256\326\254\377\211\302\206\377}\274z\377{\274x\377{\274y\377\217\306\215\377\235\315\233\377w\272t\377m\265j\377Z\253V\377\\\254Y\377U\250Q\377T\247P\377W\251T\377^\255[\377_\255\\\377_\255\\\377_\255\\\377c\257`\377\356\366\356\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\336\356\335\377\263\330\261\377\233\314\231\377\233\314\231\377\241\317\237\377\303\341\302\377\362\371\362\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\375\376\375\377\327\352\326\377\260\326\256\377\242\320\240\377\242\320\240\377\257\326\255\377\314\345\313\377\310\343\307\377\261\327\257\377\251\323\247\377\261\327\257\377\312\344\311\377\364\372\364\377\377\377\377\377\375\376\375\377\315\346\314\377\236\315\234\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\276\336\275\377\370\374\370\377\364\371\364\377\267\332\265\377\222\310\220\377}\275{\377d\260a\377t\270q\377\214\304\211\377\233\314\231\377\233\314\231\377\233\314\231\377\251\323\247\377\353\365\353\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\354\365\354\377d\261a\377W\252T\377\26\211\22\377\a\201\2\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\200\3\377\n\202\4\377\17\204\t\377\34\213\30\377\23\206\16\377\23\206\16\377\26\210\21\377\17\204\v\377\b\201\4\377\b\201\3\377\b\201\3\377\a\200\2\377\a\200\2\377\n\201\5\377\n\202\5\377\r\204\b\377\17\205\n\377\v\202\6\377\t\201\4\377\n\202\5\377\20\205\v\377\v\202\6\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\200\2\377\t\201\4\377\v\203\6\377\16\201\n\377*\206%\377`\255]\377#\217 \377\22\206\16\377\b\201\4\377\6\200\1\377\6\177\1\377\6\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\200\1\377\5\177\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\200\1\377\a\200\2\377\n\202\4\377\b|\3\377\23\207\16\377\n\203\5\377\a\200\2\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\17\205\n\377\16\204\n\377\b\202\3\377\6\177\1\377\6\200\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\a\201\2\377\a}\2\377\e\212\26\377Q\246M\377\273\334\272\377\377\377\377\377\377\377\377\377\265\332\264\377\213\303\210\377n\266k\377G\242D\377;\2338\377-\224)\377\34\214\31\377\27\211\22\377\27\211\23\377.\224)\377:\2337\377B\236>\377U\251R\377^\254[\377Z\253W\377J\243F\377g\262d\377d\260a\377U\250R\3775\2311\377\37\215\e\377\36\214\32\377 \216\34\3773\227/\3774\2270\377\"\216\35\377\26\210\21\377\31\212\25\377+\223(\3779\2325\377;\2337\377?\235;\377K\244H\377S\247P\377S\247P\377l\264i\377\300\337\277\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\350\364\350\377\307\343\306\377\270\333\267\377\270\333\267\377\312\344\311\377\355\366\355\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\375\376\375\377\274\335\273\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\237\316\235\377\340\357\337\377\377\377\377\377\377\377\377\377\377\377\377\377\370\373\370\377\344\361\343\377\336\356\335\377\351\364\351\377\375\376\375\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\364\371\364\377\227\312\225\377p\267m\377e\260b\377d\261a\377m\264j\377o\266k\377_\256]\377j\263g\377\224\311\222\377\233\314\231\377\233\314\231\377\233\314\231\377\235\315\233\377\265\331\263\377\206\302\204\377r\267n\377{\273x\377m\265j\377\\\254X\377Z\253W\377h\262e\377s\267p\377c\260`\377J\242F\377D\240A\377C\237@\3777\2313\377;\2337\377?\235;\377T\247P\377j\263h\377u\270r\377j\263g\377h\262e\377s\270q\377\305\342\304\377\373\375\373\377444\377\377\377\377\377\262\330\261\377W\251T\377\37\214\31\377\t\201\4\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\177\1\377\5\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\6\200\2\377\6\200\1\377\6\200\1\377\6\200\1\377\a\201\2\377\a\200\2\377\6\200\1\377\6\200\1\377\6\200\1\377\t\202\4\377\a\201\3\377\6\200\1\377\6\200\1\377\6\200\1\377\a\200\2\377\6\201\2\377\6\177\1\377\6\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\t\202\4\377\b\200\3\377\21\202\f\377*\223%\377\f\203\b\377\6\200\2\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\b\201\2\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\a\201\2\377\6\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\6\200\1\377\6\177\1\377\f\203\a\3775\2311\377\216\305\214\377\337\357\336\377}\274z\377A\236=\377(\222%\377\32\212\25\377\e\213\27\377!\215\36\377\31\211\24\377\27\211\23\377\21\205\r\377\20\205\f\377\26\210\21\377&\220!\377(\222%\377\35\213\32\377\34\214\30\377\31\211\24\377\25\210\20\377\26\210\21\377.\224)\377\"\216\35\377\31\212\25\377\30\211\24\377\24\207\20\377\r\202\b\377\n\201\5\377\17\205\n\377\f\203\6\377\f\203\a\377\16\204\t\377\22\206\16\377\35\214\31\377-\224(\377&\220\"\377\34\214\30\377\34\214\27\377\35\214\30\377'\220#\377<\2338\377\242\320\241\377\0\b\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\372\374\372\377\274\335\273\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\304\341\303\377\375\376\375\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\303\341\302\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\236\316\234\377\352\364\352\377\371\374\371\377\302\340\301\377\235\315\233\377\233\314\231\377\233\314\231\377\233\314\231\377\232\314\230\377\256\325\254\377\303\341\302\377\303\341\302\377\324\351\323\377\367\373\367\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\350\363\350\377g\262e\377N\245K\377R\246N\377Y\252V\377[\253X\377T\247P\3773\227.\377/\225*\377>\235:\377J\242F\377y\273v\377\223\310\221\377y\272v\377F\240B\3771\225,\3775\2301\377*\222%\377\31\211\24\377\36\215\30\3771\226,\377:\2337\377*\222&\377\32\213\25\377\17\204\n\377\20\206\r\377\31\211\24\377\22\206\r\377\20\205\f\377\25\211\22\377$\217\37\377\"\216\35\377*\223&\377G\242D\377_\255\\\377_\255\\\377_\255\\\377l\264i\377\250\323\246\377090\377\375\376\375\377\217\305\215\3774\2300\377\v\202\5\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\5\177\1\377\5\177\1\377\6\177\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\5\177\1\377\6\200\1\377\5\177\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\a\200\2\377\t\200\4\377\t\200\4\377\v\202\6\377\6\200\1\377\5\177\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\177\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\6\177\1\377\a\201\2\377\26\211\23\377M\245I\377]\253Y\377+\222&\377\36\214\31\377\21\206\f\377\r\203\b\377\r\204\b\377\f\204\b\377\v\203\6\377\r\204\b\377\r\203\b\377\v\203\6\377\n\202\4\377\f\202\a\377\16\204\t\377\17\205\n\377\16\204\v\377\16\204\n\377\v\202\6\377\n\202\6\377\16\204\t\377\17\204\n\377\24\207\20\377\24\207\17\377\f\203\6\377\t\202\4\377\t\202\4\377\t\201\3\377\b\201\4\377\t\200\3\377\t\202\4\377\n\202\5\377\f\203\a\377\f\203\a\377\16\204\t\377\r\203\b\377\f\204\a\377\24\207\17\377\31\211\24\377\30\211\24\377&\221\"\377\3Y\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\376\376\376\377\270\333\267\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\302\340\301\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\356\366\356\377\234\315\232\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\257\327\256\377\253\324\251\377\233\314\231\377\233\314\231\377\233\314\231\377\232\313\230\377y\273v\377`\256]\377_\255\\\377w\271t\377\233\314\231\377\233\314\231\377\240\316\236\377\326\352\325\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\364\372\364\377\271\333\270\377^\255[\3779\2325\377/\224+\377'\221#\377\37\215\34\377\31\211\25\377\17\205\n\377\r\204\t\377\20\205\v\377\23\207\16\377\34\214\30\377'\220\"\377(\221#\377&\221$\3778\2324\377&\221\"\377\e\213\27\377\31\211\24\377\30\211\24\377\30\211\24\377\27\211\22\377\31\212\24\377\20\205\f\377\t\201\3\377\a\201\2\377\a\201\2\377\b\200\4\377\a\200\2\377\a\200\2\377\a\200\2\377\t\201\3\377\f\203\a\377\24\207\17\377%\220 \377K\244H\377_\255\\\377_\255\\\377_\255\\\377\216\305\214\377#O!\377\355\366\355\377r\267o\377\25\207\20\377\6\200\1\377\6\177\1\377\5\177\1\377\6\177\1\377\5\177\1\377\6\177\1\377\5\200\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\177\1\377\6\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\6\200\1\377\a\200\2\377\b\200\3\377\6\200\1\377\6\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\n\201\6\377\32\213\25\377:\2326\377#\217\36\377\21\206\f\377\f\203\a\377\f\203\a\377\v\202\6\377\t\202\4\377\b\201\2\377\6\200\1\377\a\201\2\377\a\201\3\377\a\200\2\377\a\201\2\377\b\201\3\377\f\203\a\377\t\202\5\377\t\201\4\377\b\202\4\377\6\201\2\377\t\202\4\377\t\201\4\377\v\203\6\377\f\204\a\377\n\202\5\377\t\202\4\377\t\202\3\377\a\200\2\377\a\201\2\377\t\202\4\377\n\202\5\377\b\201\3\377\a\201\2\377\a\201\2\377\b\201\2\377\n\202\5\377\v\203\6\377\r\203\b\377\22\206\r\377\30\211\23\377%\220!\377\4n\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\333\354\332\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\346\362\345\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\304\341\303\377|\274z\377m\264j\377h\262d\377l\263h\377z\273w\377\222\310\221\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377o\266l\377\225\311\223\377\233\314\231\377\233\314\231\377\232\313\230\377r\270p\377_\255\\\377_\255\\\377^\254[\377V\250S\377i\263e\377p\266m\377s\270q\377\177\276|\377\274\335\274\377\231\231\231\377\231\231\231\377\377\377\377\377\361\370\361\377\245\321\243\377\211\302\206\377?\235;\377$\217 \377\36\214\31\377\22\206\16\377\v\203\6\377\a\201\3\377\a\201\2\377\a\200\2\377\6\200\1\377\a\200\1\377\t\202\4\377\22\206\r\377\20\204\v\377\17\204\n\377\26\210\21\377\26\210\22\377\17\204\n\377\21\206\f\377\20\205\v\377\r\204\b\377\t\202\4\377\a\201\2\377\a\200\2\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\a\201\2\377\b\202\4\377\24\210\17\377'\221$\377B\236=\377H\243E\377L\244I\377n\265k\377 S\36\377\275\335\274\377:\2336\377\n\201\4\377\6\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\a\200\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\6\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\200\1\377\17\204\n\3770\225-\377\27\211\22\377\16\204\n\377\f\203\a\377\f\203\a\377\b\202\4\377\a\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\201\2\377\b\201\3\377\a\201\3\377\a\201\2\377\a\201\2\377\6\200\1\377\a\200\2\377\a\201\2\377\a\201\1\377\a\201\2\377\t\202\4\377\t\202\4\377\6\201\2\377\6\200\1\377\6\200\1\377\a\200\2\377\a\201\2\377\a\201\2\377\6\200\1\377\6\201\1\377\a\201\2\377\a\201\2\377\t\202\4\377\t\202\4\377\r\203\b\377\23\207\17\377%\220!\377\4o\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\261\327\257\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\274\335\273\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\335\356\334\377^\255[\377@\235<\377?\235:\377C\240@\377J\242F\377U\251Q\377Z\253W\377\203\300\200\377\233\314\231\377\233\314\231\377\214\304\211\377_\255\\\377\214\304\212\377\233\314\231\377\233\314\231\377\205\301\202\377_\255\\\377_\255\\\377P\246L\377=\2349\377-\224)\377(\221#\377:\2337\377;\2337\377D\237?\377Y\252U\377c\220a\377\220\227\220\377\377\377\377\377\260\326\256\377\233\314\231\377f\262d\377\36\214\31\377\26\210\21\377\v\202\6\377\a\200\2\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\a\200\2\377\b\201\4\377\t\202\4\377\b\200\4\377\a\201\3\377\a\201\3\377\b\201\3\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\2\377\6\201\3\377\v\203\6\377\20\205\v\377+\222'\377\24f\21\377n\265l\377\30\211\23\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\n\202\6\377'\221$\377\25\207\20\377\r\204\t\377\f\203\a\377\v\202\6\377\a\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\a\201\2\377\a\201\3\377\6\200\1\377\a\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\201\2\377\5\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\6\200\2\377\6\200\1\377\6\177\1\377\6\200\1\377\a\200\1\377\a\201\2\377\b\201\3\377\t\202\4\377\v\203\a\377\17\205\n\377\36\214\32\377\4o\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\235\315\233\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\232\313\230\377\210\302\205\377x\273v\377s\270p\377\202\276\177\377\336\356\335\377\375\376\375\377\377\377\377\377\266\331\264\377=\2349\377\"\216\36\377\e\212\26\377\27\211\23\377\25\210\21\377\e\213\27\377%\221!\3775\2301\377?\235;\377u\270q\377\233\314\231\377{\273x\377_\255\\\377\215\305\213\377\233\314\231\377\233\314\231\377l\264i\377_\255\\\377L\243I\377:\2327\377*\222&\377%\220!\377%\220!\3777\2313\377;\2337\377;\2337\377=\2349\377C\212A\377b\217`\377\326\352\325\377\233\314\231\377x\273v\377!\216\35\377\v\202\5\377\6\202\2\377\5\177\1\377\6\177\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\177\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\201\1\377\b|\2\377\"\217\35\377\a\200\2\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\6\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\6\177\1\377\t\201\4\377$\220 \377\25\210\21\377\16\203\n\377\f\203\a\377\t\200\3\377\a\201\1\377\5\200\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\2\377\5\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\a\200\2\377\a\201\2\377\t\202\4\377\r\203\b\377\20\205\f\377\23\207\17\377\4p\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\371\374\371\377\335\356\334\377\314\345\313\377\314\345\313\377\334\355\333\377\371\374\371\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377454\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\217\306\215\377]\255[\377M\243J\377I\243E\377J\243F\377Y\252V\377\225\311\223\377\215\305\212\377{\274z\377#\216\37\377\27\210\21\377\20\206\f\377\n\201\6\377\n\202\5\377\v\203\6\377\r\203\t\377\24\207\17\377!\216\34\3775\2301\377=\2359\377m\265j\377l\266j\377^\254[\377\226\312\224\377\233\314\231\377\231\313\227\377_\255\\\377T\247P\377;\2337\377.\225+\377%\220!\377$\217\37\377\36\214\32\377#\217\36\377&\220\"\377(\221$\377-\224)\377)\205$\377]\217[\377\211\303\207\377i\263e\377&\221\"\377\f\202\6\377\5\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\a\200\2\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\b\201\3\377%\220!\377\32\212\26\377\16\204\v\377\v\202\6\377\b\201\3\377\a\201\2\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\201\2\377\n\202\5\377\20\205\f\377\20\205\f\377\21\206\r\377\4r\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\325\352\324\377\241\317\237\377\233\314\231\377\233\314\231\377\233\314\231\377\222\310\221\377|\274z\377\212\303\207\377\242\320\240\377\243\320\241\377\276\336\275\377\353\365\353\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\371\374\371\377\342\360\341\377\327\352\326\377\336\356\335\377\365\372\365\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\246\322\244\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\212\304\210\377B\237=\377)\221$\377\35\214\30\377\27\211\22\377\27\212\22\377\31\211\24\377\"\216\35\3774\2301\377\31\212\24\377\r\203\a\377\f\203\a\377\t\202\4\377\b\201\3\377\a\202\3\377\a\201\2\377\b\200\2\377\t\200\3\377\v\204\6\377\16\203\b\377\23\206\16\377 \216\34\377%\217 \377)\223%\377?\236;\377I\241F\377J\243E\3774\2271\377*\222%\377&\221\"\377\31\211\24\377\24\210\17\377\f\204\a\377\v\202\6\377\17\204\n\377\22\206\r\377\26\210\21\377\35\214\31\377\32\203\26\377@\212<\377W\251S\377(\222$\377\r\204\a\377\6\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\b\201\4\377%\220 \377#\217 \377\23\207\17\377\v\203\6\377\a\202\3\377\a\201\2\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\2\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\a\200\2\377\6\200\1\377\6\200\1\377\6\200\1\377\a\200\2\377\t\202\4\377\r\203\b\377\20\205\f\377\20\205\f\377\21\206\r\377\4t\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\316\346\315\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\206\301\203\377a\257^\377_\255\\\377_\255\\\377|\274z\377\233\314\231\377\233\314\231\377\233\314\231\377\316\346\315\377\353\365\353\377\304\340\303\377\224\310\222\377u\270r\377~\275{\377\224\311\222\377\233\314\231\377\233\314\231\377\273\335\272\377\365\372\365\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\305\342\304\377\233\314\231\377\233\314\231\377\207\302\205\377\\\255Z\377\e\212\26\377\r\204\t\377\n\202\5\377\n\202\5\377\t\202\4\377\b\201\3\377\t\201\5\377\17\205\n\377\n\201\5\377\a\177\2\377\a\200\2\377\a\201\3\377\a\200\2\377\6\200\1\377\6\177\1\377\6\200\1\377\a\177\1\377\6\200\1\377\6\200\1\377\a\201\2\377\t\202\4\377\n\202\5\377\r\203\b\377\20\205\v\377\16\204\n\377\20\205\n\377\27\210\22\377\16\205\n\377\t\202\4\377\b\202\3\377\a\201\2\377\6\200\1\377\b\201\3\377\t\202\4\377\f\203\a\377\r\203\b\377\20\205\v\377\21\205\f\377\22\202\r\377(\205%\377(\221%\377\f\203\a\377\6\177\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\6\200\1\377\5\200\1\377\6\177\1\377\t\202\5\377%\220!\377%\220!\377!\217\35\377\16\205\n\377\b\201\4\377\a\201\2\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\a\200\1\377\6\200\1\377\a\200\2\377\6\200\1\377\5\177\1\377\6\200\1\377\a\201\2\377\b\201\3\377\6\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\a\177\2\377\6\200\1\377\a\200\2\377\a\200\2\377\b\201\2\377\6\201\1\377\a\201\3\377\a\201\2\377\a\201\2\377\t\202\4\377\20\205\v\377\20\205\f\377\20\205\f\377\22\206\16\377\4t\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\353\365\353\377\233\315\231\377\203\300\200\377l\264i\377a\256^\377V\251S\377B\236=\377M\244J\377]\254Z\377_\255\\\377_\255\\\377\216\305\214\377\233\314\231\377\231\313\227\377t\270q\377\201\277\177\377n\265k\377_\255\\\377_\255\\\377Z\252W\377T\247P\377h\262e\377\204\300\201\377\222\310\221\377\246\321\244\377\364\371\364\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\364\371\364\377\235\315\233\377[\254X\377:\2337\377\22\207\r\377\a\200\2\377\6\177\1\377\5\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\2\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\177\1\377\6\200\1\377\5\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\t\202\4\377\v\203\6\377\r\203\b\377\20\205\f\377\17\201\n\377\26\202\21\377\21\205\r\377\6\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\r\205\b\377*\223&\377%\220!\377%\220!\377\35\212\31\377\17\204\n\377\t\201\4\377\b\200\3\377\a\201\2\377\b\201\3\377\t\202\5\377\b\200\3\377\n\202\a\377\t\202\4\377\6\200\2\377\5\200\1\377\a\200\2\377\t\202\4\377\n\202\6\377\v\202\4\377\6\200\1\377\6\200\1\377\a\200\2\377\b\201\2\377\a\201\2\377\6\200\1\377\6\200\1\377\a\201\2\377\n\202\5\377\v\200\5\377\a\201\2\377\b\201\3\377\t\201\6\377\v\202\5\377\b\202\3\377\b\201\3\377\f\203\b\377\20\205\f\377\20\205\f\377\20\205\f\377\26\210\21\377\4p\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\271\333\270\377n\265k\377_\255\\\377_\255\\\377_\255\\\377A\236=\377;\2337\377;\2337\377@\235<\377Y\252V\377_\255\\\377s\270p\377\232\313\230\377n\265k\377_\255\\\377P\246L\377]\254Y\377]\255Z\377H\242E\377;\2337\377;\2337\377;\2337\377L\244I\377_\255\\\377s\267q\377\260\326\257\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\373\375\373\377\346\362\345\377\336\356\335\377\346\363\346\377\373\375\373\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\376\377\376\377z\273y\3773\227/\377\f\204\b\377\6\177\1\377\6\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\177\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\b\201\3\377\v\203\a\377\r\201\t\377\f\202\a\377\6\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\177\1\377\31\212\25\377Y\252U\377&\221\"\377%\220!\377\"\217\36\377\30\211\24\377\21\206\r\377\r\203\t\377\17\205\t\377\22\206\16\377\26\210\22\377\23\206\16\377\24\210\17\377\23\206\17\377\n\202\5\377\b\200\2\377\t\202\4\377\t\202\5\377\f\203\a\377\f\203\b\377\n\202\6\377\f\203\a\377\17\205\n\377\20\205\f\377\16\203\t\377\r\203\b\377\16\204\t\377\21\206\r\377\21\205\f\377\21\206\r\377\v\202\5\377\r\203\b\377\e\213\27\377\27\210\23\377\16\205\t\377\n\202\5\377\17\205\v\377\20\205\f\377\20\205\f\377\23\206\16\377!\216\35\377\4e\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\376\376\376\377v\271s\377_\255\\\377_\255\\\377_\255\\\377W\251T\377;\2337\377;\2337\377;\2337\377;\2337\377@\236<\377\\\253Y\377d\260a\377\201\277\177\377]\254Z\377U\250R\3778\2313\377L\244I\377B\236>\377:\2325\377:\2337\377;\2337\377;\2337\377<\2337\377X\252U\377_\255\\\377i\262e\377\341\357\341\377\377\377\377\377\373\375\373\377\307\343\306\377\237\316\235\377\214\304\211\377s\270q\377f\261c\377f\260c\377\212\303\207\377\310\343\307\377\365\372\365\377\377\377\377\377444\377\277\336\275\377K\242G\377\23\206\16\377\6\177\1\377\5\200\1\377\5\200\1\377\6\177\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\6\177\1\377\6\177\1\377\5\177\1\377\6\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\2\377\t\177\5\377\b\200\4\377\6\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\177\1\377\6\177\1\377\a\201\2\3770\226+\377\247\322\245\377n\265l\3778\2325\377.\224)\377!\216\36\377!\216\35\377'\221#\377/\225*\377(\221$\377&\221#\377%\220 \377#\216\37\377\34\213\30\377\24\207\17\377\20\206\v\377\f\204\a\377\r\203\b\377\20\205\v\377\25\210\21\377\23\207\16\377\27\211\23\377\34\213\27\377$\220 \3771\225-\377\36\215\32\377.\224*\377:\2336\377+\223'\377-\224(\377-\223*\377\37\215\e\377%\220!\377%\220!\377'\221$\377\"\216\36\377\32\212\25\377\25\210\21\377\32\212\25\377*\222&\377=\2339\377\3C\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\366\373\366\377\264\327\262\377F\241C\377B\236>\377E\240B\377O\246L\377O\246L\3776\2302\3770\225,\377-\224)\377-\224)\3771\227.\377H\242E\377[\253X\377M\245I\377:\2326\377.\224+\377\36\214\32\377\31\211\24\377\32\212\25\377\"\216\36\377%\220!\377*\222%\3771\227.\377:\2337\377F\241D\377Z\252W\377^\255[\377\226\312\225\377\372\375\372\377\257\327\255\377\210\303\205\377]\254Z\377G\241C\377I\242F\377R\247O\377^\255[\377_\255\\\377m\264j\377\237\316\235\377\344\361\343\377444\377r\267p\377\34\214\30\377\6\201\4\377\5\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\6\177\1\377\5\200\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\177\1\377\a\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\5\177\1\377\6\177\1\377\f\203\6\377G\241C\377\375\376\375\377\344\361\343\377\302\340\301\377\227\312\226\377\204\300\202\377h\262d\377^\254[\377S\247P\377P\245L\377J\242G\377)\221$\377&\220!\377+\223&\377C\236?\377C\237?\3774\2300\377%\220!\377%\220!\377%\220!\377\34\213\30\377\30\211\24\377$\217 \3779\2325\377;\2337\3779\2325\377Z\253W\377_\255\\\377]\254Z\377Q\247N\377I\241F\377H\243E\377?\235:\377<\2337\377<\2348\377X\252U\377f\261c\377c\260`\377e\260b\377c\257_\377\212\303\210\377\1\37\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\335\356\334\377\234\314\232\377_\255\\\377.\224)\377\"\216\36\377 \216\34\377\35\214\31\377\26\207\21\377\24\207\17\377\30\211\24\377\30\211\24\377\32\211\25\377\e\212\30\377\e\213\25\377!\215\35\377\37\214\32\377\26\210\21\377\17\204\t\377\t\202\4\377\t\202\4\377\f\203\a\377\16\205\n\377\27\210\22\377\35\214\31\377\30\211\23\377\26\210\22\377!\216\34\3773\227/\3773\227/\377D\237@\377v\272t\377O\245L\377?\235<\3779\2325\377;\2337\377;\2327\3776\2301\3774\2270\377H\241C\377Q\246N\377t\270q\377\237\316\235\377090\377:\2337\377\v\201\6\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\6\177\1\377\a\201\2\377\17\204\n\377j\263h\377\375\376\375\377\377\377\377\377\377\377\377\377\377\377\377\377\373\375\373\377\356\367\356\377\303\340\302\377\240\317\236\377\232\314\230\377\221\307\217\377i\263f\377c\257_\377\205\300\202\377\233\314\231\377t\270q\377_\255\\\377H\242D\3771\226.\3770\225,\377.\226+\377$\217 \3778\2324\377;\2337\377@\236<\377{\273x\377\201\277\177\377`\256]\377_\255\\\377_\255\\\377j\263g\377\231\312\227\377y\273v\377c\257`\377\211\302\206\377\233\314\231\377\233\314\231\377\233\314\231\377\240\316\236\377\326\352\325\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\341\360\340\377\215\306\214\377f\261b\3775\2301\377\36\214\32\377\27\211\23\377\21\205\r\377\f\203\a\377\v\203\6\377\n\202\5\377\f\203\a\377\f\203\b\377\v\203\6\377\n\202\5\377\b\201\4\377\n\202\4\377\a\200\2\377\6\201\3\377\6\200\2\377\a\201\1\377\a\200\1\377\6\200\1\377\a\201\2\377\b\201\3\377\n\203\4\377\f\202\a\377\n\202\5\377\t\202\5\377\n\203\5\377\n\202\5\377\f\204\t\377\r\204\t\377\26\211\22\377\23\206\16\377\23\207\16\377\26\210\21\377\26\210\21\377\27\211\23\377\35\214\31\377\"\216\36\3777\2313\377=\2349\377x\273v\377&K%\377\35\213\27\377\6\200\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\f\203\a\377\26\211\22\377\221\307\217\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\374\375\374\377\352\365\352\377\345\361\344\377\342\360\342\377\242\320\240\377\233\314\231\377\233\314\231\377\230\313\226\377m\264j\377_\255\\\377Y\252W\377K\243G\377C\237?\377L\244H\377F\241B\377Q\246M\377x\271u\377\233\314\231\377\233\314\231\377\220\307\216\377u\271s\377q\266m\377\232\314\230\377\254\325\252\377\306\342\305\377\347\362\347\377\316\346\315\377\276\336\275\377\277\336\276\377\324\351\323\377\367\373\367\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\346\362\346\377\306\342\305\377\267\332\266\377\270\333\267\377\313\344\312\377\356\366\356\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\230\231\230\377\230\312\226\377a\256^\377N\245J\377&\221\"\377\30\213\24\377\n\202\4\377\a\200\2\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\200\2\377\a\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\201\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\200\2\377\a\201\2\377\t\202\4\377\v\202\a\377\r\204\a\377\r\204\t\377\21\205\r\377!\216\34\377:\2336\377\27b\24\377\16\202\t\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\5\177\1\377\6\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\23\207\17\3770\225+\377\257\327\256\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\352\365\352\377\245\321\243\377\233\314\231\377\233\314\231\377\231\313\227\377~\275{\377d\261a\377_\255\\\377z\273w\377\232\313\230\377\240\317\236\377\236\315\234\377\234\314\232\377\233\314\231\377\233\314\231\377\240\316\236\377\305\342\304\377\371\374\371\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\371\374\371\377\270\333\267\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\234\315\232\377\310\343\307\377\375\376\375\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\373\375\373\377\344\361\343\377\330\353\327\377\334\355\333\377\362\371\362\377\377\377\377\377\231\231\231\377\207\226\206\377i\262e\377[\253X\3771\226-\377\25\210\21\377\n\202\5\377\a\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\177\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\177\1\377\6\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\a\200\2\377\6\177\1\377\6\200\1\377\a\201\2\377\b\200\4\377\v\202\5\377\25\207\21\377\ft\b\377\a\177\3\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\a\200\2\377\b\201\3\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\6\177\1\377\5\200\1\377\6\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\177\1\377\a|\2\377*\222%\377H\241C\377\343\360\342\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\371\374\371\377\314\345\313\377\257\326\255\377\243\320\241\377\247\322\245\377\273\334\272\377\325\352\325\377\353\365\353\377\357\367\357\377\377\377\377\377\377\377\377\377\371\374\371\377\354\365\354\377\356\366\356\377\375\376\375\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\375\376\375\377\264\331\263\377\233\314\231\377\233\314\231\377\231\313\227\377\231\313\227\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\307\343\306\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\376\377\376\377\316\346\315\377\240\316\236\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\265\331\264\377\220\230\220\377o\222m\377_\255\\\377B\237>\377\36\215\32\377\16\204\t\377\a\200\1\377\6\200\1\377\5\200\1\377\6\177\1\377\6\177\1\377\5\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\5\200\1\377\6\177\1\377\5\177\1\377\6\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\a\201\2\377\a~\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\b\202\4\377\t\202\4\377\b\201\3\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\200\1\377\5\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\t\201\3\377\bz\3\3776\2302\377\212\303\207\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\326\352\325\377\227\312\225\377{\274y\377f\261c\377_\255\\\377_\255\\\377g\262d\377|\274y\377\230\312\226\377\233\314\231\377\233\314\231\377\352\365\352\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\365\372\365\377\336\356\335\377\327\352\326\377\341\357\340\377\341\357\341\377\237\316\235\377\203\277\200\377\212\303\210\377\224\310\222\377\206\301\203\377\177\276}\377\203\300\200\377\220\307\216\377b\220`\377\\\217Z\377\\\254Y\377(\223$\377\r\203\b\377\6\177\1\377\5\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\5\200\1\377\6\177\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\t\201\4\377\r\204\b\377\t\202\4\377\6\200\1\377\5\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\177\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\200\1\377\6\177\1\377\5\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\v\203\6\377\tx\5\377F\241C\377\361\370\361\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\244\320\242\377g\262d\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377c\257_\377}\275z\377\177\276|\377\244\321\243\377\363\371\363\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\366\373\366\377\274\335\273\377\233\314\231\377\233\314\231\377\214\303\211\377i\263f\377P\246M\377K\243G\377]\255Z\377K\242G\377@\236<\377S\247O\377_\255\\\377_\255\\\377_\255\\\377D\213A\377D\212A\377J\243G\377\20\206\v\377\5\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\v\203\6\377\r\203\b\377\b\201\3\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\177\2\377\f\204\6\377\vx\a\377v\271s\377\310\343\307\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\373\375\373\377\370\373\370\377\371\374\371\377\367\373\367\377g\262d\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377_\255\\\377[\253X\377?\235<\377,\223'\377%\220 \377*\222%\377-\224)\377K\244H\377k\264h\377\270\332\266\377\340\357\337\377\347\363\347\377\250\322\246\377\233\314\231\377\233\314\231\377\201\276~\377T\250P\377Q\246M\3779\2325\377:\2337\3770\226-\377:\2337\377;\2337\377;\2337\377N\245J\377_\255\\\377_\255\\\377:\2117\3773\2070\377 \215\34\377\a\201\3\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\24\207\17\377\30\210\23\377\t\202\5\377\t\201\3\377\5\201\1\377\6\177\1\377\6\177\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\177\1\377\5\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\177\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\5\177\1\377\6\177\1\377\6\200\1\377\6\177\1\377\5\177\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\5\177\1\377\6\200\1\377\a\200\2\377\t\202\3\377\31\211\24\377\rs\b\377C\237?\377\221\307\216\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\331\354\331\377\223\311\220\377n\266l\377g\262d\377o\264l\377^\253[\3773\227/\3773\227.\377,\224(\377,\223(\3774\2300\377<\2348\377$\220 \377\35\214\31\377\26\210\21\377\21\206\r\377\23\207\16\377\23\210\20\377\25\210\21\377\26\211\23\377\34\213\30\377G\241E\377`\257]\377_\255\\\377m\264j\377K\243G\377+\223&\3770\225,\3774\2270\377%\220!\377\34\214\30\377\31\212\24\377\"\216\35\377(\222%\377,\224(\3777\2313\377W\251T\377_\255\\\377:\2117\3770\210-\377\r\205\t\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\6\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\26\210\21\377\26\210\21\377\f\203\a\377\v\203\6\377\a\201\3\377\6\200\2\377\6\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\201\2\377\t\202\4\377\r\204\b\377\30\211\23\377\vv\a\377:\2325\377^\255[\377\352\364\352\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\347\362\347\377y\272u\377;\2337\377,\223(\377$\220 \377\37\214\32\377\26\210\21\377\r\203\b\377\b\201\3\377\t\202\4\377\f\203\a\377\17\205\n\377\21\205\f\377\v\203\6\377\v\202\6\377\n\201\4\377\n\201\5\377\n\203\5\377\v\202\6\377\v\202\6\377\f\203\a\377\f\203\6\377\v\203\5\377\v\203\6\377\f\203\a\377\17\206\n\377\16\203\t\377\21\205\f\377\25\207\20\377\30\211\23\377\32\213\26\377\24\206\17\377\16\204\n\377\r\203\b\377\r\204\t\377\30\211\23\377\30\211\24\377\31\212\24\377,\224(\377\\\254Y\377:\2117\377&\205!\377\t\202\5\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\6\200\1\377\31\211\24\377\35\214\31\377\16\204\t\377\n\202\5\377\a\201\2\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\5\177\1\377\6\177\1\377\5\177\1\377\6\200\1\377\5\177\1\377\6\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\a\200\3\377\t\202\5\377\20\205\v\377\25\210\20\377\vv\6\3776\2302\377X\252U\377\274\335\273\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\334\355\333\377k\264h\3779\2316\377)\222$\377$\220 \377\32\213\26\377\20\206\f\377\v\203\a\377\b\200\2\377\6\201\1\377\a\201\2\377\b\201\4\377\b\202\4\377\a\201\2\377\a\200\2\377\6\200\2\377\a\200\2\377\6\201\2\377\a\200\2\377\6\200\1\377\t\202\5\377\t\201\4\377\a\202\2\377\b\201\3\377\a\202\1\377\6\200\1\377\6\200\1\377\a\201\2\377\b\201\3\377\n\202\5\377\f\203\a\377\t\202\5\377\a\201\2\377\a\200\2\377\t\201\4\377\n\201\5\377\22\206\r\377\30\211\24\377\27\210\23\377\27\211\22\3770\225,\3777\2104\377\35\204\30\377\6\200\2\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\30\212\23\377(\222$\377\36\215\32\377\16\204\b\377\t\201\3\377\b\201\2\377\a\177\3\377\b\201\2\377\a\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\5\177\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\177\2\377\a\201\2\377\b\201\3\377\f\203\a\377\20\205\f\377\26\210\21\377\nw\6\3775\2301\377^\255[\377\245\321\243\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\353\365\353\377\205\301\203\377B\237>\377-\224)\377%\220!\377\34\214\30\377\21\206\17\377\f\203\a\377\n\201\4\377\6\200\1\377\a\200\2\377\6\200\2\377\6\200\1\377\6\200\2\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\201\1\377\a\200\2\377\6\177\2\377\a\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\201\2\377\6\201\2\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\b\201\2\377\f\203\a\377\20\205\v\377\20\205\f\377\30\211\23\377\e\203\26\377\24\201\17\377\6\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\177\1\377\6\177\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\32\211\24\377*\222%\377 \215\e\377\r\204\b\377\t\202\4\377\a\201\2\377\a\201\2\377\a\201\2\377\6\200\1\377\6\200\2\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\5\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\200\1\377\a\200\2\377\6\200\1\377\6\200\1\377\a\200\2\377\a\201\2\377\t\202\4\377\17\204\n\377\21\205\f\377\30\211\23\377\nw\6\377<\2337\377x\272v\377\233\314\231\377\375\376\375\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\271\333\270\377b\257_\3779\2325\377#\217 \377\37\215\e\377\24\207\20\377\r\203\b\377\t\202\4\377\6\201\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\201\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\5\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\201\2\377\n\202\5\377\17\205\n\377\30\211\24\377\23\202\17\377\16\201\t\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\27\211\24\377)\222$\377\30\212\24\377\20\205\v\377\n\202\5\377\b\201\3\377\a\201\2\377\a\201\2\377\a\200\2\377\b\201\2\377\6\177\1\377\6\200\2\377\a\200\1\377\a\201\2\377\6\200\1\377\6\200\1\377\a\200\2\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\t\201\3\377\b\200\3\377\6\202\3\377\t\201\4\377\b\201\2\377\6\200\1\377\6\200\1\377\a\200\2\377\t\201\4\377\n\202\6\377\20\205\v\377\24\207\17\377\30\211\24\377\vv\a\377T\250P\377\226\312\224\377\237\316\235\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\375\376\375\377\227\312\225\377M\244I\377&\220 \377\30\211\24\377\25\207\20\377\f\204\b\377\b\201\3\377\a\200\2\377\a\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\5\200\1\377\6\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\200\2\377\b\201\3\377\v\202\a\377\30\211\24\377\22\202\16\377\17\201\n\377\6\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\6\200\1\377 \214\e\377'\221#\377\31\211\24\377\23\206\16\377\17\204\n\377\t\202\5\377\a\201\3\377\b\201\3\377\b\202\4\377\b\201\4\377\n\202\4\377\16\203\t\377\16\205\v\377\t\201\3\377\a\201\2\377\b\201\2\377\t\202\3\377\a\200\2\377\a\201\2\377\6\200\2\377\6\200\1\377\a\201\2\377\a\200\2\377\6\200\1\377\a\177\1\377\a\201\2\377\b\201\4\377\n\202\4\377\v\203\6\377\20\205\v\377\r\202\b\377\f\203\b\377\v\203\6\377\b\202\3\377\6\200\2\377\b\201\3\377\t\202\4\377\r\203\b\377\22\206\r\377\30\211\23\377\e\213\26\377\20n\f\377\217\306\215\377\233\314\231\377\266\332\265\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\364\372\364\377z\273w\3777\2301\377 \216\34\377\27\210\23\377\17\204\v\377\t\201\4\377\6\201\2\377\a\201\1\377\6\177\1\377\6\200\1\377\6\177\1\377\5\200\1\377\6\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\177\1\377\6\177\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\201\2\377\n\203\5\377\24\207\17\377\30\203\24\377\17\203\v\377\6\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\177\1\377\a\200\2\377.\225)\377:\2337\377+\223(\377\32\213\26\377\22\206\f\377\16\204\t\377\t\203\5\377\b\201\3\377\a\201\3\377\b\201\4\377\t\201\6\377\t\203\5\377\16\203\n\377\t\202\5\377\n\202\6\377\t\201\4\377\a\200\2\377\b\201\3\377\t\201\3\377\t\202\5\377\t\202\5\377\t\201\4\377\t\202\4\377\t\201\5\377\n\201\5\377\17\205\n\377\22\207\16\377\23\207\16\377\26\211\22\377\26\211\23\377\23\207\17\377\17\206\v\377\v\202\6\377\n\202\4\377\t\201\4\377\n\203\5\377\v\203\a\377\22\207\16\377\25\210\21\377\30\212\24\377C\240?\377 T\36\377\233\314\231\377\233\314\231\377\340\357\337\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\347\363\347\377[\254Y\3779\2325\377\34\213\26\377\20\205\f\377\v\202\6\377\b\200\3\377\6\200\1\377\6\200\1\377\5\177\1\377\5\200\1\377\6\200\1\377\5\177\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\6\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\5\177\1\377\5\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\5\200\1\377\6\200\1\377\a\201\2\377\v\203\6\377\20\205\v\377\31\203\26\377\25\201\20\377\a\200\2\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\6\177\1\377\5\177\1\377\6\200\1\377\b\201\3\377=\235:\377D\237?\377\"\216\35\377\26\210\22\377\16\204\t\377\b\201\4\377\a\200\2\377\6\201\1\377\6\200\1\377\a\200\3\377\a\200\1\377\a\200\2\377\a\201\3\377\n\202\5\377\r\203\b\377\17\205\n\377\17\205\n\377\f\203\a\377\n\203\6\377\f\203\a\377\v\203\5\377\n\202\5\377\f\204\a\377\r\204\t\377\v\203\6\377\f\203\a\377\21\206\f\377\26\210\23\377\22\206\16\377\21\205\v\377\25\210\21\377\23\206\16\377\20\205\v\377\16\203\b\377\f\202\b\377\16\203\t\377\20\205\f\377\17\205\v\377\21\205\f\377&\220!\377N\245J\377\35X\32\377\233\314\231\377\275\335\274\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\277\336\276\377j\263g\377.\226*\377\27\211\22\377\f\204\6\377\a\201\3\377\6\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\200\1\377\6\177\1\377\6\177\1\377\5\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\t\201\4\377\f\203\a\377\r\204\a\377\31\203\24\377,\206(\377\t\201\4\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\177\1\377\f\203\b\3779\2325\377(\222$\377\"\216\36\377\e\213\26\377\f\203\b\377\t\201\3\377\6\177\1\377\6\200\1\377\6\200\2\377\6\201\1\377\6\200\1\377\6\200\1\377\a\200\1\377\b\201\3\377\r\203\b\377\16\205\t\377\t\202\4\377\t\202\4\377\v\203\6\377\n\202\6\377\t\202\4\377\b\200\3\377\b\201\3\377\t\202\4\377\n\203\a\377\n\202\4\377\a\201\3\377\6\200\2\377\6\201\3\377\n\203\5\377\16\203\t\377\20\205\v\377\22\206\r\377\24\210\21\377\21\207\r\377\r\203\b\377\f\203\a\377\20\205\v\377\27\211\22\377\30\211\24\377\e\213\27\377\ft\b\377\206\302\204\377\374\375\374\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\367\373\367\377\324\351\323\377\303\341\302\377\303\341\302\377\316\346\315\377\361\370\361\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\243\320\241\377f\262d\377 \215\e\377\20\205\f\377\6\201\2\377\6\200\1\377\5\177\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\200\1\377\5\177\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\6\200\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\6\200\1\377\5\177\1\377\6\177\1\377\6\177\1\377\5\200\1\377\6\200\1\377\5\200\1\377\a\200\2\377\v\202\6\377\e\204\30\3771\206.\377\n\202\4\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\22\205\16\377%\217 \377\e\213\26\377\26\210\21\377\n\203\6\377\a\200\2\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\6\177\1\377\a\177\2\377\5\177\1\377\6\200\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\a\200\2\377\a\200\2\377\b\201\3\377\t\202\4\377\v\202\5\377\r\204\b\377\16\205\n\377\25\210\20\377\35\214\30\377\vv\a\377>\235:\377\275\335\273\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\325\352\324\377\240\316\236\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\235\315\233\377\304\340\303\377\345\362\345\377\336\356\335\377\345\361\344\377\372\374\372\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\367\373\367\377\362\371\362\377\373\375\373\377\373\375\373\377\355\366\355\377\355\366\355\377\373\375\373\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377343\377\226\312\224\377>\2349\377\26\210\21\377\b\202\5\377\5\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\5\200\1\377\b\177\5\377\20\201\r\377\a\200\2\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\23\207\20\377\e\213\27\377\21\205\f\377\t\202\4\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\5\177\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\5\177\1\377\5\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\200\2\377\t\202\4\377\r\203\b\377\22\205\f\377\by\4\377.\223)\377Y\253U\377\356\367\356\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\317\347\316\377\223\310\221\377\217\306\215\377\226\312\224\377\233\314\231\377\233\314\231\377\232\313\230\377z\272w\377S\247P\377[\253X\377u\271s\377\203\300\201\377\223\310\221\377\310\343\307\377\361\370\361\377\346\362\346\377\321\350\320\377\305\342\304\377\264\331\263\377\257\326\255\377\236\316\234\377\207\301\205\377\210\302\205\377\210\302\206\377k\264i\377l\264j\377\213\304\211\377\233\314\231\377\236\315\234\377\274\335\273\377\360\370\360\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377u\271r\377\35\213\31\377\v\204\a\377\6\200\1\377\6\200\1\377\5\200\1\377\6\177\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\5\177\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\a\200\2\377\6\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\t\202\5\377\34\213\27\377\f\202\a\377\a\200\2\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\177\1\377\6\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\5\177\1\377\6\200\1\377\6\177\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\a\200\2\377\b\201\3\377\r\203\b\377\a|\2\377\31\211\24\377:\2336\377\276\335\275\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\274\274\274\377\267\267\267\377\350\350\350\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\375\376\375\377\301\337\301\377e\260b\377_\255\\\377_\254\\\377S\247P\377M\245J\377R\247N\3773\227.\377%\220!\377&\221\"\377'\220\"\377.\225+\3770\225,\377+\223'\3775\2311\377B\237?\377]\254Z\377T\250R\377B\237>\377B\237>\3774\2301\3773\226/\377>\235:\3778\2315\377*\223%\3776\2301\3777\2314\377>\235;\377o\266k\377\222\310\221\377y\273v\377m\264i\377\222\310\220\377\251\323\247\377\300\340\277\377\324\351\324\377\324\351\323\377\322\350\321\377\340\357\337\377\372\374\372\377444\377P\245M\377\16\203\t\377\6\200\1\377\6\177\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\f\204\a\377\t\202\5\377\a\200\2\377\6\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\5\177\1\377\6\177\1\377\6\177\1\377\6\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\200\2\377\t\202\4\377\a|\2\377\22\206\16\377&\220!\377\223\311\221\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\325\325\325\377\0\0\0\377\0\0\0\377\253\253\253\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\373\375\373\377\266\332\265\377r\270p\377Q\246N\377N\245K\3778\2314\377.\224*\377&\220!\377\26\210\21\377\20\205\v\377\r\204\t\377\v\203\a\377\v\203\6\377\21\206\f\377\24\207\17\377\24\207\20\377\20\204\f\377\22\207\17\377\e\213\27\377'\220#\377\"\216\35\377\31\211\24\377\31\212\25\377\26\210\21\377\25\210\20\377\32\212\25\377\34\213\30\377\31\211\24\377 \215\34\377\37\215\32\377\32\212\25\377(\221$\377I\242E\377[\253X\377d\260a\377\207\302\204\377h\262d\377Z\253W\377g\261d\377t\270r\377t\270q\377\202\277\200\377)F(\3776\2272\377\a\200\2\377\6\200\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\b\201\3\377\n\202\5\377\a\201\2\377\6\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\177\1\377\5\200\1\377\5\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\b\201\3\377\6}\1\377\21\205\f\377\"\216\36\377t\270r\377\375\376\375\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377yyy\377\0\0\0\377\0\0\0\377\253\253\253\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\272\334\271\377t\270q\377A\236=\3771\224-\377\35\214\31\377\24\207\20\377\21\205\f\377\17\203\n\377\n\202\5\377\t\202\5\377\t\202\5\377\t\202\4\377\t\202\4\377\a\201\2\377\n\202\5\377\n\202\4\377\t\201\4\377\b\201\3\377\6\201\1\377\t\201\4\377\16\205\t\377\r\204\b\377\v\202\6\377\f\203\a\377\n\203\5\377\b\201\2\377\r\203\b\377\17\204\v\377\20\205\v\377\26\210\22\377\17\204\n\377\17\205\n\377\26\210\21\377\37\214\e\377&\221\"\377*\221%\377*\223'\377#\216\36\377&\221\"\377C\237?\377]\254Y\377_\255\\\377\26e\23\377\23\207\16\377\6\200\2\377\5\177\1\377\6\177\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\200\1\377\a\200\1\377\n\202\5\377\6\200\2\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\177\1\377\6\200\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\5\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\2\377\6~\1\377\17\205\v\377(\221#\377j\262f\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\275\275\275\377\6\6\6\377\0\0\0\377\0\0\0\377\253\253\253\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\345\362\345\377g\262d\377\\\253Y\377.\225)\377 \216\34\377\24\210\20\377\r\204\b\377\f\203\a\377\b\200\2\377\6\200\1\377\6\177\1\377\a\200\1\377\a\200\2\377\6\177\1\377\6\177\1\377\a\200\2\377\a\201\3\377\a\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\200\2\377\b\200\2\377\6\200\1\377\a\201\2\377\a\201\2\377\6\200\1\377\6\200\1\377\t\202\4\377\b\202\4\377\t\202\3\377\b\201\3\377\a\200\2\377\b\201\4\377\t\202\4\377\t\201\4\377\t\201\4\377\f\203\b\377\20\205\v\377\24\207\17\377\27\211\23\3773\227.\377L\244I\377\26e\23\377\n\201\5\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\n\202\5\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\6\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\5\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6~\1\377\20\205\v\377=\2359\377q\267n\377\375\376\375\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\356\356\356\377\307\307\307\377\235\235\235\377LLL\377\5\5\5\377\0\0\0\377\0\0\0\377\0\0\0\377\253\253\253\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\226\312\224\377_\255\\\377E\240B\377+\223&\377\25\210\22\377\f\203\t\377\f\203\a\377\b\201\3\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\2\377\6\200\1\377\6\200\1\377\a\177\2\377\a\200\2\377\6\200\2\377\5\200\1\377\6\200\1\377\a\201\2\377\t\202\4\377\f\203\a\377\17\204\n\377\27\211\22\3772\227.\377\21k\16\377\b\201\4\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\n\202\5\377\a\200\1\377\6\200\1\377\5\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\6\177\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\31\212\24\377[\254X\377\215\305\212\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\20\20\20\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\217\230\217\377v\271t\377V\251S\377;\2337\377&\221\"\377\21\206\r\377\f\203\a\377\v\203\6\377\a\202\2\377\6\177\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\5\177\1\377\a\200\2\377\a\201\3\377\n\202\5\377\16\204\n\377\25\207\20\377\16q\n\377\b\202\2\377\6\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\177\1\377\a\201\2\377\f\204\b\377\a\201\2\377\6\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\5\177\1\377\6\177\1\377\5\200\1\377\6\177\1\377\6\177\1\377\5\177\1\377\5\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\200\1\377\6}\1\377B\237>\377y\273v\377\261\327\257\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\20\20\20\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\177\225~\377y\273v\377J\243G\3776\2302\377$\220 \377\22\206\r\377\f\203\a\377\t\202\5\377\6\201\2\377\6\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\a\200\2\377\t\202\4\377\f\203\a\377\20\205\f\377\ty\5\377\6\200\2\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\t\200\4\377\22\206\16\377\r\203\b\377\a\200\2\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\5\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\200\1\377\t\202\5\377\nx\5\377|\274y\377\233\314\231\377\330\353\327\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\332\332\332\377\330\330\330\377\330\330\330\377\330\330\330\377\330\330\330\377FFF\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377z\224y\377\205\301\202\377F\241C\377/\225*\377%\220!\377\31\212\24\377\f\204\b\377\b\202\4\377\a\201\2\377\6\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\177\1\377\6\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\177\1\377\6\177\1\377\6\177\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\200\2\377\n\203\6\377\20\205\v\377\bz\4\377\6\200\1\377\6\177\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\20\205\n\377\e\212\26\377\22\206\16\377\16\204\n\377\t\202\4\377\a\200\2\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\a\200\2\377\6\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\b\201\3\377\n\202\5\377\v\203\6\377\25\207\20\377\e\\\31\377\233\314\231\377\264\331\263\377\376\377\376\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377~\224}\377\230\312\226\377K\243H\377+\223&\377%\220!\377\37\215\e\377\21\206\r\377\n\202\4\377\a\201\1\377\a\201\1\377\6\177\1\377\5\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\5\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\2\377\t\202\4\377\16\204\n\377\b{\4\377\a\177\2\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377.\225*\377D\240B\377\36\215\31\377\27\211\22\377\22\210\17\377\r\204\b\377\t\201\4\377\t\202\4\377\f\203\b\377\17\205\n\377\f\203\a\377\v\203\6\377\f\203\a\377\n\202\5\377\t\202\4\377\17\203\n\377\22\206\16\377\25\207\20\377\f\203\a\377\n\202\5\377\v\202\6\377\v\202\6\377\f\203\a\377\r\204\t\377\v\203\6\377\a\201\2\377\a\201\3\377\b\201\3\377\n\203\5\377\f\203\a\377\a\200\2\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\2\377\t\201\4\377\v\203\6\377\r\203\b\377\r\204\t\377\31\211\24\377d\260a\377!R\37\377\266\332\265\377\370\373\370\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\214\227\214\377\233\314\231\377o\266l\377+\222&\377%\220!\377!\216\35\377\16\205\n\377\b\201\3\377\a\177\2\377\5\200\2\377\6\177\1\377\6\200\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\6\177\1\377\6\177\1\377\6\177\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\201\2\377\t\202\5\377\b{\3\377\b\202\4\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377E\240A\377\217\306\216\377]\254Y\377L\243G\377B\237?\377E\240A\377G\240C\3777\2314\3778\2324\3779\2325\3777\2304\377+\224&\377(\221#\3773\227/\377E\240A\377K\243G\377Q\246M\377W\251S\377k\264g\377H\243E\377'\221\"\377\37\215\32\377$\220\37\377%\220!\377$\220 \377\e\214\27\377\31\212\24\3770\225+\3777\2302\3771\227,\377,\223(\377\27\211\21\377\23\206\16\377\27\211\23\377\34\213\30\377\34\213\30\377\31\213\26\377\32\213\25\377-\223(\377s\270q\377\300\337\277\377/=.\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\264\330\262\377\224\311\222\377;\2326\377\27\207\23\377\f\204\a\377\t\202\5\377\6\177\2\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\177\1\377\5\200\1\377\6\200\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\177\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\t\201\3\377\a|\2\377\v\202\6\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\200\1\377\r\204\b\377q\266n\377\236\316\234\377~\276|\377_\255\\\377_\255\\\377b\257_\377|\274y\377\231\313\227\377\205\301\202\377m\265j\377b\256]\377z\273w\377\304\341\303\377\331\354\330\377\317\346\316\377\262\327\260\377\236\316\234\377\243\320\241\377\253\324\251\377\263\330\262\377\256\325\254\377\214\305\211\377m\266k\377e\260a\377x\271u\377\260\327\256\377\317\345\316\377\214\304\212\377y\273v\377y\273v\377\202\277\200\377\222\307\220\377u\271r\377_\255\\\377R\246N\377O\245L\377^\256[\377\217\306\214\377\332\354\331\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\363\371\363\377\202\277\200\377,\222)\377\f\202\5\377\a\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\6~\2\377\n\202\6\377\6\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\200\1\377!\215\34\377\273\334\272\377\370\373\370\377\340\357\337\377\271\333\267\377\215\304\212\377\231\313\227\377\233\314\231\377\233\314\231\377\233\314\231\377\234\315\232\377\306\342\305\377\375\376\375\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\376\377\376\377\347\363\347\377\331\353\330\377\332\354\331\377\353\365\353\377\377\377\377\377\377\377\377\377\361\370\361\377\353\365\353\377\365\372\365\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\261\261\261\377\35\35\35\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\35\35\35\377\262\262\262\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\376\377\376\377\347\363\347\377\324\351\323\377\322\350\321\377\340\357\337\377\371\374\371\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\320\346\317\377U\250S\377\17\205\v\377\a\201\2\377\6\177\1\377\6\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\6\177\1\377\5\177\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\177\1\377\6\177\1\377\6\177\1\377\5\200\1\377\6\177\1\377\6\177\1\377\5\177\1\377\6\177\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6~\1\377\a\200\2\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\f\202\a\377B\236>\377\346\362\346\377\377\377\377\377\377\377\377\377\377\377\377\377\364\372\364\377\322\350\321\377\277\336\276\377\276\336\275\377\314\345\313\377\355\366\355\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\32\32\32\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\e\e\e\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\356\366\356\377\345\362\344\377\353\365\353\377\375\376\375\377\356\366\356\377\333\355\332\377\331\354\330\377\342\360\341\377\371\374\371\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\375\376\375\377\357\367\357\377\354\366\354\377\370\374\370\377\370\373\370\377\320\347\317\377\253\324\252\377\243\320\241\377\267\332\266\377\313\344\311\377\251\323\247\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\240\316\236\377\320\347\317\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\225\231\225\377t\272q\377\27\211\22\377\n\202\5\377\6\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\6\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\b\201\3\377\6\200\1\377\6\200\1\377\5\177\1\377\5\200\1\377\6\177\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\200\1\377\5\200\1\377\v\202\5\377k\263h\377\376\376\376\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\31\31\31\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\32\32\32\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\324\351\323\377\246\322\244\377\213\304\211\377u\271r\377^\254[\377>\234:\377>\235;\377G\241D\377J\242F\377I\243E\377Q\246M\377s\270q\377\257\325\255\377\366\372\366\377\356\367\356\377\236\317\234\377m\265j\377]\254[\377[\254Y\377S\251P\377G\241C\377R\250O\377X\252V\377M\244J\377D\236@\377/\225+\377?\235;\377X\252U\377T\247P\377K\243F\377Q\247N\377]\254Y\377f\260a\377\217\305\214\377\275\335\274\377\325\352\325\377\362\370\362\377\231\231\231\377~\224}\377.\225*\377\n\203\5\377\6\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\t\201\4\377\5\200\1\377\6\177\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\177\1\377\6\200\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\16\204\n\377Q\247M\377\373\375\373\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\261\261\261\377\30\30\30\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\30\30\30\377\262\262\262\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\347\363\347\377\254\326\253\377R\246O\377-\224(\377\37\214\32\377\30\212\24\377\25\210\22\377\17\205\n\377\16\205\n\377\17\203\n\377\17\205\n\377\23\207\17\377\34\214\30\377\37\215\32\377!\216\34\377%\217 \377!\217\34\377\35\214\30\377\35\214\27\377\34\213\27\377\"\214\36\377\e\213\27\377\22\206\r\377\22\207\16\377\24\210\20\377!\216\34\3774\2310\377\30\211\23\377\22\206\r\377\21\205\v\377\24\207\16\377\36\215\32\377\32\214\25\377\20\205\v\377\r\203\6\377\v\202\a\377\r\203\a\377\31\211\24\377+\223&\377G\241C\377P\215N\377L\214K\377\23\207\17\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\b\202\3\377\6\177\1\377\6\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\6\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\6\177\1\377\5\177\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\a\177\2\377\24\207\17\377=\2359\377\320\347\317\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\372\374\372\377\266\332\265\377h\262e\3770\225,\377\31\211\24\377\22\207\r\377\f\202\a\377\n\201\4\377\a\200\2\377\b\200\4\377\t\200\4\377\b\201\3\377\a\201\2\377\a\201\3\377\b\202\3\377\v\203\5\377\v\203\6\377\b\201\3\377\a\201\2\377\a\200\2\377\n\202\5\377\r\203\t\377\n\202\5\377\b\201\4\377\b\201\3\377\b\202\3\377\b\201\3\377\b\200\4\377\b\201\3\377\t\202\5\377\t\202\4\377\a\200\2\377\6\200\2\377\a\200\2\377\t\202\4\377\n\202\6\377\b\202\3\377\a\201\2\377\t\202\4\377\v\203\a\377\27\211\23\377%\220!\377$\205 \377\36\205\31\377\a\200\4\377\6\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\200\1\377\t\200\3\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\6\177\1\377\5\200\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\b\200\3\377\26\210\21\3778\2325\377\253\323\251\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\376\377\376\377\263\331\262\377i\262e\377:\2306\377\32\211\25\377\25\210\21\377\f\202\b\377\v\202\6\377\b\201\2\377\6\200\1\377\a\177\2\377\6\177\2\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\2\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\201\1\377\a\200\2\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\a\200\2\377\a\201\2\377\a\201\2\377\b\201\3\377\t\202\4\377\17\205\n\377\32\212\25\377\32\203\26\377\20\201\f\377\6\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\t\202\3\377\6\177\1\377\6\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\5\177\1\377\6\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\6\177\1\377\5\177\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\5\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\t\200\4\377\26\210\21\377>\235:\377\243\321\242\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\332\354\331\377~\276|\377J\243G\377'\220\"\377\30\211\24\377\20\204\v\377\v\202\a\377\b\201\3\377\6\201\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\201\2\377\a\201\2\377\t\202\4\377\r\203\b\377\24\207\17\377\26\203\21\377\f\201\5\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\t\202\5\377\a\200\2\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\177\1\377\5\200\1\377\6\177\1\377\6\200\1\377\5\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\t\200\4\377\31\212\24\377O\244K\377\267\332\265\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\261\327\257\377f\262c\377:\2326\377 \216\34\377\26\210\22\377\16\204\t\377\v\202\6\377\b\201\3\377\a\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\200\2\377\a\201\2\377\t\202\4\377\f\203\a\377\22\206\r\377\23\202\16\377\b\200\3\377\6\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\f\203\a\377\b\201\3\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\5\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\200\2\377\t\200\4\377*\222%\377c\257_\377\347\363\347\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\230\313\226\377Y\252V\3776\2301\377!\215\35\377\25\210\20\377\16\204\t\377\n\202\5\377\a\202\3\377\6\201\1\377\6\200\1\377\6\177\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\201\2\377\t\202\5\377\f\203\a\377\21\205\f\377\22\202\r\377\a\200\2\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\177\1\377\r\204\t\377\v\203\6\377\a\200\2\377\6\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\177\1\377\5\200\1\377\6\177\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\b\201\3\377\a\200\2\377\16\201\t\377V\251S\377\231\313\227\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377454\377\225\311\223\377X\252U\3776\2301\377$\220 \377\25\207\21\377\16\204\t\377\t\202\3\377\a\201\2\377\a\201\1\377\6\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\a\201\2\377\n\202\5\377\v\202\6\377\20\205\v\377\21\201\f\377\n\201\5\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\n\203\a\377 \216\34\377\20\205\v\377\f\203\b\377\b\201\4\377\6\200\2\377\6\177\1\377\6\200\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\201\3\377\t\202\4\377\f\201\b\377-\206+\377\206\301\204\377\366\372\366\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\345\362\344\377\302\340\301\377\262\327\260\377\262\327\260\377\302\340\301\377\344\361\343\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\245\321\243\377`\255]\3779\2316\377\37\214\32\377\16\204\t\377\a\202\3\377\6\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\177\1\377\6\177\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\6\177\1\377\6\177\1\377\5\200\1\377\5\177\1\377\6\177\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\177\1\377\6\201\2\377\a\201\3\377\n\203\a\377\f\201\b\377\v\202\b\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\6\177\1\377:\2336\377\220\310\216\3772\230.\377\e\212\26\377\24\207\17\377\16\204\t\377\r\203\a\377\t\202\5\377\a\200\3\377\a\201\2\377\b\201\3\377\t\202\4\377\b\201\3\377\a\201\2\377\6\200\2\377\6\200\1\377\6\200\1\377\6\200\1\377\a\200\2\377\6\201\2\377\t\201\4\377\t\202\5\377\f\203\a\377\n\203\5\377\a\200\2\377\b\201\3\377\f\203\a\377\17\204\n\377\r\203\b\377\n\203\5\377\b\201\3\377\a\200\2\377\6\200\1\377\a\200\1\377\6\200\2\377\b\201\2\377\b\201\3\377\t\202\4\377\r\203\b\377\21\206\f\377!\216\34\3771\210/\377f\220e\377\367\373\367\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\353\365\353\377\321\350\320\377\303\341\302\377\304\341\303\377\354\366\354\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\375\376\375\377\347\363\347\377\254\326\253\377\222\310\220\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\233\314\231\377\272\334\271\377\373\375\373\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\305\342\304\377r\267p\377)\221%\377\t\202\a\377\6\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\t\201\3\377\r\201\t\377\6\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\r\204\b\377\206\301\203\377\344\361\343\377\246\322\244\377`\255]\377=\2349\3773\227/\377*\224'\3772\226.\377K\243H\377G\241D\3779\2316\377(\222$\377\37\215\e\377\e\210\25\377\32\211\25\377\37\214\e\377*\223'\377=\2349\377H\242E\377I\241E\377@\234;\377<\2348\377/\225+\377/\224*\3773\227/\3770\225,\3777\2313\3777\2314\3772\225-\377.\225*\377+\223'\377!\216\34\377(\221$\3776\2312\377=\235:\377C\240A\377V\251S\377^\256[\377b\257^\377s\270q\377\244\321\242\377\217\227\217\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\360\370\360\377\257\326\255\377z\274w\377a\257^\377^\255[\377M\244J\377<\2338\377M\245I\377\204\300\201\377\257\326\255\377\326\352\325\377\371\374\371\377\346\362\345\377\336\356\335\377\346\363\346\377\365\372\365\377\347\363\347\377\340\356\337\377\300\337\277\377\243\321\241\377\212\303\210\377\201\300~\377u\267r\377x\271u\377h\262f\377W\251U\377Q\246N\377N\245J\377W\251S\377g\261d\377`\256\\\377c\260`\377q\265o\377\204\300\202\377\241\317\237\377\240\316\236\377\257\326\255\377\303\340\302\377\332\353\331\377\340\357\337\377\357\367\357\377444\377\363\370\363\377[\252W\377\t\202\4\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\b\177\4\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\a\201\2\377=\2348\377\313\344\312\377\377\377\377\377\377\377\377\377\355\366\355\377\323\351\322\377\270\333\267\377\301\340\300\377\312\344\311\377\343\361\342\377\376\377\376\377\377\377\377\377\374\376\374\377\352\365\352\377\334\356\334\377\345\362\345\377\357\367\357\377\365\372\365\377\372\374\372\377\361\370\361\377\370\373\370\377\360\370\360\377\342\360\342\377\353\365\353\377\342\360\341\377\304\341\303\377\230\313\226\377d\260a\377U\251R\377a\257^\377h\262e\377\177\276}\377\304\341\303\377\375\376\375\377\373\375\373\377\317\346\316\377\260\326\256\377\243\320\241\377\246\322\244\377\272\334\271\377\342\360\341\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\356\367\356\377\211\303\207\377K\244G\377<\2338\3774\2301\377\36\214\32\377\32\212\25\377\37\214\32\377\34\213\27\377\32\211\23\377$\220\37\377&\220\"\377*\222&\377G\241C\377M\244J\3776\2313\377/\224,\377.\224+\377!\215\34\377\32\212\25\377\30\212\23\377\32\213\25\377\22\206\16\377\17\205\v\377\r\204\b\377\v\203\6\377\17\205\v\377\21\206\f\377\24\207\17\377\24\207\20\377\24\207\21\377\32\213\26\377\26\210\20\377\17\204\n\377\20\205\v\377\35\213\30\377\"\220\37\377\35\214\30\377\36\214\31\377+\224(\377\\\254X\377\224\310\222\377%L#\377\276\335\275\377\24\210\20\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\n\203\6\377\6\200\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\6\177\1\377%\220!\377\230\312\226\377\376\377\376\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\357\367\357\377\353\365\353\377\354\366\354\377\376\377\376\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\376\376\376\377\205\301\202\377D\237@\377;\2337\3773\227/\377\26\207\21\377\21\205\f\377\16\203\t\377\n\202\5\377\n\202\4\377\n\200\4\377\b\201\3\377\t\202\4\377\n\203\6\377\t\201\5\377\n\202\4\377\r\204\b\377\v\203\5\377\b\201\3\377\b\201\4\377\b\201\4\377\b\200\4\377\a\200\2\377\b\201\3\377\t\202\5\377\a\177\2\377\a\201\2\377\a\200\1\377\a\201\2\377\a\202\3\377\t\201\3\377\b\200\3\377\b\201\3\377\a\201\3\377\a\200\3\377\6\201\1\377\b\201\3\377\t\201\4\377\f\203\a\377\20\205\f\377\24\207\17\377\31\212\24\3774\227/\377\32^\27\377:\2337\377\6\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\f\204\t\377H\241E\377\36\213\31\377\f\203\b\377\a\200\2\377\5\177\1\377\6\177\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\6\177\1\377\5\200\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\a\200\2\377\f\203\b\377\rs\b\377\234\315\233\377\372\374\372\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\273\334\271\377V\250S\377;\2337\3776\2312\377\30\210\22\377\20\205\f\377\16\203\n\377\n\202\5\377\b\202\3\377\5\200\2\377\6\200\2\377\6\200\1\377\6\201\2\377\6\200\1\377\6\200\1\377\a\200\2\377\6\200\2\377\6\200\2\377\6\200\1\377\6\200\1\377\a\200\2\377\6\177\2\377\6\200\1\377\6\200\1\377\a\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\201\1\377\a\201\2\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\a\200\2\377\b\201\3\377\f\203\a\377\20\205\f\377\25\210\20\377\34\213\27\377\17p\v\377\b\202\4\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\b\177\2\377V\250T\377\353\365\353\377\276\336\276\377c\260a\377<\2359\377.\225*\377)\221$\3770\227-\377?\235=\3770\225,\377\31\212\22\377\20\205\f\377\16\204\n\377\r\203\a\377\r\203\b\377\30\211\22\377%\216!\377!\214\34\377\30\211\22\377\23\206\16\377\26\207\21\377-\226*\3778\2324\377;\2337\377(\221$\377\21\205\f\377\r\203\b\377\22\207\r\377\26\210\22\377\32\212\26\377!\215\35\377\27\210\22\377\e\214\27\3774\227/\3778\2326\377*\223%\377\34\212\27\377\23\206\17\377\25\211\22\377!\216\34\377>\235:\377\207\302\205\377/=.\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\4\0\377~\276|\377J\243G\377;\2337\377\"\217\35\377\23\206\16\377\17\205\v\377\n\201\5\377\b\202\3\377\a\201\2\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\a\201\2\377\t\202\4\377\16\204\t\377\21\206\f\377\30\211\23\377\fu\a\377\6\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\a\177\2\3772\224.\377\255\325\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\366\372\366\377\347\363\347\377\347\363\347\377\364\372\364\377\351\364\351\377\325\352\324\377\327\353\327\377\327\353\327\377\302\340\301\377\255\325\253\377\252\324\250\377\265\331\264\377\324\351\323\377\357\367\357\377\306\342\305\377\246\321\244\377\233\314\231\377\241\317\237\377\275\336\274\377\307\342\306\377\237\316\236\377\205\301\202\377\203\277\200\377\221\306\217\377\267\333\266\377\275\335\274\377\245\321\243\377\233\314\231\377\242\317\240\377\272\334\271\377\336\356\335\377\363\371\363\377\374\375\374\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\1\23\0\377v\271s\377F\240B\3773\227/\377\34\213\27\377\21\205\f\377\r\202\t\377\n\201\4\377\b\202\2\377\6\201\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\200\2\377\b\201\3\377\v\203\6\377\20\205\v\377\26\210\21\377\nx\6\377\6\177\1\377\6\177\1\377\5\200\1\377\6\200\1\377\5\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\177\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377*\222)\377\t\202\5\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\177\1\377\6\177\1\377\5\200\1\377\b\200\4\377%\206\"\377\211\302\206\377\365\372\365\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\1\32\0\377{\274y\377G\241D\377,\224(\377\32\213\25\377\21\205\f\377\v\202\a\377\b\202\4\377\a\201\2\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\177\1\377\5\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\200\2\377\b\201\3\377\n\202\5\377\17\205\n\377\25\210\20\377\nx\6\377\6\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\6\177\1\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\36\214\32\377\344\362\343\377\236\314\234\3779\2346\377\21\205\v\377\b\202\4\377\5\200\3\377\a\200\2\377\b\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\6\201\1\377\6\177\3\377\t\201\2\377\t\200\4\377\a\201\3\377\a\200\2\377\6\177\1\377\6\200\2\377\a\177\1\377\6\177\1\377\6\200\2\377\6\201\2\377\b\200\3\377\t\201\4\377\a\202\3\377\b\202\5\377\b\202\4\377\b\201\5\377\t\202\3\377\6\177\2\377\6\177\1\377\a\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\5\177\1\377\a\201\3\377\t\202\5\377\e\211\26\3774\2061\377[\216Y\377\364\371\364\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\1\31\0\377\213\304\210\377P\245L\377*\222&\377\e\212\26\377\22\206\16\377\v\203\a\377\b\202\4\377\a\200\2\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\200\2\377\b\201\3\377\n\202\5\377\17\204\n\377\25\210\21\377\vw\6\377\5\200\1\377\6\200\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\5\200\1\377\6\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\n\200\a\377\6\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377#\220 \377\362\367\362\377\377\377\377\377\362\371\362\377\276\336\275\377\230\312\226\377\203\277\200\377t\272q\377j\262f\377q\267n\377w\271t\377c\257`\377[\252X\377U\250Q\377Y\253U\377h\262f\377\235\316\233\377\315\345\315\377\325\352\324\377\263\327\261\377z\274w\377^\255Y\377e\260a\377n\265j\377[\253X\377^\254Z\377x\272u\377\213\304\211\377\222\310\220\377\211\303\206\377\247\322\246\377\306\341\305\377\301\337\300\377\266\331\264\377}\275{\377V\252Q\3779\2335\377&\220#\377#\216\36\377\"\216\35\377*\222%\377Z\254W\377\247\322\245\377\207\225\207\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\1\20\0\377\233\314\231\377h\262d\377,\222(\377\35\214\31\377\25\207\21\377\f\203\a\377\t\202\4\377\a\201\2\377\5\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\177\1\377\5\177\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\5\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\200\1\377\a\200\2\377\t\202\4\377\v\203\6\377\17\204\n\377\31\211\24\377\vv\a\377\b\177\3\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\25\206\21\377\245\321\243\377_\260]\377\21\206\v\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\6\200\1\377\6\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\177\1\377\6\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\6\200\1\377\6\202\2\377\e\214\27\377\36Z\34\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\375\376\375\377\363\371\363\377\365\372\365\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\366\372\366\377\362\370\362\377\374\376\374\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\374\375\374\377\351\364\351\377\346\362\345\377\355\366\355\377\342\360\341\377\323\351\322\377\324\351\323\377\345\361\344\377\375\376\375\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\362\371\362\377\323\350\322\377\305\342\304\377\301\340\300\377\326\352\325\377\370\374\370\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\2\0\377\246\322\244\377\222\310\221\377G\241B\377#\217\37\377\30\211\24\377\16\203\t\377\n\202\5\377\b\201\3\377\6\177\1\377\6\200\1\377\5\200\1\377\6\200\1\377\5\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\200\1\377\5\177\1\377\6\177\1\377\6\200\1\377\5\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\6\201\1\377\6\200\1\377\5\200\1\377\6\177\1\377\6\177\1\377\6\177\1\377\5\177\1\377\6\177\1\377\6\200\1\377\6\200\1\377\6\200\1\377\a\201\2\377\t\202\4\377\f\203\a\377\20\205\f\377\"\216\35\377\ft\b\377&\217#\377\6\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377/\224,\377y\274x\377\v\203\5\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\a\177\2\3775\2062\377\371\373\371\377\374\376\374\377\311\344\310\377\225\310\223\377u\272s\377:\2325\377%\221 \377%\220!\377/\225,\377A\235=\377<\2348\3775\2323\3778\2335\377<\2347\3778\2315\377+\223&\377.\224*\377K\244F\377]\254Y\377^\256[\377U\251R\377O\243K\377\\\254X\377\177\277~\377\223\310\221\377\231\313\230\377\246\321\244\377\266\332\265\377\253\324\250\377\243\322\242\377g\262d\377N\244K\377I\243E\377F\241B\377Q\246O\377W\252S\377X\252U\377[\253X\377p\265n\377\200\277|\377\247\322\246\377\320\347\317\377\372\374\372\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\340\357\337\377\233\314\231\377\215\306\213\377=\233:\377!\215\34\377\25\210\21\377\f\202\b\377\n\202\4\377\a\201\1\377\a\200\2\377\a\201\3\377\a\201\2\377\6\177\1\377\6\177\1\377\a\200\2\377\6\200\1\377\6\200\1\377\a\200\1\377\6\200\1\377\a\200\1\377\6\200\1\377\6\200\1\377\6\201\1\377\a\201\2\377\a\200\2\377\6\200\1\377\a\201\2\377\a\202\4\377\b\200\3\377\a\202\3\377\a\201\1\377\b\201\4\377\b\202\2\377\b\200\3\377\6\201\1\377\a\200\2\377\6\200\2\377\a\200\2\377\t\202\4\377\v\203\6\377\r\203\b\377\35\214\31\377'\221#\377\17p\v\377W\253T\377!\216\35\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\n\177\a\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\a\201\2\377\205\303\205\377\n\202\a\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377X\252W\377\345\361\345\377\377\377\377\377\345\362\345\377}\274{\377*\223&\377\20\205\f\377\16\204\a\377\20\206\f\377\30\207\24\377\"\215\37\377\31\213\24\377\21\205\f\377\v\203\b\377\f\203\a\377\17\205\n\377\21\205\16\377\22\205\r\377\16\203\n\377\b\201\4\377\b\201\3\377\6\202\2\377\6\177\2\377\6\177\1\377\5\177\1\377\6\177\2\377\v\201\6\377\17\204\f\377\23\210\17\377\23\207\16\377\23\206\17\377\23\206\16\377\n\204\6\377\b\201\3\377\b\177\4\377\t\201\4\377\r\204\b\377\16\202\v\377\24\207\21\377#\216!\377B\236>\377b\260a\377\242\317\240\377\224\230\224\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\373\375\373\377\346\362\345\377\336\356\335\377\347\363\347\377\371\373\371\377\372\375\372\377\377\377\377\377\377\377\377\377\371\374\371\377\335\356\334\377\321\350\320\377\320\347\317\377\357\367\357\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\372\375\372\377\374\375\374\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\327\353\326\377\235\315\233\377\204\300\201\377U\251R\3778\2314\377\36\214\32\377\23\210\17\377\r\204\b\377\v\202\6\377\v\202\6\377\b\201\4\377\b\202\4\377\n\202\4\377\a\202\3\377\b\201\3\377\b\201\3\377\a\200\2\377\b\202\4\377\f\202\a\377\b\201\4\377\b\200\3\377\n\202\4\377\t\202\4\377\n\201\5\377\r\203\b\377\f\203\6\377\r\204\b\377\20\204\f\377\21\205\f\377\20\205\f\377\n\202\5\377\r\203\a\377\r\204\b\377\17\204\n\377\v\202\5\377\b\201\3\377\n\203\5\377\v\203\6\377\16\204\n\377\34\214\30\377(\222$\3779\2325\377\24f\21\377\235\315\233\377\341\360\341\377,\226)\377\6\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\6\177\1\377\31\212\25\377\6\200\2\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\b\201\5\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\3\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\27\207\23\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\26\203\24\377[\254X\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\3770\226-\377\372\374\372\377\263\330\262\377\v\204\a\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\21\202\f\377\326\350\326\377\377\377\377\377\353\364\353\377k\265i\377\32\211\25\377\b\202\6\377\a\177\2\377\a\177\2\377\6\200\3\377\6\200\3\377\6\201\4\377\t\201\3\377\a\200\2\377\a\201\2\377\a\201\2\377\6\200\2\377\a\200\2\377\a\200\4\377\v\203\b\377\22\204\17\377\25\210\22\377\24\210\17\377\23\207\r\377\24\210\20\377\24\211\22\377\20\205\r\377\n\202\b\377\b\202\4\377\a\177\2\377\a\200\3\377\b\177\3\377\a\201\4\377\n\200\4\377\6\177\4\377\a\200\2\377\6\200\2\377\6\177\2\377\6\200\3\377\b\177\3\377\n\201\5\377\16\205\n\377'\222#\377h\264f\377$M\"\377\365\372\365\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\342\360\341\377\306\342\305\377\274\335\273\377\303\341\302\377\333\354\332\377\374\376\374\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\371\374\371\377\375\376\375\377\356\366\356\377\307\344\306\377\252\324\251\377\251\323\247\377\252\324\251\377\304\342\303\377\342\360\342\377\356\367\356\377\373\375\373\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\355\366\355\377\325\352\325\377\315\345\315\377\336\356\336\377\367\373\367\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\361\370\361\377\310\343\307\377\227\311\225\377k\264h\377j\262g\377V\251S\377F\241C\377.\224)\377\31\211\24\377\32\212\25\377\30\211\24\377\21\206\f\377\23\205\r\377\26\211\21\377\27\210\24\377\27\210\21\377\25\207\20\377\24\207\16\377!\215\34\3778\2315\3779\2327\377?\235<\377I\244F\377D\237@\377C\236?\377:\2325\377=\2349\377D\240A\377B\237?\377F\241C\377/\225,\377/\225+\377,\224'\3772\226.\3771\227-\377$\217\37\377#\216\37\3772\226.\377C\237?\377]\254Z\377\201\277~\377*E)\377\377\377\377\377\377\377\377\377\354\366\354\377k\262h\377\26\210\22\377\b\200\2\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\6\177\1\377\t\200\4\377#\203\36\377\325\352\324\377\273\334\272\377\23\210\20\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\6\177\1\377\5~\1\377e\261c\377\351\364\351\3776\2302\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\a\177\3\377\226\307\225\377\331\355\331\377!\212\35\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377U\247R\377\362\370\362\377\245\322\243\377\16\204\t\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\2\377W\214W\377\377\377\377\377\377\377\377\377\263\331\263\377\35\211\31\377\6\200\2\377\6\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\200\1\377\5\177\1\377\5\177\1\377\5\200\1\377\5\200\1\377\6\202\3\3773\2310\377,B+\377\377\377\377\377\377\377\377\377\377\377\377\377\370\374\370\377\264\330\262\377R\246Q\377 \214\e\377\23\205\f\377\27\211\23\3770\227,\377H\240D\377C\240?\3775\2271\377\"\215\35\377\34\214\30\377\35\216\e\377\"\212\37\377(\222%\377 \212\37\377\24\207\21\377\n\203\5\377\a\201\4\377\f\203\6\377\23\205\20\377-\224+\3774\2301\377.\223*\377)\221%\377\"\216\36\377\30\212\24\377\25\207\21\377\24\210\21\377\32\213\24\377\"\216\35\377\35\213\32\377\30\212\24\377\32\213\27\377\34\213\27\377\35\215\31\377\31\211\24\377\24\210\17\377\36\212\31\377N\245K\377x\221x\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\367\373\367\377\360\370\360\377\365\372\365\377\377\377\377\377\375\376\375\377\363\371\363\377\365\372\365\377\376\376\376\377\377\377\377\377\361\370\361\377\330\354\330\377\324\351\323\377\356\366\356\377\377\377\377\377\375\376\375\377\370\373\370\377\370\373\370\377\376\377\376\377\377\377\377\377\377\377\377\377\374\375\374\377\350\364\350\377\340\356\337\377\357\367\357\377\377\377\377\377\374\376\374\377\324\351\323\377\253\325\252\377\231\312\226\377\233\315\232\377\254\325\252\377\315\345\314\377\346\363\346\377\373\375\373\377\376\377\376\377\365\372\365\377\364\372\364\377\375\376\375\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\366\372\366\377\325\352\324\377\300\337\277\377\270\333\267\377\256\326\254\377\257\326\256\377\220\307\216\377\200\277}\377\203\301\201\377t\271q\377i\263f\377r\267o\377\210\303\206\377\245\320\243\377\307\342\307\377\312\344\311\377\330\354\327\377\361\370\361\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\366\372\366\377\357\367\357\377\353\366\353\377\355\366\355\377\362\370\362\377\345\361\345\377\277\337\276\377\262\327\260\377\251\323\247\377\260\327\256\377\307\343\306\377\333\355\333\377\324\351\323\377\322\350\321\377\340\357\337\377\372\374\372\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\374\376\374\377\320\347\317\377\227\312\225\377p\266m\377R\247N\377-\224(\377 \216\34\377\27\211\22\377\23\207\17\377\32\212\26\377$\216\36\377,\224)\3775\2270\377W\251U\377\233\315\231\377\272\332\272\377k\263f\3779\2316\377*\222'\377&\217!\377!\217\34\377\34\213\27\377%\217!\377E\240C\377S\251P\377P\247M\377P\244K\377@\236;\377;\2347\3779\2325\377/\225+\3774\2270\377C\240A\3778\2326\3779\2315\3778\2313\377/\224,\377.\223*\3777\2314\377b\260_\377m\221l\377\225\230\225\377\377\377\377\377\377\377\377\377\345\362\345\377\236\315\234\377A\237=\377\26\210\20\377\f\204\b\377\t\200\4\377\b\201\3\377\b\201\3\377\5\200\1\377\5\200\2\377\6\200\2\377\a\201\2\377\t\201\2\377\v\202\a\377\t\201\5\377\5\177\3\377\a\200\1\377\a\177\1\377\a\177\2\377\b\201\3\377\v\203\a\377\f\203\a\377\n\200\4\377\t\201\5\377\f\203\t\377\v\202\a\377\v\177\6\377\b\201\4\377\a\177\2\377\6\200\1\377\6\177\1\377\b\202\3\377\t\201\5\377\n\201\4\377\b\200\3\377\n\200\3\377\v\203\6\377\24\211\17\377%\220!\377K\247J\377\231\311\230\377.>-\377\377\377\377\377\377\377\377\377\376\377\376\377\267\330\265\3775\2302\377\20\203\n\377\b\200\3\377\5\200\1\377\b\177\2\377\5\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\6\200\1\377\b\202\2\377\t\200\4\377\6\200\2\377\6\201\2\377\6\177\1\377\5\177\1\377\6\200\1\377\5\177\1\377\6\177\1\377\b\177\3\377\b\177\3\377\5\177\1\377\5\200\1\377\5\177\1\377\6\177\1\377\5\200\1\377\6\200\1\377\5\200\1\377\b\200\2\377\6\201\3\377\a\177\2\377\a\200\3\377\b\200\3\377\b\200\4\377\a\201\3\377\6\200\1\377\a\177\2\377\a\200\4\377\26\212\24\377G\214D\377\205\225\204\377\377\377\377\377\377\377\377\377\374\375\374\377\312\344\311\377k\263i\377'\223#\377\17\206\f\377\n\201\5\377\n\201\4\377\n\200\4\377\n\202\5\377\b\200\3\377\a\200\2\377\6\200\1\377\5\177\1\377\6\200\1\377\6\177\1\377\5\200\1\377\6\177\2\377\5\177\2\377\a\201\3\377\n\202\6\377\f\204\b\377\v\201\4\377\t\177\4\377\b\201\5\377\6\201\3\377\a\177\2\377\6\200\1\377\6\200\1\377\6\177\1\377\6\200\1\377\5\177\4\377\b\177\2\377\6\200\2\377\6\200\2\377\5\177\1\377\6\200\1\377\5\177\1\377\6\177\3\377\t\201\6\377\30\212\25\377X\253U\377+B*\377\374\375\374\377\377\377\377\377\377\377\377\377\374\376\374\377\304\342\303\377\201\275\200\377\\\253X\377]\256Z\377\\\255Y\3776\2300\377\35\213\30\377\22\205\f\377\17\204\n\377\r\204\n\377\24\207\20\377\e\213\30\377$\220$\377C\236@\377L\244I\377*\223%\377\31\211\23\377\24\206\17\377\32\212\26\377\"\221\36\377\36\215\31\377\26\212\23\377\27\210\23\377\25\211\21\377\32\212\27\377*\221%\377.\225)\3772\226.\377F\241D\377d\262c\377\232\314\232\377g\263e\377/\224*\377!\216\35\377$\215\36\377&\221\"\377;\2326\377o\266j\377\311\343\310\377\230\231\230\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\332\353\331\377\237\316\236\377\217\305\214\377\207\302\206\377v\267s\377o\266m\377\205\302\204\377\216\306\214\377\202\277\201\377_\256\\\377_\254[\377v\270s\377\236\314\234\377\271\334\270\377\355\366\355\377\377\377\377\377\372\374\372\377\304\341\303\377\210\303\206\377m\264i\377b\257_\377f\261d\377\205\301\203\377\231\312\227\377\306\341\306\377\362\371\362\377\373\375\373\377\350\364\350\377\331\354\330\377\303\341\302\377\303\340\302\377\313\345\313\377\351\364\351\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\375\376\375\377\364\371\364\377\364\371\364\377\376\377\376\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\375\376\375\377\357\367\357\377\354\366\354\377\370\374\370\377\376\377\376\377\346\362\345\377\336\356\335\377\336\356\335\377\363\371\363\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\374\375\374\377\370\373\370\377\370\373\370\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\371\374\371\377\375\376\375\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\376\376\376\377\370\373\370\377\351\364\351\377\325\351\324\377\321\347\320\377\336\356\335\377\370\374\370\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\364\371\364\377\336\356\335\377\327\352\326\377\342\360\341\377\366\373\366\377\355\366\355\377\355\366\355\377\372\374\372\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\372\375\372\377\374\376\374\377\377\377\377\377\377\377\377\377\361\370\361\377\353\365\353\377\356\366\356\377\333\355\333\377\312\343\311\377\325\351\324\377\350\364\350\377\376\377\376\377\377\377\377\377\377\377\377\377\355\366\355\377\326\352\325\377\321\350\320\377\334\355\333\377\360\370\360\377\357\366\357\377\343\360\343\377\312\344\311\377\256\326\254\377\252\323\250\377\301\336\277\377\357\367\357\377\375\376\375\377\371\374\371\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\376\377\376\377\355\366\355\377\325\352\324\377\316\346\316\377\360\370\360\377\376\376\376\377\365\372\365\377\363\371\363\377\375\376\375\377\377\377\377\377\357\367\357\377\345\361\344\377\352\365\352\377\364\372\364\377\352\364\352\377\373\375\373\377\377\377\377\377\370\374\370\377\273\334\271\377\224\311\221\377\213\304\210\377\264\331\264\377\372\375\372\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\370\373\370\377\376\377\376\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\376\377\376\377\345\361\344\377\320\347\317\377\320\347\317\377\331\353\330\377\346\361\346\377\340\357\337\377\324\351\323\377\334\355\333\377\352\365\352\377\335\356\335\377\267\332\266\377\251\323\247\377\261\327\257\377\274\335\273\377\333\355\332\377\375\376\375\377\377\377\377\377\377\377\377\377\375\376\375\377\340\357\337\377\311\344\310\377\301\337\300\377\277\336\276\377\324\352\324\377\370\373\370\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\370\373\370\377\376\377\376\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\372\375\372\377\370\373\370\377\373\375\373\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\373\375\373\377\355\366\355\377\355\366\355\377\372\374\372\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\374\375\374\377\370\373\370\377\370\373\370\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\360\360\360\377\312\312\312\377\251\251\251\377\267\267\267\377\327\327\327\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\347\347\347\377lll\377\6\6\6\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377+++\377\241\241\241\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\344\344\344\377\37\37\37\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377eee\377\376\376\376\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\371\371\371\377***\377\0\0\0\377\0\0\0\377 \377{{{\377\277\277\277\377\251\251\251\377ccc\377\n\n\n\377\0\0\0\377\0\0\0\377\220\220\220\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\227\227\227\377\0\0\0\377\0\0\0\377\26\26\26\377\340\340\340\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\242\242\242\377\0\0\0\377\0\0\0\377\b\b\b\377\357\357\357\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\333\333\333\377///\377\23\23\23\377\201\201\201\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\200\200\200\377\23\23\23\377///\377\334\334\334\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\200\200\200\377\23\23\23\377///\377\334\334\334\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\200\200\200\377\23\23\23\377///\377\334\334\334\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\200\200\200\377\23\23\23\377///\377\334\334\334\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\374\374\374\377\36\36\36\377\0\0\0\377\0\0\0\377\275\275\275\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377XXX\377\0\0\0\377\0\0\0\377\236\236\236\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377ZZZ\377\0\0\0\377\0\0\0\377\0\0\0\377\332\332\332\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\331\331\331\377\0\0\0\377\0\0\0\377\0\0\0\377[[[\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\331\331\331\377\0\0\0\377\0\0\0\377\0\0\0\377[[[\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\331\331\331\377\0\0\0\377\0\0\0\377\0\0\0\377[[[\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\331\331\331\377\0\0\0\377\0\0\0\377\0\0\0\377[[[\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\312\312\312\377\0\0\0\377\0\0\0\377\e\e\e\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\260\260\260\377\0\0\0\377\0\0\0\377FFF\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377@@@\377\0\0\0\377\0\0\0\377\0\0\0\377\277\277\277\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\213\213\213\377\0\0\0\377\0\0\0\377ggg\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\356\356\356\377\2\2\2\377\0\0\0\377\3\3\3\377\363\363\363\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377@@@\377\0\0\0\377\0\0\0\377\0\0\0\377\277\277\277\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377NNN\377\0\0\0\377\0\0\0\377\250\250\250\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377)))\377\0\0\0\377\0\0\0\377\331\331\331\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377@@@\377\0\0\0\377\0\0\0\377\0\0\0\377\277\277\277\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377111\377\0\0\0\377\0\0\0\377\277\277\277\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377>>>\377\0\0\0\377\0\0\0\377\302\302\302\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377@@@\377\0\0\0\377\0\0\0\377\0\0\0\377\277\277\277\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\37\37\37\377\0\0\0\377\0\0\0\377\321\321\321\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377OOO\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377@@@\377\0\0\0\377\0\0\0\377\0\0\0\377\277\277\277\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\r\r\r\377\0\0\0\377\0\0\0\377\343\343\343\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377aaa\377\0\0\0\377\0\0\0\377\227\227\227\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377@@@\377\0\0\0\377\0\0\0\377\0\0\0\377\277\277\277\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\a\a\a\377\0\0\0\377\0\0\0\377\357\357\357\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377bbb\377\0\0\0\377\0\0\0\377\237\237\237\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\261\261\261\377\35\35\35\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\35\35\35\377\262\262\262\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377@@@\377\0\0\0\377\0\0\0\377\0\0\0\377\277\277\277\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\231\231\231\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\35\35\35\377\0\0\0\377\0\0\0\377\342\342\342\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377ZZZ\377\0\0\0\377\0\0\0\377\263\263\263\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\32\32\32\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377555\377\0\0\0\377\0\0\0\377\323\323\323\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377LLL\377\0\0\0\377\0\0\0\377\310\310\310\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\31\31\31\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\1\1\1\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377LLL\377\0\0\0\377\0\0\0\377\276\276\276\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377...\377\0\0\0\377\0\0\0\377\335\335\335\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\261\261\261\377\30\30\30\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\30\30\30\377\262\262\262\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377@@@\377\0\0\0\377\0\0\0\377\0\0\0\377\277\277\277\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377ggg\377\0\0\0\377\0\0\0\377\210\210\210\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\374\374\374\377\f\f\f\377\0\0\0\377\24\24\24\377\375\375\375\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377@@@\377\0\0\0\377\0\0\0\377\0\0\0\377\277\277\277\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\263\263\263\377\0\0\0\377\0\0\0\377MMM\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\311\311\311\377\0\0\0\377\0\0\0\377^^^\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377@@@\377\0\0\0\377\0\0\0\377\0\0\0\377\277\277\277\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\373\373\373\377\24\24\24\377\0\0\0\377\3\3\3\377\315\315\315\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377ggg\377\0\0\0\377\0\0\0\377\253\253\253\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377@@@\377\0\0\0\377\0\0\0\377\0\0\0\377\277\277\277\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377kkk\377\0\0\0\377\0\0\0\377111\377\373\373\373\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\255\255\255\377\5\5\5\377\0\0\0\377\27\27\27\377\363\363\363\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377@@@\377\0\0\0\377\0\0\0\377\0\0\0\377\277\277\277\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\336\336\336\377\16\16\16\377\0\0\0\377\0\0\0\377GGG\377\251\251\251\377\364\364\364\377\324\324\324\377\206\206\206\377\3\3\3\377\0\0\0\377\0\0\0\377\242\242\242\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377@@@\377\0\0\0\377\0\0\0\377\0\0\0\377\277\277\277\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\253\253\253\377\4\4\4\377\0\0\0\377\0\0\0\377\0\0\0\377\2\2\2\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377fff\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377@@@\377\0\0\0\377\0\0\0\377\0\0\0\377\277\277\277\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377\0\0\0\377\0\0\0\377\0\0\0\377@@@\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377 \377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\20\20\20\377\207\207\207\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377YYY\377\0\0\0\377\0\0\0\377\0\0\0\377\331\331\331\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\330\330\330\377\0\0\0\377\0\0\0\377\0\0\0\377ZZZ\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\330\330\330\377\0\0\0\377\0\0\0\377\0\0\0\377ZZZ\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\330\330\330\377\0\0\0\377\0\0\0\377\0\0\0\377ZZZ\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\330\330\330\377\0\0\0\377\0\0\0\377\0\0\0\377ZZZ\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\375\375\375\377\270\270\270\377\205\205\205\377lll\377\200\200\200\377\244\244\244\377\363\363\363\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\333\333\333\377...\377\n\n\n\377\201\201\201\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\200\200\200\377\n\n\n\377...\377\334\334\334\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\200\200\200\377\n\n\n\377...\377\334\334\334\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\200\200\200\377\n\n\n\377...\377\334\334\334\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\200\200\200\377\n\n\n\377...\377\334\334\334\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\360\360\360\377\312\312\312\377\251\251\251\377\267\267\267\377\327\327\327\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\370\370\370\377\307\307\307\377\242\242\242\377\274\274\274\377\334\334\334\377\372\372\372\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\274\274\274\377\267\267\267\377\350\350\350\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\274\274\274\377\267\267\267\377\350\350\350\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\274\274\274\377\267\267\267\377\350\350\350\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\347\347\347\377lll\377\6\6\6\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377+++\377\241\241\241\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\232\232\232\377444\377\5\5\5\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\22\22\22\377\206\206\206\377\363\363\363\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377,,,\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377DDD\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\325\325\325\377\0\0\0\377\0\0\0\377\253\253\253\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\325\325\325\377\0\0\0\377\0\0\0\377\253\253\253\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\325\325\325\377\0\0\0\377\0\0\0\377\253\253\253\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377yyy\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\323\323\323\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\344\344\344\377\37\37\37\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377eee\377\376\376\376\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\217\217\217\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\37\37\37\377\354\354\354\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377,,,\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377DDD\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377yyy\377\0\0\0\377\0\0\0\377\253\253\253\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377yyy\377\0\0\0\377\0\0\0\377\253\253\253\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377yyy\377\0\0\0\377\0\0\0\377\253\253\253\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377UUU\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\323\323\323\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\371\371\371\377***\377\0\0\0\377\0\0\0\377 \377{{{\377\277\277\277\377\251\251\251\377ccc\377\n\n\n\377\0\0\0\377\0\0\0\377\220\220\220\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\222\222\222\377\0\0\0\377\0\0\0\377\1\1\1\377bbb\377\234\234\234\377\312\312\312\377\267\267\267\377mmm\377\6\6\6\377\0\0\0\377\0\0\0\377JJJ\377\376\376\376\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377PPP\377,,,\377,,,\377,,,\377,,,\377,,,\377,,,\377,,,\377,,,\377,,,\377,,,\377,,,\377\25\25\25\377\0\0\0\377\0\0\0\377eee\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\275\275\275\377\6\6\6\377\0\0\0\377\0\0\0\377\253\253\253\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\275\275\275\377\6\6\6\377\0\0\0\377\0\0\0\377\253\253\253\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\275\275\275\377\6\6\6\377\0\0\0\377\0\0\0\377\253\253\253\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377111\377\0\0\0\377\32\32\32\377GGG\377GGG\377GGG\377GGG\377GGG\377GGG\377GGG\377GGG\377GGG\377\340\340\340\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\227\227\227\377\0\0\0\377\0\0\0\377\26\26\26\377\340\340\340\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\242\242\242\377\0\0\0\377\0\0\0\377\b\b\b\377\357\357\357\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\366\366\366\377\17\17\17\377\0\0\0\377\4\4\4\377\241\241\241\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\304\304\304\377\6\6\6\377\0\0\0\377\0\0\0\377\323\323\323\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\351\351\351\377\e\e\e\377\0\0\0\377888\377\366\366\366\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\356\356\356\377\307\307\307\377\235\235\235\377LLL\377\5\5\5\377\0\0\0\377\0\0\0\377\0\0\0\377\253\253\253\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\356\356\356\377\307\307\307\377\235\235\235\377LLL\377\5\5\5\377\0\0\0\377\0\0\0\377\0\0\0\377\253\253\253\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\356\356\356\377\307\307\307\377\235\235\235\377LLL\377\5\5\5\377\0\0\0\377\0\0\0\377\0\0\0\377\253\253\253\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\r\r\r\377\0\0\0\377vvv\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\374\374\374\377\36\36\36\377\0\0\0\377\0\0\0\377\275\275\275\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377XXX\377\0\0\0\377\0\0\0\377\236\236\236\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\247\247\247\377\0\0\0\377\0\0\0\377ddd\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377ccc\377\0\0\0\377\0\0\0\377\244\244\244\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\374\374\374\377AAA\377\0\0\0\377\23\23\23\377\344\344\344\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\20\20\20\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\20\20\20\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\20\20\20\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\351\351\351\377\0\0\0\377\0\0\0\377\235\235\235\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\312\312\312\377\0\0\0\377\0\0\0\377\e\e\e\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\260\260\260\377\0\0\0\377\0\0\0\377FFF\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377|||\377\0\0\0\377\0\0\0\377\263\263\263\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\221\221\221\377\0\0\0\377\0\0\0\377~~~\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377www\377\0\0\0\377\0\0\0\377\262\262\262\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\20\20\20\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\20\20\20\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\20\20\20\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\304\304\304\377\0\0\0\377\0\0\0\377\305\305\305\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\213\213\213\377\0\0\0\377\0\0\0\377ggg\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\356\356\356\377\2\2\2\377\0\0\0\377\3\3\3\377\363\363\363\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377fff\377\a\a\a\377\a\a\a\377\326\326\326\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377lll\377\0\0\0\377\0\0\0\377\230\230\230\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\307\307\307\377\2\2\2\377\0\0\0\377\\\\\\\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\332\332\332\377\330\330\330\377\330\330\330\377\330\330\330\377\330\330\330\377FFF\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\332\332\332\377\330\330\330\377\330\330\330\377\330\330\330\377\330\330\330\377FFF\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\332\332\332\377\330\330\330\377\330\330\330\377\330\330\330\377\330\330\330\377FFF\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\240\240\240\377\0\0\0\377\0\0\0\377\354\354\354\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377NNN\377\0\0\0\377\0\0\0\377\250\250\250\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377)))\377\0\0\0\377\0\0\0\377\331\331\331\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\364\364\364\377%%%\377\0\0\0\377\1\1\1\377\320\320\320\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\372\372\372\377---\377\0\0\0\377\n\n\n\377\343\343\343\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377|||\377\0\0\0\377\23\23\23\377\377\377\377\377\371\371\371\377\320\320\320\377\242\242\242\377\233\233\233\377\307\307\307\377\362\362\362\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377111\377\0\0\0\377\0\0\0\377\277\277\277\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377>>>\377\0\0\0\377\0\0\0\377\302\302\302\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\374\374\374\377\322\322\322\377666\377\0\0\0\377\0\0\0\377[[[\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\205\205\205\377\0\0\0\377\0\0\0\377~~~\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377XXX\377\0\0\0\377///\377uuu\377\6\6\6\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\1\1\1\377ccc\377\355\355\355\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\37\37\37\377\0\0\0\377\0\0\0\377\321\321\321\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377OOO\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\346\346\346\377<<<\377555\377\t\t\t\377\0\0\0\377\0\0\0\377\2\2\2\377www\377\371\371\371\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\346\346\346\377\b\b\b\377\0\0\0\377\32\32\32\377\364\364\364\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377444\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\26\26\26\377\276\276\276\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\r\r\r\377\0\0\0\377\0\0\0\377\343\343\343\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377aaa\377\0\0\0\377\0\0\0\377\227\227\227\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\340\340\340\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\17\17\17\377\201\201\201\377\357\357\357\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377uuu\377\0\0\0\377\0\0\0\377\237\237\237\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\20\20\20\377\0\0\0\377\0\0\0\377\17\17\17\377yyy\377\263\263\263\377\342\342\342\377\305\305\305\377\205\205\205\377\r\r\r\377\0\0\0\377\0\0\0\377\26\26\26\377\351\351\351\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\a\a\a\377\0\0\0\377\0\0\0\377\357\357\357\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377bbb\377\0\0\0\377\0\0\0\377\237\237\237\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\352\352\352\377YYY\377OOO\377555\377\17\17\17\377\0\0\0\377\0\0\0\377\0\0\0\377---\377\351\351\351\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\357\357\357\377\r\r\r\377\0\0\0\377000\377\376\376\376\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\353\353\353\377\0\0\0\377\0\0\0\377\34\34\34\377\323\323\323\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\345\345\345\377\"\"\"\377\0\0\0\377\0\0\0\377MMM\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\35\35\35\377\0\0\0\377\0\0\0\377\342\342\342\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377ZZZ\377\0\0\0\377\0\0\0\377\263\263\263\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\367\367\367\377\240\240\240\377\20\20\20\377\0\0\0\377\0\0\0\377WWW\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\205\205\205\377\0\0\0\377\0\0\0\377\234\234\234\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\376\376\376\377\352\352\352\377\333\333\333\377\356\356\356\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\304\304\304\377\2\2\2\377\0\0\0\377\1\1\1\377\362\362\362\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377555\377\0\0\0\377\0\0\0\377\323\323\323\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377LLL\377\0\0\0\377\0\0\0\377\310\310\310\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\272\272\272\377\1\1\1\377\0\0\0\377\2\2\2\377\342\342\342\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\366\366\366\377\26\26\26\377\0\0\0\377\f\f\f\377\363\363\363\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377'''\377\0\0\0\377\0\0\0\377\303\303\303\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377LLL\377\0\0\0\377\0\0\0\377\276\276\276\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377...\377\0\0\0\377\0\0\0\377\335\335\335\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377$$$\377\0\0\0\377\0\0\0\377\266\266\266\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\225\225\225\377\0\0\0\377\0\0\0\377bbb\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377SSS\377\0\0\0\377\0\0\0\377\233\233\233\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377ggg\377\0\0\0\377\0\0\0\377\210\210\210\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\374\374\374\377\f\f\f\377\0\0\0\377\24\24\24\377\375\375\375\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\332\332\332\377\37\37\37\377\37\37\37\377RRR\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377PPP\377\0\0\0\377\0\0\0\377\243\243\243\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377!!!\377\0\0\0\377\0\0\0\377\305\305\305\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377QQQ\377\0\0\0\377\0\0\0\377\270\270\270\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\263\263\263\377\0\0\0\377\0\0\0\377MMM\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\311\311\311\377\0\0\0\377\0\0\0\377^^^\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\367\367\367\377\2\2\2\377\0\0\0\377\24\24\24\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377<<<\377\0\0\0\377\0\0\0\377\314\314\314\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\323\323\323\377\0\0\0\377\0\0\0\377)))\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377aaa\377KKK\377LLL\377\361\361\361\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377&&&\377\0\0\0\377\0\0\0\377\342\342\342\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\373\373\373\377\24\24\24\377\0\0\0\377\3\3\3\377\315\315\315\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377ggg\377\0\0\0\377\0\0\0\377\253\253\253\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\"\"\"\377\0\0\0\377\0\0\0\377\314\314\314\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\355\355\355\377\v\v\v\377\0\0\0\377\3\3\3\377\367\367\367\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\216\216\216\377\0\0\0\377\0\0\0\377{{{\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377WWW\377\0\0\0\377\0\0\0\377\242\242\242\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\275\275\275\377\0\0\0\377\0\0\0\377\30\30\30\377\376\376\376\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377kkk\377\0\0\0\377\0\0\0\377111\377\373\373\373\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\255\255\255\377\5\5\5\377\0\0\0\377\27\27\27\377\363\363\363\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377{{{\377\0\0\0\377\0\0\0\377@@@\377\362\362\362\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\374\374\374\377MMM\377\0\0\0\377\0\0\0\377JJJ\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377JJJ\377\0\0\0\377\0\0\0\377\275\275\275\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\230\230\230\377\0\0\0\377\0\0\0\377///\377\352\352\352\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\354\354\354\377///\377\0\0\0\377\0\0\0\377\231\231\231\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\336\336\336\377\16\16\16\377\0\0\0\377\0\0\0\377GGG\377\251\251\251\377\364\364\364\377\324\324\324\377\206\206\206\377\3\3\3\377\0\0\0\377\0\0\0\377\242\242\242\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\362\362\362\377\26\26\26\377\0\0\0\377\0\0\0\377...\377\257\257\257\377\336\336\336\377\375\375\375\377\344\344\344\377\257\257\257\377,,,\377\0\0\0\377\0\0\0\377\20\20\20\377\343\343\343\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\372\372\372\377\f\f\f\377\0\0\0\377\4\4\4\377\366\366\366\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\361\361\361\377)))\377\0\0\0\377\0\0\0\377!!!\377\255\255\255\377\344\344\344\377\377\377\377\377\351\351\351\377\262\262\262\377\37\37\37\377\0\0\0\377\0\0\0\377,,,\377\374\374\374\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\253\253\253\377\4\4\4\377\0\0\0\377\0\0\0\377\0\0\0\377\2\2\2\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377fff\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\260\260\260\377\f\f\f\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\3\3\3\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\v\v\v\377\255\255\255\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\302\302\302\377\0\0\0\377\0\0\0\377333\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\335\335\335\377\24\24\24\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\v\v\v\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377000\377\330\330\330\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\277\277\277\377 \377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\20\20\20\377\207\207\207\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\334\334\334\377888\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377WWW\377\343\343\343\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377~~~\377\0\0\0\377\0\0\0\377kkk\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377TTT\377\0\0\0\377\0\0\0\377\254\254\254\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\343\343\343\377hhh\377\5\5\5\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\0\0\0\377\2\2\2\377rrr\377\371\371\371\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\375\375\375\377\270\270\270\377\205\205\205\377lll\377\200\200\200\377\244\244\244\377\363\363\363\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\375\375\375\377\326\326\326\377\256\256\256\377\205\205\205\377ooo\377\220\220\220\377\266\266\266\377\337\337\337\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\345\345\345\377\261\261\261\377\213\213\213\377}}}\377\245\245\245\377\317\317\317\377\366\366\366\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377") 0.0 40.0 solid (0 0 0 1.0) #f) (set-initial-matrix #(1.0 0.0 0.0 1.0 0.0 0.0)) (set-origin 0.0 0.0) (set-scale 1.0 1.0) (set-rotation 0.0) (set-font (8 "Liberation Serif" default normal bold #f default #t unaligned)) (draw-text "1,310,720 points" 128.19140625 0.0 #t 0 0) (set-font (12 #f default normal normal #f default #f aligned))) 190.0 72.0 6.16015625 0.0))
| false |
80085529a44384ba1fdcb3e25babc018c745a129 | c5e9ad8c15b0a353f4d27bfdb95119f9cf4bd973 | /bitmap/tamer/invalid.rkt | 83663273976288717a8e82dfa7a60fddfca9bb7a | []
| no_license | wargrey/graphics | 807d18642df1d3e75456c92ed571038e50aee01e | ba858504ff361f7beba221455304eadf7c01edf0 | refs/heads/master | 2023-08-10T08:18:30.921815 | 2023-07-31T09:57:21 | 2023-07-31T09:57:21 | 99,306,277 | 7 | 4 | null | 2021-04-17T23:27:55 | 2017-08-04T05:27:06 | Racket | UTF-8 | Racket | false | false | 162 | rkt | invalid.rkt | #lang typed/racket/base
(provide (all-defined-out))
(require "../invalid.rkt")
(require "../digitama/unsafe/convert.rkt")
(bitmap-invalid? the-invalid-bitmap)
| false |
869ba5c4904205619e50536e0814e203eecf48cb | b232a8795fbc2176ab45eb3393f44a91112702f7 | /test/rosette-guide-sec43-tests.rkt | fd69093f2dc4b68ba5c3a178056f810dd5f09570 | []
| no_license | ilya-klyuchnikov/typed-rosette | 9845b2fcd8b203749bb3469dea4f70f8cf05c368 | d72d4e7aad2c339fdd49c70682d56f83ab3eae3d | refs/heads/master | 2021-09-20T08:25:13.996681 | 2018-08-06T17:58:30 | 2018-08-06T17:58:30 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 8,446 | rkt | rosette-guide-sec43-tests.rkt | #lang typed/rosette
(require typed/lib/roseunit)
;; Examples from the Rosette Guide, Section 4.3
;; 4.3 Bitvectors
; a bitvector literal of size 7
(check-type (bv 4 (bitvector 7)) : BV -> (bv 4 7))
(check-type (bv 4 7) : BV -> (bv 4 7))
(define-symbolic x y (bitvector 7)) ; symbolic bitvector constants
(check-type x : BV)
(check-type y : BV)
(check-type (bvslt (bv 4 7) (bv -1 7)) : Bool -> #f)
; unsigned 7-bit < comparison of 4 and -1
(check-type (bvult (bv 4 7) (bv -1 7)) : Bool -> #t)
(define-symbolic b boolean?)
; this typechecks only when b is true
(check-type (bvadd x (if b y (bv 3 4))) : BV -> (bvadd x y))
(check-type (asserts) : (CListof Bool) -> (list b)) ; Rosette emits an appropriate assertion
(clear-asserts!)
(check-type b : Bool -> b)
(check-type b : (Term CBool) -> b)
(check-not-type b : CBool)
;; bitvector
(define bv6? (bitvector 6))
(check-type (bv6? 1) : Bool -> #f)
(check-type (bv6? (bv 3 6)) : Bool -> #t)
(check-type (bv6? (bv 3 5)) : Bool -> #f)
;(define-symbolic b boolean?)
(check-type (if b (bv 3 6) #t) : (U CBV CBool))
(check-not-type (if b (bv 3 6) #t) : (CU CBV CBool))
(check-type (bv6? (if b (bv 3 6) #t)) : Bool -> b)
(check-not-type (bv6? (if b (bv 3 6) #t)) : CBool)
;; bitvector?
;(define bv6? (bitvector 6))
(define bv7? (bitvector 7))
;(define-symbolic b boolean?)
(check-type (bitvector? bv6?) : Bool -> #t) ; a concrete bitvector type
(check-type (bitvector? (if b bv6? bv7?)) : Bool -> #f) ; not a concrete type
(check-type (bitvector? integer?) : Bool -> #f) ; not a bitvector type
(check-type (bitvector? 3) : Bool -> #f) ; not a type
;; result is always CBool
(check-type (bitvector? bv6?) : CBool -> #t) ; a concrete bitvector type
(check-type (bitvector? (if b bv6? bv7?)) : CBool -> #f) ; not a concrete type
(check-type (bitvector? integer?) : CBool -> #f) ; not a bitvector type
(check-type (bitvector? 3) : CBool -> #f) ; not a type
;; check CFalse when possible
(check-not-type (bitvector? bv6?) : CFalse) ; a concrete bitvector type
(check-type (bitvector? (if b bv6? bv7?)) : CFalse -> #f) ; not a concrete type
(check-not-type (bitvector? integer?) : CFalse) ; not a bitvector type
(check-type (bitvector? 3) : CFalse -> #f) ; not a type
;; bv?
(check-type (bv? 1) : Bool -> #f)
(check-type (bv? (bv 1 1)) : Bool -> #t)
(check-type (bv? (bv 2 2)) : Bool -> #t)
;define-symbolic b boolean?)
(check-type (bv? (if b (bv 3 6) #t)) : Bool -> b)
;; 4.3.1 Comparison Ops
(define-symbolic u v (bitvector 7)) ; symbolic bitvector constants
(check-type (bvslt (bv 4 7) (bv -1 7)) : Bool -> #f) ; signed 7-bit < of 4 and -1
(check-type (bvult (bv 4 7) (bv -1 7)) : Bool -> #t) ; unsigned 7-bit < of 4 and -1
;(define-symbolic b boolean?)
(check-type (bvsge u (if b v (bv 3 4))) : Bool -> (bvsle v u)) ; b must be true, else err
(check-type (asserts) : (CListof Bool) -> (list b)) ; so Rosette emits assertion
(clear-asserts!)
;; 4.3.2 Bitwise Ops
(check-type (bvnot (bv -1 4)) : BV -> (bv 0 4))
(check-type (bvnot (bv 0 4)) : BV -> (bv -1 4))
;(define-symbolic b boolean?)
;; typed Rosette rejects this program
(typecheck-fail (bvnot (if b 0 (bv 0 4)))
#:with-msg "expected.*BV.*given.*\\(U Zero CBV\\)")
;; need assert-type annotation
(check-type (bvnot (assert-type (if b 0 (bv 0 4)) : BV)) : BV -> (bv -1 4))
(check-type (asserts) : (CListof Bool) -> (list (! b)))
(clear-asserts!)
(check-type (bvand (bv -1 4) (bv 2 4)) : BV -> (bv 2 4))
(check-type (bvor (bv 0 3) (bv 1 3)) : BV -> (bv 1 3))
(check-type (bvxor (bv -1 5) (bv 1 5)) : BV -> (bv -2 5))
;(define-symbolic b boolean?)
;; typed Rosette rejects this program
(typecheck-fail (bvand (bv -1 4) (if b 0 (bv 2 4)))
#:with-msg "expected.*BV.*given.*\\(U Zero CBV\\)")
;; need assert-type annotation
(check-type (bvand (bv -1 4) (assert-type (if b 0 (bv 2 4)) : BV)) : BV -> (bv 2 4))
(check-type (asserts) : (CListof Bool) -> (list (! b)))
(clear-asserts!)
(check-type (bvshl (bv 1 4) (bv 2 4)) : BV -> (bv 4 4))
(check-type (bvlshr (bv -1 3) (bv 1 3)) : BV -> (bv 3 3))
(check-type (bvashr (bv -1 5) (bv 1 5)) : BV -> (bv -1 5))
;(define-symbolic b boolean?)
;; typed Rosette rejects this program
(typecheck-fail (bvshl (bv -1 4) (if b 0 (bv 2 4)))
#:with-msg "expected.*BV.*given.*\\(U Zero CBV\\)")
;; need assert-type annotation
(check-type (bvshl (bv -1 4) (assert-type (if b 0 (bv 2 4)) : BV)) : BV -> (bv -4 4))
(check-type (asserts) : CAsserts -> (list (! b)))
(clear-asserts!)
;; 4.3.3 Arithmetic Ops
(check-type (bvneg (bv -1 4)) : BV -> (bv 1 4))
(check-type (bvneg (bv 0 4)) : BV -> (bv 0 4))
(define-symbolic z (bitvector 3))
(check-type (bvneg z) : BV -> (bvneg z))
(check-type (bvadd (bv -1 4) (bv 2 4)) : BV -> (bv 1 4))
(check-type (bvsub (bv 0 3) (bv 1 3)) : BV -> (bv -1 3))
(check-type (bvmul (bv -1 5) (bv 1 5)) : BV -> (bv -1 5))
;> (define-symbolic b boolean?)
;; typed Rosette rejects this program
(typecheck-fail (bvadd (bv -1 4) (bv 2 4) (if b (bv 1 4) "bad"))
#:with-msg "expected.*BV.*given.*\\(U CBV String\\)")
;; need assert-type annotation
(check-type (bvadd (bv -1 4) (bv 2 4) (assert-type (if b (bv 1 4) "bad") : BV))
: BV -> (bv 2 4))
(check-type (asserts) : CAsserts -> (list b))
(clear-asserts!)
(check-type (bvsdiv (bv -3 4) (bv 2 4)) : BV -> (bv -1 4))
(check-type (bvudiv (bv -3 3) (bv 2 3)) : BV -> (bv 2 3))
(check-type (bvsmod (bv 1 5) (bv 0 5)) : BV -> (bv 1 5))
;> (define-symbolic b boolean?)
;; typed Rosette rejects this program
(typecheck-fail (bvsrem (bv -3 4) (if b (bv 2 4) "bad"))
#:with-msg "expected.*BV.*given.*\\(U CBV String\\)")
;; need assert-type annotation
(check-type (bvsrem (bv -3 4) (assert-type (if b (bv 2 4) "bad") : BV))
: BV -> (bv -1 4))
(check-type (asserts) : CAsserts -> (list b))
(clear-asserts!)
;; 4.3.4 Conversion Ops
(check-type (concat (bv -1 4) (bv 0 1) (bv -1 3)) : BV -> (bv -9 8))
;> (define-symbolic b boolean?)
(check-type (concat (bv -1 4) (if b (bv 0 1) (bv 0 2)) (bv -1 3))
: BV); -> {[b (bv -9 8)] [(! b) (bv -25 9)]})
(check-type (extract 2 1 (bv -1 4)) : BV -> (bv -1 2))
(check-type (extract 3 3 (bv 1 4)) : BV -> (bv 0 1))
(define-symbolic i j integer?)
(check-type (extract i j (bv 1 2)) : BV -> (extract i j (bv 1 2)))
; -> {[(&& (= 0 j) (= 1 i)) (bv 1 2)] ...}
(check-type (asserts) : CAsserts -> (list (< i 2) (<= 0 j) (<= j i)))
(clear-asserts!)
(check-type (sign-extend (bv -3 4) (bitvector 6)) : BV -> (bv -3 6))
(check-type (zero-extend (bv -3 4) (bitvector 6)) : BV -> (bv 13 6))
(define-symbolic c boolean?)
(check-type (zero-extend (bv -3 4) (if b (bitvector 5) (bitvector 6)))
: BV -> (zero-extend (bv -3 4) (if b (bitvector 5) (bitvector 6))))
; {[b (bv 13 5)] [(! b) (bv 13 6)]})
;; typed Rosette rejects this program
(typecheck-fail (zero-extend (bv -3 4) (if b (bitvector 5) "bad"))
#:with-msg "expected.*BVPred.*given.*\\(U CBVPred String\\)")
;; need assert-type annotation
(check-type (zero-extend (bv -3 4) (assert-type (if b (bitvector 5) "bad") : BVPred))
: BV -> (bv 13 5))
(check-type (asserts) : CAsserts -> (list b))
(check-type (zero-extend (bv -3 4) (if c (bitvector 5) (bitvector 1))) : BV -> (bv 13 5))
(check-type (asserts) : CAsserts -> (list c b))
(clear-asserts!)
(check-type (bitvector->integer (bv -1 4)) : Int -> -1)
(check-type (bitvector->natural (bv -1 4)) : Nat -> 15)
;> (define-symbolic b boolean?)
(check-type (bitvector->integer (if b (bv -1 3) (bv -3 4))) : Int -> (if b -1 -3))
;; typed Rosette rejects this program
(typecheck-fail (bitvector->integer (if b (bv -1 3) "bad"))
#:with-msg "expected.*BV.*given.*\\(U CBV String\\)")
;; need assert-type annotation
(check-type (bitvector->integer (assert-type (if b (bv -1 3) "bad") : BV)) : Int -> -1)
(check-type (asserts) : CAsserts -> (list b))
(clear-asserts!)
(check-type (integer->bitvector 4 (bitvector 2)) : BV -> (bv 0 2))
(check-type (integer->bitvector 15 (bitvector 4)) : BV -> (bv -1 4))
;> (define-symbolic b c boolean?)
;; typed Rosette rejects this program
(typecheck-fail (integer->bitvector (if b pi 3) (if c (bitvector 5) (bitvector 6)))
#:with-msg "expected.*Int.*given.*Num")
(check-type (if b pi 3) : Num)
(check-not-type (if b pi 3) : Int)
;; need assert-type annotation
(define res (integer->bitvector (assert-type (if b pi 3) : Int)
(if c (bitvector 5) (bitvector 6))))
(check-type res : BV) ;{[c (bv 3 5)] [(! c) (bv 3 6)]})
(check-type (asserts) : CAsserts -> (list (! b)))
| false |
8e18e88563aa28b9a900c0276592dde819aeb8cc | d0d656b7729bd95d688e04be38dde7d8cde19d3d | /1/1.2/solution.1.18.rkt | cbe18f41b274da7c20bcb707f774d7d295aa6138 | [
"MIT"
]
| permissive | search-good-project/SICP-in-Racket | f0157335a1d39c8ff4231e579fc13b0297c07e65 | daaae62db83bf8e911f4b8dbd00f8509113f557a | refs/heads/master | 2022-02-20T01:21:33.633182 | 2019-09-16T03:58:02 | 2019-09-16T03:58:02 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 375 | rkt | solution.1.18.rkt | #lang sicp
;; double必须使用+方式,因为*方式已经被重新定义了。
(define (double a)
(+ a a))
(define (halve a)
(/ a 2))
(define (* a b)
(fast-product 0 a b))
(define (fast-product p a b)
(cond ((= b 0) p)
((even? b) (fast-product p (double a) (halve b)))
(else (fast-product (+ p a) a (- b 1)))))
(* 123456789 987654321)
(* 7 9)
| false |
8678cad162d413563656b829bc652ae5ca6a7d46 | f5da4884c236512f9a945100234e213e51f980d3 | /test/x86/shift.rkt | 9b98f869210e7a3aedb7e0e0c1f4e66b1ecb3fcd | [
"MIT"
]
| permissive | uw-unsat/serval | 87574f5ec62480463ae976468d4ae7a56e06fe9f | 72adc4952a1e62330aea527214a26bd0c09cbd05 | refs/heads/master | 2022-05-12T23:19:48.558114 | 2022-01-20T18:53:26 | 2022-01-20T18:53:26 | 207,051,966 | 45 | 12 | MIT | 2022-03-21T14:05:50 | 2019-09-08T02:40:10 | Racket | UTF-8 | Racket | false | false | 405 | rkt | shift.rkt | #lang racket/base
(require
"lib.rkt")
(define tests
(x86-suite "SAR/SHL/SHR"
sar-r/m32-1 sar-r/m64-1
shl-r/m32-1 shl-r/m64-1
shr-r/m32-1 shr-r/m64-1
sar-r/m32-cl sar-r/m64-cl
shl-r/m32-cl shl-r/m64-cl
shr-r/m32-cl shr-r/m64-cl
sar-r/m32-imm8 sar-r/m64-imm8
shl-r/m32-imm8 shl-r/m64-imm8
shr-r/m32-imm8 shr-r/m64-imm8
))
(module+ test
(time (run-tests tests)))
| false |
26fcf1ed8fd7bbfc2918e37faebd9e84403f87f1 | 5bbc152058cea0c50b84216be04650fa8837a94b | /experimental/micro/suffixtree/typed/label-label-length.rkt | 05a65b2ebee2c06caf298bf7e57db1730a708250 | []
| no_license | nuprl/gradual-typing-performance | 2abd696cc90b05f19ee0432fb47ca7fab4b65808 | 35442b3221299a9cadba6810573007736b0d65d4 | refs/heads/master | 2021-01-18T15:10:01.739413 | 2018-12-15T18:44:28 | 2018-12-15T18:44:28 | 27,730,565 | 11 | 3 | null | 2018-12-01T13:54:08 | 2014-12-08T19:15:22 | Racket | UTF-8 | Racket | false | false | 487 | rkt | label-label-length.rkt | #lang typed/racket/base
(provide label-length)
;; -----------------------------------------------------------------------------
(require "data-label-adapted.rkt")
;; =============================================================================
;; label-length: label -> number?
;; Returns the length of the label.
(: label-length (-> label Index))
(define (label-length label)
(define len (- (label-j label) (label-i label)))
(unless (index? len) (error "label-length"))
len)
| false |
60f5ca6996a1685dd6c1d19f9a75f0d1e18f1092 | 1c2209c90f3a026361465e9e7d7a291394a77fc6 | /sxml/ddo-txpath.rkt | 8ddecdbf04b98566c4e0da7f6b5130274a6b37d9 | []
| no_license | jbclements/sxml | 2c1d1b06cdf40187c2141d47ae472ad2708cd456 | 5d1d65561b7bf5059456934c34a5c5f257de4416 | refs/heads/master | 2023-03-11T23:57:19.065847 | 2023-03-03T05:56:52 | 2023-03-03T05:56:52 | 1,371,026 | 30 | 10 | null | 2023-03-03T05:56:53 | 2011-02-15T20:23:20 | Racket | UTF-8 | Racket | false | false | 89,801 | rkt | ddo-txpath.rkt | #lang racket/base
(require racket/promise
"ssax/sxpathlib.rkt"
srfi/2
"sxpath-ext.rkt"
"txpath.rkt"
"xpath-ast.rkt"
"xpath-context_xlink.rkt"
"ddo-axes.rkt")
(provide (all-defined-out))
;; XPath implementation with distinct document order support
;
; This software is in Public Domain.
; IT IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND.
;
; Please send bug reports and comments to:
; [email protected] Dmitry Lizorkin
;=========================================================================
; Miscellaneous
; Implement 'or' as a function, so that we could 'apply' it
(define (ddo:or . args)
(if (null? args) #f (or (car args) (apply ddo:or (cdr args)))))
;(define (ddo:foldl op init lst)
; (if (null? lst)
; init
; (ddo:foldl op (op (car lst) init) (cdr lst))))
(define (ddo:foldr op init lst)
(if (null? lst)
init
(op (car lst)
(ddo:foldr op init (cdr lst)))))
; Definition of types
(define ddo:type-nodeset 'ddo:type-nodeset)
(define ddo:type-number 'ddo:type-number)
(define ddo:type-string 'ddo:type-string)
(define ddo:type-boolean 'ddo:type-boolean)
(define ddo:type-any 'ddo:type-any)
;------------------------------------------------
; Comparison for nodesets
; In order to compare nodesets produced by conventional SXPath and SXPath with
; distinct document order support, we must take into account that members in
; each of the nodesets being compared can be ordered differently.
; Whether all members from the first nodeset are contained in the second
; nodeset
(define (ddo:nset-contained? nodeset1 nodeset2)
(cond
((null? nodeset1) #t)
((memq (car nodeset1) nodeset2)
(ddo:nset-contained? (cdr nodeset1) nodeset2))
(else #f)))
(define (ddo:nset-equal? nodeset1 nodeset2)
(and (ddo:nset-contained? nodeset1 nodeset2)
(ddo:nset-contained? nodeset2 nodeset1)))
;=========================================================================
; Different cases of nodeset filtering
;------------------------------------------------
; Filtering pos-result with (position-based) predicates and combining
; a filtered pos-result into a distinct document order nodeset
; pos-result ::= (listof pos-nodeset)
; pos-nodeset ::= (listof (cons node order-num))
; Each pos-nodeset is a result of applying the axis to a single node in the
; input nodeset. Pos-result can be informally considered as
; (map axis-pos input-nodeset)
; Each node in the pos-nodeset comes with its order number. An order-num is
; an integer, possibly a negative one. A node precedes another node in
; document order if the order-num of the former node is less than the order-num
; of the latter node. Equal order-nums (in different pos-nodesets) correspond
; to equal nodes.
; Each pos-nodeset is sorted in accordance with the position() of each of its
; members. Consequently, order-nums increase within pos-nodeset for forward
; XPath axes and decrease for reverse XPath axes.
; Whether pos-result in a forward order
; Return #t if in document order, #f if in reverse document order
(define (ddo:pos-result-forward? pos-result)
(let loop ((pos-res pos-result))
(cond
((null? pos-res) ; every pos-nodeset has the length of <2
#t)
((or (null? (car pos-res)) (null? (cdar pos-res)))
; this pos-nodeset has the length of less or equal to 1
(loop (cdr pos-res)))
(else
(< (cdaar pos-res) (cdadar pos-res))))))
; Unites pos-result into a nodeset in distinct document order
(define (ddo:pos-result->nodeset pos-result)
(letrec (; Combines 2 pos-nodesets into a single one
(combine-2-pos-nodesets
(lambda (chain1 chain2)
(cond
((null? chain1) chain2)
((null? chain2) chain1)
; None of the chains are null
((eq? (caar chain1) (caar chain2)) ; equal nodes
; the same with (= (cdar chain1) (cdar chain2))
(cons (car chain1)
(combine-2-pos-nodesets (cdr chain1) (cdr chain2))))
((< (cdar chain1) (cdar chain2))
(cons (car chain1)
(combine-2-pos-nodesets (cdr chain1) chain2)))
(else
(cons (car chain2)
(combine-2-pos-nodesets chain1 (cdr chain2))))))))
(if
(null? pos-result) ; nothing to do
pos-result
(let ((pos-result (if (ddo:pos-result-forward? pos-result)
pos-result
(map reverse pos-result))))
(let loop ((res (car pos-result))
(to-scan (cdr pos-result)))
(if (null? to-scan)
res
(loop (combine-2-pos-nodesets res (car to-scan))
(cdr to-scan))))))))
; pos-axis-impl ::= lambda
; pred-impl-lst ::= (listof lambda)
; Every predicate is called with respect to each node
; Returns: lambda
; lambda ::= (lambda (nodeset position+size var-binding) ...)
(define (ddo:location-step-pos pos-axis-impl pred-impl-lst)
(lambda (nodeset position+size var-binding)
(map
car
(ddo:pos-result->nodeset
(map
(lambda (pos-nodeset)
(let iter-preds ((nset pos-nodeset)
(preds pred-impl-lst))
(if
(null? preds)
nset
(let ((size (length nset))) ; context size
(let iter-pairs ((nset nset)
(res '())
(pos 1))
(if
(null? nset) ; continue with the next predicate
(iter-preds (reverse res) (cdr preds))
(let ((val ((car preds) ; predicate value
(list (caar nset)) (cons pos size) var-binding)))
(iter-pairs (cdr nset)
(if (if (number? val)
(= val pos)
(sxml:boolean val))
(cons (car nset) res)
res)
(+ pos 1)))))))))
(pos-axis-impl nodeset))))))
;------------------------------------------------
; Implementation for location step for the other cases
; A location step for the axis which doesn't return a result in the form of
; a pos-nodeset, but instead resulting nodesets for each input node are in
; document order
; pos-axis-impl ::= lambda
; pred-impl-lst ::= (listof lambda)
; Every predicate is called with respect to each node
; Returns: lambda
; lambda ::= (lambda (nodeset position+size var-binding) ...)
; This function is somewhat similar to 'sxml:xpath-nodeset-filter' from
; "txpath.scm"
(define (ddo:location-step-non-intersect axis-impl pred-impl-lst)
(lambda (nodeset position+size var-binding)
(map-union
(lambda (node)
(let iter-preds ((nset (axis-impl node))
(preds pred-impl-lst))
(if
(null? preds)
nset
(let ((size (length nset))) ; context size
(let iter-nodes ((nset nset)
(res '())
(pos 1))
(if
(null? nset) ; continue with the next predicate
(iter-preds (reverse res) (cdr preds))
(let ((val ((car preds) ; predicate value
(list (car nset)) (cons pos size) var-binding)))
(iter-nodes (cdr nset)
(if (if (number? val)
(= val pos)
(sxml:boolean val))
(cons (car nset) res)
res)
(+ pos 1)))))))))
nodeset)))
; A location step doesn't contain position-based predicates
(define (ddo:location-step-non-pos axis-impl pred-impl-lst)
(lambda (nodeset position+size var-binding)
(let iter-preds ((nset (axis-impl nodeset))
(preds pred-impl-lst))
(if
(null? preds)
nset
(let ((curr-pred (car preds)))
(iter-preds
(filter
(lambda (node)
(sxml:boolean
(curr-pred (list node)
(cons 1 1) ; dummy
var-binding)))
nset)
(cdr preds)))))))
;------------------------------------------------
; Implementations for FilterExpr
; Implementing FilterExpr in the general case, for position-based predicates
(define (ddo:filter-expr-general expr-impl pred-impl-lst)
(lambda (nodeset position+size var-binding)
(let ((prim-res (expr-impl nodeset position+size var-binding)))
(cond
((not (nodeset? prim-res))
(sxml:xpath-error "filter" "nodeset" prim-res)
'())
(else
(let iter-preds ((nset prim-res)
(preds pred-impl-lst))
(if
(null? preds)
nset
(let ((size (length nset))) ; context size
(let iter-nodes ((nset nset)
(res '())
(pos 1))
(if
(null? nset) ; continue with the next predicate
(iter-preds (reverse res) (cdr preds))
(let ((val ((car preds) ; predicate value
(list (car nset)) (cons pos size) var-binding)))
(iter-nodes (cdr nset)
(if (if (number? val)
(= val pos)
(sxml:boolean val))
(cons (car nset) res)
res)
(+ pos 1)))))))))))))
; A FilterExpr doesn't contain position-based predicates
; NOTE: This function is very similar to 'ddo:location-step-non-pos'
; Should think of combining them.
(define (ddo:filter-expr-non-pos expr-impl pred-impl-lst)
(lambda (nodeset position+size var-binding)
(let ((prim-res (expr-impl nodeset position+size var-binding)))
(cond
((not (nodeset? prim-res))
(sxml:xpath-type-error "filter" "nodeset" prim-res)
'())
(else
(let iter-preds ((nset prim-res)
(preds pred-impl-lst))
(if
(null? preds)
nset
(let ((curr-pred (car preds)))
(iter-preds
(filter
(lambda (node)
(sxml:boolean
(curr-pred (list node)
(cons 1 1) ; dummy
var-binding)))
nset)
(cdr preds))))))))))
; Filter expression, with a single predicate of the special structure, like
; [position()=1]
; special-pred-impl ::= (lambda (nodeset) ...) - filters the nodeset
(define (ddo:filter-expr-special-predicate expr-impl special-pred-impl)
(lambda (nodeset position+size var-binding)
(let ((prim-res (expr-impl nodeset position+size var-binding)))
(if
(not (nodeset? prim-res))
(begin
(sxml:xpath-type-error "filter" "nodeset" prim-res)
'())
(special-pred-impl prim-res)))))
;=========================================================================
; Uniting context-sets, preserving distinct document order
; Is required for XPath UnionExpr
; Returns all contexts of the document, including the ones for attribute nodes
; and for attribute value nodes. All contexts are returned in document order,
; attribute value nodes immediately follow attribute nodes
(define (ddo:all-contexts-in-doc doc)
(let iter-nodes ((contents (map
(lambda (kid) (list kid doc))
((sxml:child sxml:node?) doc)))
(res (list doc)))
(cond
((null? contents) ; every content processed
(reverse res))
((not ((ntype?? '*) (caar contents))) ; text node or PI or etc.
(iter-nodes (cdr contents)
(cons
(draft:make-context (caar contents) (cdar contents))
res)))
(else ; element node
(let iter-attrs ((attrs (sxml:attr-list (caar contents)))
(res (cons
(draft:make-context
(caar contents) (cdar contents))
res)))
(cond
((null? attrs) ; all attributes of a given element processed
(iter-nodes
(append (map
(lambda (kid) (cons kid (car contents)))
((sxml:child sxml:node?) (caar contents)))
(cdr contents))
res))
((not (sxml:node? (car attrs))) ; aux node of SXML 3.0
(iter-attrs (cdr attrs) res))
((null? (cdar attrs)) ; singular attribute
(iter-attrs (cdr attrs)
(cons
(draft:make-context (car attrs) (car contents))
res)))
(else ; an attribute has a value
(iter-attrs
(cdr attrs)
(cons ; attribute value
(draft:make-context (cadar attrs)
(cons (car attrs) (car contents)))
(cons
(draft:make-context (car attrs) (car contents))
res))))))))))
; Every context in both context-sets must contain all the ancestors of the
; context node (this corresponds to the num-ancestors=#f)
; All nodes must have one and the same root node (i.e. this function cannot
; correctly unite context-sets whose members belong to different documents)
; Returns the context-set that is a distinct-document-order union of the
; argument context-sets
(define (ddo:unite-2-contextsets cntset1 cntset2)
(if
(null? cntset1) ; nothing to do
cntset2
(let loop ((order (ddo:all-contexts-in-doc
(draft:list-last
(sxml:context->content (car cntset1)))))
(cntset1 cntset1)
(cntset2 cntset2)
(res '()))
(cond
((null? cntset1)
(append (reverse res) cntset2))
((null? cntset2)
(append (reverse res) cntset1))
; order should never be null
((eq? (sxml:context->node (car order))
(sxml:context->node (car cntset1)))
(loop (cdr order)
(cdr cntset1)
(if (eq? (sxml:context->node (car cntset1))
(sxml:context->node (car cntset2)))
(cdr cntset2)
cntset2)
(cons (car cntset1) res)))
((eq? (sxml:context->node (car order))
(sxml:context->node (car cntset2)))
(loop (cdr order)
cntset1
(cdr cntset2)
(cons (car cntset2) res)))
(else
(loop (cdr order) cntset1 cntset2 res))))))
; Based on the function for uniting 2 context-sets, unites multiple
; context-sets
(define (ddo:unite-multiple-context-sets . context-sets)
(if (null? context-sets) ; nothing to do
'()
(let loop ((res (car context-sets))
(more (cdr context-sets)))
(if (null? more)
res
(loop (ddo:unite-2-contextsets res (car more))
(cdr more))))))
;=========================================================================
; Optimizing special predicates like [position()=1] and the like
; Similar to R5RS list-tail, but returns an empty list when k > (length lst)
(define (ddo:list-tail lst k)
(if (or (null? lst) (<= k 0))
lst
(ddo:list-tail (cdr lst) (- k 1))))
; Takes the first k members of the list
; The whole list is taken when k > (length lst)
(define (ddo:list-head lst k)
(if (or (null? lst) (<= k 0))
'()
(cons (car lst) (ddo:list-head (cdr lst) (- k 1)))))
; Similar to R5RS list-tail, but returns an empty list when
; (or (< k 0) (> k (length lst))
(define (ddo:list-ref lst k)
(cond ((null? lst) lst)
((zero? k) (car lst))
(else (ddo:list-ref (cdr lst) (- k 1)))))
;-------------------------------------------------
; Checks for a special structure of the predicate in its AST representation
; Checks whether the given op is the AST representation to a function call
; to position()
(define ddo:check-ast-position?
(let ((ddo:ast-for-position-fun-call ; evaluate just once
(txp:expr->ast "position()")))
(lambda (op)
(equal? op ddo:ast-for-position-fun-call))))
; If the given op is the AST representation for a number and this number is
; exact, returns this number. Otherwise returns #f
(define (ddo:check4ast-number op)
(if
(eq? (car op) 'number)
(let ((number (cadr op)))
(if (and (number? number) (exact? number))
number #f))
#f))
; In case when the predicate has one of the following forms:
; SpecialPredicate ::= [ Number ]
; | [ position() CmpOp Number ]
; | [ Number CmpOp position() ]
; CmpOp ::= > | < | >= | <= | =
; Number - an integer
; than returns (lambda (nodeset) ...), where the lambda performs the required
; filtering as specified by the predicate.
; For a different sort of a predicate, returns #f
; The function doesn't signal of any semantic errors.
(define (ddo:check-special-predicate op)
(if
(not (eq? (car op) 'predicate))
#f ; an improper AST
(let ((expr (cadr op)))
(cond
((ddo:check4ast-number expr)
=> (lambda (num)
(lambda (nodeset) (ddo:list-ref nodeset (- num 1)))))
((and (memq (car expr) '(= > < >= <=))
(= (length expr) 3))
(call-with-values
(lambda ()
(cond
((and (ddo:check-ast-position? (cadr expr))
(ddo:check4ast-number (caddr expr)))
=> (lambda (num) (values (car expr) num)))
((and (ddo:check-ast-position? (caddr expr))
(ddo:check4ast-number (cadr expr)))
=> (lambda (num)
(values
(cond ; invert the cmp-op
((assq (car expr)
'((< . >) (> . <) (>= . <=) (<= . >=)))
=> cdr)
(else (car expr)))
num)))
(else
(values #f #f))))
(lambda (cmp-op num)
(if
(not num)
#f
(case cmp-op
((=)
(lambda (nodeset) (ddo:list-ref nodeset (- num 1))))
((>)
(lambda (nodeset) (ddo:list-tail nodeset num)))
((>=)
(lambda (nodeset) (ddo:list-tail nodeset (- num 1))))
((<)
(lambda (nodeset) (ddo:list-head nodeset (- num 1))))
((<=)
(lambda (nodeset) (ddo:list-head nodeset num)))
(else ; internal error
#f))))))
(else ; not an equality or relational expr with 2 arguments
#f)))))
;=========================================================================
; Some simple rewrites for XPath AST
; Whether a given AST node is the representation of the location step
; "descendant-or-self::node()", which is the full syntax for its abbreviated
; equivalent "//"
(define ddo:check-ast-desc-os?
(let ((ddo:ast-for-desc-os ; evaluate just once
(cadr ; selects the first location step
(txp:xpath->ast "//dummy"))))
(lambda (op)
(equal? op ddo:ast-for-desc-os))))
; Rewrites the sequence of location steps, by combining the two consecutive
; steps "//para" into a single one "descendant::para"
; Returns the reconstructed list of steps
(define (ddo:rewrite-step* op-lst)
(cond
((or (null? op-lst) (null? (cdr op-lst))) ; nothing to rewrite
op-lst)
; There are at least 2 steps in a sequence of steps
((and (ddo:check-ast-desc-os? (car op-lst))
; Next step uses a child axis specifier
(equal? (txp:step-axis (cadr op-lst)) '(child))
; Next step doesn't use any predicates
(null? (txp:step-preds (cadr op-lst))))
(cons
(txp:construct-step
'(descendant) ; rewrite into descendant axis
(txp:step-node-test (cadr op-lst)) ; Node test of the next step
)
(ddo:rewrite-step* (cddr op-lst))))
(else ; Any other case
(cons (car op-lst)
(ddo:rewrite-step* (cdr op-lst))))))
;=========================================================================
; Optimization for deeply nested predicates
; For predicates whose level of nesting exceeds 3, these predicates are likely
; to be called for more than n^3 times, where n is the number of nodes in an
; SXML document being processed. For such predicates, it is desirable to
; evaluate them in advance, for every combination of context node, context
; position and context size (the latter two components are not even required
; if the predicate doesn't use position).
; Such an optimization allows achieving a polinomial-time complexity for any
; XPath expression
(define (ddo:generate-pred-id)
(string->symbol
(string-append "*predicate-" (symbol->string (gensym)) "*")))
;-------------------------------------------------
; Search for predicate values
; Predicate values are added to var-binding
; Predicate value for a predicate that doesn't require position
; Predicate values are stored in the form of
; pred-values ::= (listof (cons node pred-value))
; NOTE: A node (and not a context) is used as a key in the alist
(define (ddo:get-pred-value pred-id)
(lambda (nodeset position+size var-binding)
(cond
((not (and (nodeset? nodeset)
(null? (cdr nodeset))))
(sxml:xpath-error
"internal DDO SXPath error; predicate given a non-singleton nodeset: ~e" pred-id)
#f)
((or (null? var-binding)
(not (eq? (caar var-binding) '*var-vector*)))
(sxml:xpath-error
"internal DDO SXPath error; predicate value not found: ~e " pred-id)
#f)
; predicate value as expected
((assq (sxml:context->node (car nodeset))
(vector-ref (cdar var-binding) pred-id))
=> (lambda (pair) (force (cdr pair)))
; => cdr ; DL: was
)
(else ; predicate value for the given node not found
(sxml:xpath-error
"internal DDO SXPath error; no predicate '~a' for node: ~e"
pred-id (sxml:context->node (car nodeset)))
#f))))
; Predicate value for a predicate that requires position
; Predicate values are stored in the form of
; pred-values ::=
; (listof
; (cons node
; (listof
; (cons size
; (listof
; (cons position pred-value))))))
; NOTE: A node (and not a context) is used as a key in the alist
(define (ddo:get-pred-value-pos pred-id)
(lambda (nodeset position+size var-binding)
(cond
((not (and (nodeset? nodeset)
(null? (cdr nodeset))))
(sxml:xpath-error
"internal DDO SXPath error; predicate given a non-singleton nodeset: ~e" pred-id)
#f)
((or (null? var-binding)
(not (eq? (caar var-binding) '*var-vector*)))
(sxml:xpath-error
"internal DDO SXPath error; predicate value not found: ~e" pred-id)
#f)
; predicate value as expected
((assq (sxml:context->node (car nodeset))
(vector-ref (cdar var-binding) pred-id))
=> (lambda (size-pair)
(if
(> (cdr position+size) ; context size
(vector-length (cdr size-pair)))
(begin
(sxml:xpath-error
"internal DDO SXPath error; vector member for context size not found: ~e"
pred-id)
#f)
(let ((pos-vect (vector-ref (cdr size-pair)
(- (cdr position+size) 1))))
(if
(> (car position+size) ; context position
(vector-length pos-vect))
(begin
(sxml:xpath-error
"internal DDO SXPath error; vector member for context position not found: ~e"
pred-id)
#f)
(force (vector-ref pos-vect
(- (car position+size) 1))))))))
(else ; predicate value for the given node not found
(sxml:xpath-error
"internal DDO SXPath error; no predicate '~s' for node: ~e"
pred-id (sxml:context->node (car nodeset)))
#f))))
; Value that results from evaluating the absolute location path
; The argument is named `pred-id' for the sake of mere unification with
; deep predicates
(define (ddo:get-abs-lpath-value pred-id)
(lambda (nodeset position+size var-binding)
(if
(or (null? var-binding)
(not (eq? (caar var-binding) '*var-vector*)))
(begin
(sxml:xpath-error
"internal DDO SXPath error; value for absolute location path not found: ~e" pred-id)
'() ; the value defaults to an empty nodeset
)
(vector-ref (cdar var-binding) pred-id))))
;-------------------------------------------------
; Construct predicate values
; Construct alist of values for a predicate that doesn't require position
; pred-impl - lambda that implements the predicate
; context-set - set of contexts for all nodes in the source document
; var-bindings - include variables supplied by user and the ones formed by
; deeper level predicates
(define (ddo:construct-pred-values pred-impl context-set var-binding)
(map
(lambda (context)
(cons (sxml:context->node context)
(delay
(sxml:boolean ; since return type cannot be number
(pred-impl (list context)
(cons 1 1) ; dummy context position and size
var-binding)))))
context-set))
; Construct alist of values for a predicate that requires position
; pred-impl - lambda that implements the predicate
; context-set - set of contexts for all nodes in the source document
; var-bindings - include variables supplied by user and the ones formed by
; deeper level predicates
; max-size - maximal context size possible in the document
(define (ddo:construct-pred-values-pos
pred-impl context-set var-binding max-size)
(map
(lambda (context)
(cons
(sxml:context->node context)
(let ((context (list context)))
(let iter-size ((size 1)
(size-lst '()))
(if
(> size max-size) ; iteration is over
(list->vector (reverse size-lst))
(let iter-pos ((position 1)
(pos-lst '()))
(if
(> position size) ; iteration is over
(iter-size
(+ size 1)
(cons (list->vector (reverse pos-lst))
size-lst))
(iter-pos
(+ position 1)
(cons
(delay
(let ((pred-value
(pred-impl
context (cons position size) var-binding)))
(if (number? pred-value)
(= pred-value position)
(sxml:boolean pred-value))))
pos-lst)))))))))
context-set))
; DL: obsolete
;; Evaluates all predicates specified in deep-predicates
;; deep-predicates ::= (listof (list pred-id requires-position? impl))
;; Returns var-bindings extended with predicate values evaluated
;; ATTENTION: in deep-predicates, each predicate must come after a predicate it
;; is dependent on.
;(define (ddo:evaluate-deep-predicates deep-predicates doc var-binding)
; (let* ((context-set (ddo:all-contexts-in-doc doc))
; (max-size (if
; ; position-required? for at least one deep predicate
; (not (null? (filter cadr deep-predicates)))
; (length context-set)
; 1 ; dummy
; )))
; (let iter-preds ((deep-predicates deep-predicates)
; (var-binding var-binding))
; (if
; (null? deep-predicates) ; iteration is over
; var-binding
; (iter-preds
; (cdr deep-predicates)
; (cons
; (if
; (cadar deep-predicates) ; requires-position?
; (ddo:construct-pred-values-pos (caar deep-predicates) ; pred-id
; (caddar deep-predicates) ; pred-impl
; context-set
; var-binding max-size)
; (ddo:construct-pred-values (caar deep-predicates) ; pred-id
; (caddar deep-predicates) ; pred-impl
; context-set
; var-binding))
; var-binding))))))
;=========================================================================
; Optimization for achieving constant access time to XPath variables
; Allocates the new vector from `vect' with the exception of position `k' which
; is replaced with `obj'
(define (ddo:vector-copy-set vect k obj)
(let loop ((src (vector->list vect))
(pos 0)
(res '()))
(if
(null? src) ; iteration is over
(list->vector (reverse res))
(loop (cdr src)
(+ pos 1)
(cons
(if (= pos k) obj (car src))
res)))))
; Extends `var-binding' with a vector data structure for binding variable
; values and values for deep predicates.
; Returns extended var-binding, which is constructed as follows:
; (cons (cons '*var-vector* ,vector)
; var-binding)
(define (ddo:add-vector-to-var-binding
vars2offsets deep-predicates doc var-binding)
(let ((cons-var-vector ; cons var-vector to var-binding
(lambda (var-vector var-binding)
(cons (cons '*var-vector* var-vector)
var-binding))))
(if
(and (null? deep-predicates) (null? var-binding))
var-binding ; nothing to add
(let* ((var-tree
(if
(< (length var-binding) 100) ; not too many variables
#f ; do not need any tree
(ddo:var-binding->tree var-binding)))
(var-vector
(let iter-offsets ((pos (- (car vars2offsets) 1))
(vars-alist (cdr vars2offsets))
(lst '()))
(cond
((< pos 0) ; iteration is over
(list->vector lst))
((or (null? vars-alist) ; no more vars in the alist
(not (= pos (cdar vars-alist))))
(iter-offsets (- pos 1)
vars-alist
(cons #f lst) ; cons a dummy value
))
(else ; this position is in the 1st member of vars-alist
(iter-offsets
(- pos 1)
(cdr vars-alist)
(cons
(cond ; more sophisticated way of searching for value
(var-tree ; access variables through var-tree
(ddo:get-var-value-from-tree ; checks for declared var
(caar vars-alist) var-tree))
((assq (caar vars-alist) var-binding)
=> cdr)
(else
(sxml:xpath-error "variable reference: unbound variable: ~e"
(cdar vars-alist))
'()))
lst)))))))
(if
(null? deep-predicates)
(cons-var-vector var-vector var-binding)
(let* ((context-set
(if (null? ; just absolute location paths
(filter
(lambda (triple)
(not (eq? (cadr triple) 'absolute-location-path)))
deep-predicates))
'() ; dummy
(ddo:all-contexts-in-doc doc)))
(max-size
(if ; position-required? for at least one deep predicate
(not (null? (filter cadr deep-predicates)))
(length context-set)
1 ; dummy
)))
(let iter-preds ((deep-predicates deep-predicates)
(var-vector var-vector))
(if
(null? deep-predicates) ; iteration is over
(cons-var-vector var-vector var-binding)
(iter-preds
(cdr deep-predicates)
(ddo:vector-copy-set
var-vector
(caar deep-predicates) ; pred-id
(cond
((eq? (cadar deep-predicates) 'absolute-location-path)
((caddar deep-predicates) ; absolute lpath impl
(as-nodeset doc)
(cons 1 1) ; dummy context position and size
(cons-var-vector var-vector var-binding)))
((cadar deep-predicates) ; requires-position?
(ddo:construct-pred-values-pos
(caddar deep-predicates) ; pred-impl
context-set
(cons-var-vector var-vector var-binding)
max-size))
(else
(ddo:construct-pred-values
(caddar deep-predicates) ; pred-impl
context-set
(cons-var-vector var-vector var-binding))))))))))))))
;-------------------------------------------------
; Methods similar to radix sort for linear access time for all variables
; Represents a list of chars as a branch in the string-tree
; The list of chars must be non-empty
(define (ddo:charlst->branch lst value)
(if (null? (cdr lst)) ; this is the last character in the lst
(list (car lst) (cons 'value value))
`(,(car lst) #f ,(ddo:charlst->branch (cdr lst) value))))
; Adds a new string to string-tree
(define (ddo:add-var-to-tree var-name var-value tree)
(letrec
((add-lst-to-tree ; adds the list of chars to tree
(lambda (lst tree)
(if
(null? lst) ; the lst is over
(cons (car tree)
(cons (cons 'value var-value) ; replace variable value
(cddr tree)))
(let ((curr-char (car lst)))
(let iter-alist ((alist (cddr tree))
(res (list (cadr tree) (car tree))))
(cond
((null? alist) ; branch not in a tree
(reverse
(cons
(ddo:charlst->branch lst var-value)
res)))
((char=? (caar alist) curr-char) ; entry found
(if
(null? (cdr alist)) ; nothing more in the alist
(reverse
(cons
(add-lst-to-tree (cdr lst) (car alist))
res))
(append
(reverse
(cons
(add-lst-to-tree (cdr lst) (car alist))
res))
(cdr alist))))
((char>? (caar alist) curr-char)
(if
(null? (cdr alist)) ; nothing more in the alist
(reverse
(cons
(car alist)
(cons (ddo:charlst->branch lst var-value)
res)))
(append
(reverse
(cons
(ddo:charlst->branch lst var-value)
res))
alist)))
(else
(iter-alist (cdr alist)
(cons (car alist) res))))))))))
(add-lst-to-tree (string->list (symbol->string var-name))
tree)))
; Convert var-binding to their tree representation
; var-binding is supposed to be non-null
(define (ddo:var-binding->tree var-binding)
(let loop ((var-binding (cdr var-binding))
(tree
(list '*top*
#f
(ddo:charlst->branch
(string->list
(symbol->string (caar var-binding))) ; var name
(cdar var-binding)))))
(if (null? var-binding)
tree
(loop (cdr var-binding)
(ddo:add-var-to-tree
(caar var-binding) (cdar var-binding) tree)))))
; Obtain variable value from the tree
(define (ddo:get-var-value-from-tree var-name tree)
(let loop ((lst (string->list (symbol->string var-name)))
(tree tree))
(cond
((and (not (null? lst))
(assv (car lst) (cddr tree)))
=> (lambda (new-tree)
(loop (cdr lst) new-tree)))
((and (null? lst) ; lst is over
(cadr tree) ; value for variable in the tree supplied
)
(cdadr tree))
(else
(sxml:xpath-error "variable reference: unbound variable: ~e" var-name)
'() ; dummy value
))))
;=========================================================================
; XPath AST processing
; AST is considered to be properly formed
; In the signature of functions below, the following terms are taken:
; op - S-expression which represents the operation
; num-anc - how many ancestors are required in the context after that
; operation
; {5} <AxisSpecifier> ::= (axis-specifier <AxisName> )
; {6} <AxisName> ::= (ancestor)
; | (ancestor-or-self)
; | (attribute)
; | (child)
; | (descendant)
; | (descendant-or-self)
; | (following)
; | (following-sibling)
; | (namespace)
; | (parent)
; | (preceding)
; | (preceding-sibling)
; | (self)
;
; single-level? - whether all nodes in the input nodeset are located on the
; same level of tree hierarchy
; requires-position? - whether context position or context size are required to
; filter the result produced by the axis
;
; For requires-position?=#f, the function returns
; (list axis-lambda
; num-anc-it-requires
; single-level?)
; For requires-position?=#t, the function returns
; (list axis-lambda
; num-anc-it-requires
; single-level?
; pos-result?)
; single-level? - whether nodes are in the single level after the axis
; pos-result? - whether the result of the axis has the form of pos-result.
; If #f, the axis returns its result in the form of the common nodeset
(define (ddo:ast-axis-specifier op num-anc single-level? requires-position?)
(cond
((not (eq? (car op) 'axis-specifier)) ; AST error
(draft:signal-semantic-error "not an AxisSpecifier - " op))
(requires-position?
(case (caadr op) ; AxisName
((ancestor)
(list ddo:ancestor-pos
#f #f #t))
((ancestor-or-self)
(list ddo:ancestor-or-self-pos
#f #f #t))
((attribute)
(list draft:attribute
(draft:na-minus-nneg num-anc 1) single-level? #f))
((child)
(if single-level?
(list draft:child
(draft:na-minus-nneg num-anc 1) #t #f)
(list ddo:child-pos
(draft:na-minus-nneg num-anc 1) #f #t)))
((descendant)
(if single-level?
(list draft:descendant
(draft:na-minus-nneg num-anc 1) #f #f)
(list ddo:descendant-pos
(draft:na-minus-nneg num-anc 1) #f #t)))
((descendant-or-self)
(if single-level?
(list draft:descendant-or-self
num-anc #f #f)
(list ddo:descendant-or-self-pos
num-anc #f #t)))
((following)
; DL: this is incorrect for single-level?=#f
(list ddo:following-single-level-pos
#f #f #t))
((following-sibling)
(list (if single-level?
ddo:following-sibling-single-level-pos
ddo:following-sibling-pos)
(draft:na-max num-anc 1) single-level? #t))
((namespace)
(list draft:namespace
(draft:na-minus-nneg num-anc 1) single-level? #f))
((parent)
(list (if single-level? ddo:parent-single-level-pos ddo:parent-pos)
(draft:na+ num-anc 1) single-level? #t))
((preceding)
; DL: this is incorrect for single-level?=#f
(list ddo:preceding-single-level-pos
#f #f #t))
((preceding-sibling)
(list (if single-level?
ddo:preceding-sibling-single-level-pos
ddo:preceding-sibling-pos)
(draft:na-max num-anc 1) single-level? #t))
((self)
(list draft:self num-anc single-level? #f))
(else
(draft:signal-semantic-error "unknown AxisName - " op))))
(else ; doesn't require to keep position
(case (caadr op) ; AxisName
((ancestor)
(list ddo:ancestor #f #f))
((ancestor-or-self)
(list ddo:ancestor-or-self #f #f))
((attribute)
(list draft:attribute
(draft:na-minus-nneg num-anc 1) single-level?))
((child)
(list (if single-level? draft:child ddo:child)
(draft:na-minus-nneg num-anc 1) single-level?))
((descendant)
(list (if single-level? draft:descendant ddo:descendant)
(draft:na-minus-nneg num-anc 1) #f))
((descendant-or-self)
(list (if single-level?
draft:descendant-or-self ddo:descendant-or-self)
num-anc #f))
((following)
(list (if single-level? ddo:following-single-level ddo:following)
#f #f))
((following-sibling)
(list (if single-level?
ddo:following-sibling-single-level ddo:following-sibling)
(draft:na-max num-anc 1) single-level?))
((namespace)
(list draft:namespace
(draft:na-minus-nneg num-anc 1) single-level?))
((parent)
(list (if single-level? ddo:parent-single-level ddo:parent)
(draft:na+ num-anc 1) single-level?))
((preceding)
(list (if single-level? ddo:preceding-single-level ddo:preceding)
#f #f))
((preceding-sibling)
(list (if single-level?
ddo:preceding-sibling-single-level ddo:preceding-sibling)
(draft:na-max num-anc 1) single-level?))
((self)
(list draft:self num-anc single-level?))
(else
(draft:signal-semantic-error "unknown AxisName - " op))))))
; {7} <NodeTest> ::= (node-test (*))
; | (node-test (namespace-uri <String> ))
; | (node-test (namespace-uri <String> )?
; (local-name <String> ))
; | (node-test (comment))
; | (node-test (text))
; | (node-test (pi <String>? ))
; | (node-test (point))
; | (node-test (range))
; For processing a node test, 'draft:ast-node-test' from "xpath-context.scm"
; can be used
;-------------------------------------------------
; In this section, each function accepts 5 arguments
; op - S-expression which represents the operation
; num-anc - how many ancestors are required in the context after that
; operation
; single-level? - for grammar rules that consume the nodeset type as input:
; whether all nodes in the nodeset are located on the single level of the
; tree hierarchy. If this is the case, most axes can be evaluated ealier than
; in the general case.
; pred-nesting - nesting of the expression being processed within predicates.
; In particular, pred-nesting=0 denotes the outer expression, pred-nesting=1
; denotes the expression enclosed into a predicate, pred-nesting=2 for an
; expression that is enclosed into 2 predicates, etc
; vars2offsets - mapping from variable names to their offsets in a var-vector
; vars2offsets ::= (cons vacant-offset
; (listof (cons var-name var-offset))
; vacant-offset - a number, initially starts from 0
; var-offset - offset for a particular variable within a vector
;
; AST processing functions return either #f, which signals of a
; semantic error, or
; (list (lambda (nodeset position+size var-binding) ...)
; num-anc-it-requires
; single-level?
; requires-position?
; expr-type
; deep-predicates
; vars2offsets )
; position+size - the same to what was called 'context' in TXPath-1
; requires-position? - whether position() or last() functions are encountered
; in the internal expression
; expr-type - the type returned by the expression being process. The type is
; determined by symbols. Possible types: number, string, boolean, nodeset and
; any
; deep-predicates - an associative list that contains deeply nested predicates,
; whose pred-nesting>3:
; deep-predicates ::= (listof (list pred-id requires-position? impl))
; pred-id - a symbol that identifies the predicate among others
; impl - the implementation for this predicate
; {1} <LocationPath> ::= <RelativeLocationPath>
; | <AbsoluteLocationPath>
(define (ddo:ast-location-path
op num-anc single-level? pred-nesting vars2offsets)
(case (car op)
((absolute-location-path)
(ddo:ast-absolute-location-path
op num-anc single-level? pred-nesting vars2offsets))
((relative-location-path)
(ddo:ast-relative-location-path
op num-anc single-level? pred-nesting vars2offsets))
(else
(draft:signal-semantic-error "improper LocationPath - " op))))
; {2} <AbsoluteLocationPath> ::= (absolute-location-path <Step>* )
; NOTE: single-level? is dummy here, since AbsoluteLocationPath always
; starts from a single node - the root of the document
(define (ddo:ast-absolute-location-path
op num-anc single-level? pred-nesting vars2offsets)
(cond
((not (eq? (car op) 'absolute-location-path))
(draft:signal-semantic-error "not an AbsoluteLocationPath - " op))
((null? (cdr op)) ; no Steps
(list
(lambda (nodeset position+size var-binding)
(draft:reach-root nodeset))
#f ; requires all ancestors
#t ; on single level
#f ; doesn't require position
ddo:type-nodeset
'() ; no deep predicates
vars2offsets
))
(else
(and-let*
((steps-res (ddo:ast-step-list
(cdr op) num-anc #t pred-nesting vars2offsets)))
(let ((impl ; implementation of the absolute location path
(if
(null? (cdar steps-res)) ; only a single step
(let ((step-impl (caar steps-res)))
(lambda (nodeset position+size var-binding)
(step-impl
(draft:reach-root nodeset) position+size var-binding)))
(let ((converters (car steps-res)))
(lambda (nodeset position+size var-binding)
(let rpt ((nset (draft:reach-root nodeset))
(fs converters))
(if (null? fs)
nset
(rpt ((car fs) nset position+size var-binding)
(cdr fs)))))))))
(if
(> pred-nesting 0) ; absolute location path inside a predicate
(let ((vars2offsets (list-ref steps-res 6)))
(list
(ddo:get-abs-lpath-value (car vars2offsets))
#f ; all ancestors required
(caddr steps-res) ; single-level
#f ; doesn't require position
ddo:type-nodeset
(cons
(list (car vars2offsets) ; identifier
'absolute-location-path ; flag to denote absolute lpath
impl)
(list-ref steps-res 5) ; deep-predicates
)
(cons (+ (car vars2offsets) 1)
(cdr vars2offsets))))
(cons impl
(cons #f ; all ancestors required
(cddr steps-res) ; the remaining parameters
))))))))
; {3} <RelativeLocationPath> ::= (relative-location-path <Step>+ )
(define (ddo:ast-relative-location-path
op num-anc single-level? pred-nesting vars2offsets)
(if
(not (eq? (car op) 'relative-location-path))
(draft:signal-semantic-error "not a RelativeLocationPath - " op)
(and-let*
((steps-res
(ddo:ast-step-list
(cdr op) num-anc single-level? pred-nesting vars2offsets)))
(cons
(if
(null? (cdar steps-res)) ; only a single step
(caar steps-res)
(let ((converters (car steps-res)))
(lambda (nodeset position+size var-binding)
(let rpt ((nset nodeset)
(fs converters))
(if (null? fs)
nset
(rpt ((car fs) nset position+size var-binding)
(cdr fs)))))))
(cdr steps-res) ; the remaining parameters
))))
; {4} <Step> ::= (step <AxisSpecifier> <NodeTest> <Predicate>* )
; | (range-to (expr <Expr>) <Predicate>* )
(define (ddo:ast-step op num-anc single-level? pred-nesting vars2offsets)
(cond
((eq? (car op) 'range-to)
(draft:signal-semantic-error "range-to function not implemented"))
((eq? (car op) 'filter-expr)
(ddo:ast-filter-expr op num-anc single-level? pred-nesting vars2offsets))
((eq? (car op) 'lambda-step) ; created by sxpath
(let ((proc (cadr op)))
(list
(if
(and num-anc (zero? num-anc)) ; no ancestors required
(lambda (nodeset position+size var-binding)
(proc (draft:contextset->nodeset (as-nodeset nodeset))
(if (and (pair? var-binding) ; non-null
(eq? (caar var-binding) '*var-vector*))
(cdr var-binding) var-binding)))
(lambda (nodeset position+size var-binding)
(draft:find-proper-context
(proc (draft:contextset->nodeset (as-nodeset nodeset))
(if (and (pair? var-binding) ; non-null
(eq? (caar var-binding) '*var-vector*))
(cdr var-binding) var-binding))
(map sxml:context->content ; TODO: should add variables
(as-nodeset nodeset))
num-anc)))
num-anc ; num-ancestors
#f ; single-level? after this step
#f ; position-required?
ddo:type-any
'() ; no deep predicates
vars2offsets
)))
((eq? (car op) 'step)
(if
(null? (cdddr op)) ; no Predicates
(and-let*
((axis-lst (ddo:ast-axis-specifier
(cadr op) num-anc single-level? #f))
(ntest (draft:ast-node-test (caddr op))))
(let ((axis ((car axis-lst) ntest num-anc)))
(list
(lambda (nodeset position+size var-binding)
(axis nodeset))
(cadr axis-lst)
(caddr axis-lst)
#f
ddo:type-nodeset
'() ; no deep predicates
vars2offsets
)))
; There are Predicates
(and-let*
((preds-res (ddo:ast-predicate-list
(cdddr op) 0 #t (+ pred-nesting 1) vars2offsets))
(preds-res
(if (and (list-ref preds-res 3) ; position required for the predicate
(< pred-nesting 3)) ; level of nesting matters
(ddo:ast-predicate-list ; the second pass
(cdddr op) 0 #t
(+ pred-nesting 2) ; called for quadratic number of times
vars2offsets
)
preds-res ; do not need to change anything
))
(axis-lst (ddo:ast-axis-specifier
(cadr op)
(draft:na-max num-anc (cadr preds-res))
single-level?
(list-ref preds-res 3) ; whether position required
))
(ntest (draft:ast-node-test (caddr op))))
(let ((axis ((car axis-lst)
ntest (draft:na-max num-anc (cadr preds-res))))
(pred-impl-lst (car preds-res)))
(list
(cond
((not (list-ref preds-res 3)) ; whether position required
(ddo:location-step-non-pos axis pred-impl-lst))
((list-ref axis-lst 3) ; pos-result?
(ddo:location-step-pos axis pred-impl-lst))
(else ; non-intersect
(ddo:location-step-non-intersect axis pred-impl-lst)))
(cadr axis-lst) ; num-ancestors
(caddr axis-lst) ; single-level? after this step
#f ; position-required?
ddo:type-nodeset
(list-ref preds-res 5) ; deep predicates
(list-ref preds-res 6) ; new var-binding
)))))
(else
(draft:signal-semantic-error "not a Step - " op))))
; {4a} ( <Step>+ )
; Returns (list (listof step-impl)
; num-anc single-level? requires-position? expr-type
; deep-predicates vars2offsets)
; or #f
; TECHNICAL NOTE: To calculate 'single-level?', we need to process steps in
; straight orger. To calculate 'num-anc', we need to process steps in reverse
; order. This thus has to be implemented in 2 passes
(define (ddo:ast-step-list
step-lst num-anc single-level? pred-nesting vars2offsets)
(let ((step-lst (ddo:rewrite-step* step-lst))
; Calculates single-level? for each step in the step-lst
; Returns: (listof single-level?)
; where each member of the REVERSED result list corresponds to the step
; in the corresponding position of a step-lst
; We can notice that when single-level?=#f for some step, it remains
; #f for all the subsequent steps
(calculate-single-level
(lambda (step-lst single-level?)
(let iter-steps ((steps step-lst)
(sl? single-level?)
(res '()))
(cond
((null? steps) res)
((or (memq (caar steps) '(range-to filter-expr lambda-step))
(not sl?))
; #f for the remaining steps
(append (map
(lambda (step) #f)
steps) ; DL: was: step-lst
res))
(else ; evaluate single-level? for the current step
(and-let*
((axis-lst (ddo:ast-axis-specifier
(cadar steps) ; is to be axis specifier
0 sl? #f)))
(iter-steps (cdr steps)
(caddr axis-lst) ; single-level for next step
(cons sl? res)))))))))
(and-let*
((single-level-lst (calculate-single-level step-lst single-level?)))
(let loop ((steps-to-view (reverse step-lst))
(sl?-lst single-level-lst)
(res-lst '())
(num-anc num-anc)
(deep-predicates '())
(vars2offsets vars2offsets))
(if
(null? steps-to-view) ; everyone processed
(list res-lst
num-anc (car single-level-lst) #f
ddo:type-nodeset deep-predicates vars2offsets)
(and-let*
((step-res
(ddo:ast-step
(car steps-to-view) num-anc (car sl?-lst)
pred-nesting vars2offsets)))
(loop
(cdr steps-to-view)
(cdr sl?-lst)
(cons (car step-res) res-lst)
(cadr step-res)
(append (list-ref step-res 5) deep-predicates)
(list-ref step-res 6) ; new vars2offsets
)))))))
; {8} <Predicate> ::= (predicate <Expr> )
; NOTE: num-anc is dummy here, since it is always 0 for Predicates
; NOTE: single-level? is dummy here, since a Predicate is always called for
; a single node to be filtered
; NOTE: Unlike 'draft:ast-predicate', we don't implement any filtering here,
; because it depends on the particular axis in the step. Filtering is
; performed on the higher level
(define (ddo:ast-predicate op num-anc single-level? pred-nesting vars2offsets)
(if
(not (eq? (car op) 'predicate))
(draft:signal-semantic-error "not an Predicate - " op)
(and-let*
((expr-res (ddo:ast-expr (cadr op) 0 #t pred-nesting vars2offsets)))
(let ((requires-position?
(or (cadddr expr-res) ; predicate expression requires position
(memq (list-ref expr-res 4) ; involves position implicitly
'(ddo:type-number ddo:type-any))))
(vars2offsets (list-ref expr-res 6)))
(call-with-values
(lambda ()
(if
(or ; this is a deep predicate
(> pred-nesting 3)
; DL: theoretically reasonable although impractical condition:
;(and (not requires-position?) (> pred-nesting 1))
)
(let ((pred-id (car vars2offsets)
; was: (ddo:generate-pred-id)
))
(values
((if requires-position?
ddo:get-pred-value-pos ddo:get-pred-value)
pred-id)
(cons
(list pred-id
requires-position?
(car expr-res) ; implementation
)
(list-ref expr-res 5) ; deep-predicates
)
(cons (+ (car vars2offsets) 1)
(cdr vars2offsets))))
(values (car expr-res) ; implementation
(list-ref expr-res 5)
vars2offsets)))
(lambda (pred-impl deep-predicates vars2offsets)
(list pred-impl
(cadr expr-res) ; num-ancestors required
(caddr expr-res) ; single-level? - we don't care
requires-position?
(list-ref expr-res 4) ; return type
deep-predicates
vars2offsets)))))))
; {8a} ( <Predicate>+ )
; Returns (list (listof pred-impl)
; num-anc single-level? requires-position? expr-type
; deep-predicates)
; or #f
; NOTE: num-anc is dummy here, since it is always 0 for Predicates
; NOTE: single-level? is dummy here, since a Predicate is always called for
; a single node to be filtered
; NOTE: information about the type for each Predicate is lost
(define (ddo:ast-predicate-list
op-lst num-anc single-level? pred-nesting vars2offsets)
(let ((pred-res-lst
(ddo:foldr
(lambda (op init)
(cons
(ddo:ast-predicate
op 0 #t pred-nesting
(if (or (null? init) ; called for the first time
(not (car init)))
vars2offsets
(list-ref (car init) 6) ; vars2offsets from previous pred
))
init))
'()
op-lst)))
(and
(not (memv #f pred-res-lst)) ; error detected
(list (map car pred-res-lst)
(apply draft:na-max (map cadr pred-res-lst))
#t
(apply ddo:or (map cadddr pred-res-lst))
ddo:type-any
(apply append ; deep-predicates
(map
(lambda (pred-res) (list-ref pred-res 5))
pred-res-lst))
(list-ref (car pred-res-lst) 6) ; vars2offsets
))))
; {9} <Expr> ::= <OrExpr>
; | <AndExpr>
; | <EqualityExpr>
; | <RelationalExpr>
; | <AdditiveExpr>
; | <MultiplicativeExpr>
; | <UnionExpr>
; | <PathExpr>
; | <FilterExpr>
; | <VariableReference>
; | <Literal>
; | <Number>
; | <FunctionCall>
; | <LocationPath>
(define (ddo:ast-expr op num-anc single-level? pred-nesting vars2offsets)
(case (car op)
((or)
(ddo:ast-or-expr op num-anc single-level? pred-nesting vars2offsets))
((and)
(ddo:ast-and-expr op num-anc single-level? pred-nesting vars2offsets))
((= !=)
(ddo:ast-equality-expr op num-anc single-level? pred-nesting vars2offsets))
((< > <= >=)
(ddo:ast-relational-expr
op num-anc single-level? pred-nesting vars2offsets))
((+ -)
(ddo:ast-additive-expr op num-anc single-level? pred-nesting vars2offsets))
((* div mod)
(ddo:ast-multiplicative-expr
op num-anc single-level? pred-nesting vars2offsets))
((union-expr)
(ddo:ast-union-expr op num-anc single-level? pred-nesting vars2offsets))
((path-expr)
(ddo:ast-path-expr op num-anc single-level? pred-nesting vars2offsets))
((filter-expr)
(ddo:ast-filter-expr op num-anc single-level? pred-nesting vars2offsets))
((variable-reference)
(ddo:ast-variable-reference
op num-anc single-level? pred-nesting vars2offsets))
((literal)
(ddo:ast-literal op num-anc single-level? pred-nesting vars2offsets))
((number)
(ddo:ast-number op num-anc single-level? pred-nesting vars2offsets))
((function-call)
(ddo:ast-function-call op num-anc single-level? pred-nesting vars2offsets))
((absolute-location-path)
(ddo:ast-absolute-location-path
op num-anc single-level? pred-nesting vars2offsets))
((relative-location-path)
(ddo:ast-relative-location-path
op num-anc single-level? pred-nesting vars2offsets))
(else
(draft:signal-semantic-error "unknown Expr - " op))))
; Applies AST processing to a list of operations
(define (ddo:apply-ast-procedure
ast-procedure op-lst num-anc single-level? pred-nesting vars2offsets)
(ddo:foldr
(lambda (expr init)
(cons
(ast-procedure
expr num-anc single-level? pred-nesting
(if (or (null? init) ; called for the first time
(not (car init)) ; error during previously processed expr
)
vars2offsets
(list-ref (car init) 6) ; vars2offsets from previous expr
))
init))
'()
op-lst))
; {10} <OrExpr> ::= (or <Expr> <Expr>+ )
; NOTE: num-anc is dummy here, since it is always 0 for OrExpr
(define (ddo:ast-or-expr op num-anc single-level? pred-nesting vars2offsets)
(let ((expr-res-lst
(ddo:apply-ast-procedure
ddo:ast-expr
(cdr op) 0 single-level? pred-nesting vars2offsets)))
(and
(not (memv #f expr-res-lst)) ; error detected
(let ((expr-impls (map car expr-res-lst)))
(list
(lambda (nodeset position+size var-binding)
(let rpt ((fs expr-impls))
(cond
((null? fs) #f)
((sxml:boolean ((car fs) nodeset position+size var-binding)) #t)
(else (rpt (cdr fs))))))
(apply draft:na-max (map cadr expr-res-lst)) ; num-ancestors
#t ; single-level? after this step
(apply ddo:or (map cadddr expr-res-lst)) ; position-required?
ddo:type-boolean
(apply append ; deep-predicates
(map
(lambda (expr-res) (list-ref expr-res 5))
expr-res-lst))
(list-ref (car expr-res-lst) 6) ; vars2offsets
)))))
; {11} <AndExpr> ::= (and <Expr> <Expr>+ )
; NOTE: num-anc is dummy here, since it is always 0 for AndExpr
(define (ddo:ast-and-expr op num-anc single-level? pred-nesting vars2offsets)
(let ((expr-res-lst
(ddo:apply-ast-procedure
ddo:ast-expr
(cdr op) 0 single-level? pred-nesting vars2offsets)))
(and
(not (memv #f expr-res-lst)) ; error detected
(let ((expr-impls (map car expr-res-lst)))
(list
(lambda (nodeset position+size var-binding)
(let rpt ((fs expr-impls))
(cond
((null? fs) #t)
((not
(sxml:boolean ((car fs) nodeset position+size var-binding)))
#f)
(else (rpt (cdr fs))))))
(apply draft:na-max (map cadr expr-res-lst)) ; num-ancestors
#t ; single-level? after this step
(apply ddo:or (map cadddr expr-res-lst)) ; position-required?
ddo:type-boolean
(apply append ; deep-predicates
(map
(lambda (expr-res) (list-ref expr-res 5))
expr-res-lst))
(list-ref (car expr-res-lst) 6) ; vars2offsets
)))))
; {12} <EqualityExpr> ::= (= <Expr> <Expr> )
; | (!= <Expr> <Expr> )
; NOTE: num-anc is dummy here, since it is always 0 for EqualityExpr
(define (ddo:ast-equality-expr
op num-anc single-level? pred-nesting vars2offsets)
(and-let*
((left-lst
(ddo:ast-expr (cadr op) 0 single-level? pred-nesting vars2offsets))
(right-lst
(ddo:ast-expr (caddr op) 0 single-level? pred-nesting
(list-ref left-lst 6) ; vars2offsets for left part
)))
(let ((cmp-op (cadr (assq (car op) `((= ,sxml:equal?)
(!= ,sxml:not-equal?)))))
(left (car left-lst))
(right (car right-lst)))
(list
(lambda (nodeset position+size var-binding)
(cmp-op
(draft:contextset->nodeset
(left nodeset position+size var-binding))
(draft:contextset->nodeset
(right nodeset position+size var-binding))))
(draft:na-max (cadr left-lst) (cadr right-lst)) ; num-ancestors
#t ; single-level? after this step
(or (cadddr left-lst) (cadddr right-lst)) ; position-required?
ddo:type-boolean
(append (list-ref left-lst 5) ; deep-predicates
(list-ref right-lst 5))
(list-ref right-lst 6) ; vars2offsets for right part
))))
; {13} <RelationalExpr> ::= (< <Expr> <Expr> )
; | (> <Expr> <Expr> )
; | (<= <Expr> <Expr> )
; | (>= <Expr> <Expr> )
; NOTE: num-anc is dummy here, since it is always 0 for RelationalExpr
(define (ddo:ast-relational-expr
op num-anc single-level? pred-nesting vars2offsets)
(and-let*
((left-lst
(ddo:ast-expr (cadr op) 0 single-level? pred-nesting vars2offsets))
(right-lst
(ddo:ast-expr (caddr op) 0 single-level? pred-nesting
(list-ref left-lst 6) ; vars2offsets for left part
)))
(let ((cmp-op
(sxml:relational-cmp
(cadr (assq (car op) `((< ,<) (> ,>) (<= ,<=) (>= ,>=))))))
(left (car left-lst))
(right (car right-lst)))
(list
(lambda (nodeset position+size var-binding)
(cmp-op
(draft:contextset->nodeset
(left nodeset position+size var-binding))
(draft:contextset->nodeset
(right nodeset position+size var-binding))))
(draft:na-max (cadr left-lst) (cadr right-lst)) ; num-ancestors
#t ; single-level? after this step
(or (cadddr left-lst) (cadddr right-lst)) ; position-required?
ddo:type-boolean
(append (list-ref left-lst 5) ; deep-predicates
(list-ref right-lst 5))
(list-ref right-lst 6) ; vars2offsets for right part
))))
; {14} <AdditiveExpr> ::= (+ <Expr> <Expr> )
; | (- <Expr> <Expr>? )
; NOTE: num-anc is dummy here, since it is always 0 for AdditiveExpr
(define (ddo:ast-additive-expr
op num-anc single-level? pred-nesting vars2offsets)
(let ((expr-res-lst
(ddo:apply-ast-procedure
ddo:ast-expr
(cdr op) 0 single-level? pred-nesting vars2offsets)))
(and
(not (memv #f expr-res-lst)) ; error detected
(let ((add-op (cadr (assq (car op) `((+ ,+) (- ,-)))))
(expr-impls (map car expr-res-lst)))
(list
(lambda (nodeset position+size var-binding)
(apply
add-op
(map
(lambda (expr)
(sxml:number
(draft:contextset->nodeset
(expr nodeset position+size var-binding))))
expr-impls)))
(apply draft:na-max (map cadr expr-res-lst)) ; num-ancestors
#t ; single-level? after this step
(apply ddo:or (map cadddr expr-res-lst)) ; position-required?
ddo:type-number
(apply append ; deep-predicates
(map
(lambda (expr-res) (list-ref expr-res 5))
expr-res-lst))
(list-ref (car expr-res-lst) 6) ; vars2offsets
)))))
; {15} <MultiplicativeExpr> ::= (* <Expr> <Expr> )
; | (div <Expr> <Expr> )
; | (mod <Expr> <Expr> )
; NOTE: num-anc is dummy here, since it is always 0 for MultiplicativeExpr
(define (ddo:ast-multiplicative-expr
op num-anc single-level? pred-nesting vars2offsets)
(and-let*
((left-lst
(ddo:ast-expr (cadr op) 0 single-level? pred-nesting vars2offsets))
(right-lst
(ddo:ast-expr (caddr op) 0 single-level? pred-nesting
(list-ref left-lst 6) ; vars2offsets for left part
)))
(let ((mul-op
(sxml:relational-cmp
(cadr (assq (car op) `((* ,*) (div ,/) (mod ,remainder))))))
(left (car left-lst))
(right (car right-lst)))
(list
(lambda (nodeset position+size var-binding)
(mul-op
(sxml:number
(draft:contextset->nodeset
(left nodeset position+size var-binding)))
(sxml:number
(draft:contextset->nodeset
(right nodeset position+size var-binding)))))
(draft:na-max (cadr left-lst) (cadr right-lst)) ; num-ancestors
#t ; single-level? after this step
(or (cadddr left-lst) (cadddr right-lst)) ; position-required?
ddo:type-number
(append (list-ref left-lst 5) ; deep-predicates
(list-ref right-lst 5))
(list-ref right-lst 6) ; vars2offsets for right part
))))
; {16} <UnionExpr> ::= (union-expr <Expr> <Expr>+ )
; TECHNICAL NOTE: For implementing the union while supporting distinct document
; order, we need num-ancestors=#f for the arguments of the union-expr. This
; operation is time-consuming and should be avoided
(define (ddo:ast-union-expr op num-anc single-level? pred-nesting vars2offsets)
(let ((expr-res-lst
(ddo:foldr
(lambda (expr init)
(let ((expr-res
(if
(or (null? init) ; called for the first time
(not (car init)))
(ddo:ast-expr
expr num-anc ; not necessarily all ancestors
single-level? pred-nesting vars2offsets)
(ddo:ast-expr
expr #f single-level? pred-nesting
(list-ref (car init) 6) ; vars2offsets from previous expr
))))
(cons
(if
(not (or (eq? (list-ref expr-res 4) ddo:type-nodeset)
(eq? (list-ref expr-res 4) ddo:type-any)))
(draft:signal-semantic-error
"expression to be unioned evaluates to a non-nodeset - "
expr)
expr-res)
init)))
'()
(cdr op))))
(and
(not (memv #f expr-res-lst)) ; error detected
(let ((expr-impls (map car expr-res-lst)))
(list
(lambda (nodeset position+size var-binding)
(let rpt ((res '())
(fs expr-impls))
(if
(null? fs)
res
(let ((nset ((car fs) nodeset position+size var-binding)))
(rpt
(ddo:unite-2-contextsets
res
(cond
((not (nodeset? nset))
(sxml:xpath-type-error "union" "nodeset" nset)
'())
(else nset)))
(cdr fs))))))
#f ; num-ancestors
#f ; single-level? after this step
(apply ddo:or (map cadddr expr-res-lst)) ; position-required?
ddo:type-nodeset
(apply append ; deep-predicates
(map
(lambda (expr-res) (list-ref expr-res 5))
expr-res-lst))
(list-ref (car expr-res-lst) 6) ; vars2offsets
)))))
; {17} <PathExpr> ::= (path-expr <FilterExpr> <Step>+ )
; TECHNICAL NOTE: To calculate 'single-level?', we need to process components
; in straight orger. To calculate 'num-anc', we need to process steps in
; reverse order. It is too expensive to make the 2 passes, that's why we
; consider single-level?=#f for steps
(define (ddo:ast-path-expr op num-anc single-level? pred-nesting vars2offsets)
(and-let*
((steps-res (ddo:ast-step-list
(cddr op) num-anc
#f ; consider single-level?=#f after FilterExpr
pred-nesting
vars2offsets))
(filter-lst (ddo:ast-filter-expr
(cadr op)
(cadr steps-res) ; num-ancestors
single-level?
pred-nesting
(list-ref steps-res 6) ; vars2offsets from steps-list
)))
(if
(not (or (eq? (list-ref filter-lst 4) ddo:type-nodeset)
(eq? (list-ref filter-lst 4) ddo:type-any)))
(draft:signal-semantic-error
"location steps are applied to a non-nodeset result - " (cadr op))
(let ((init-impl (car filter-lst))
(converters (car steps-res)))
(list
(lambda (nodeset position+size var-binding)
(let ((nset
(init-impl nodeset position+size var-binding)))
(let rpt ((nset
(cond
((nodeset? nset) nset)
(else
(sxml:xpath-type-error "path" "nodeset" nset)
'())))
(fs converters))
(if (null? fs)
nset
(rpt ((car fs) nset position+size var-binding)
(cdr fs))))))
(cadr filter-lst) ; num-ancestors
(cadddr steps-res) ; single-level?, =#f in our assumption
(cadddr filter-lst) ; position-required?
ddo:type-nodeset
(append (list-ref filter-lst 5) ; deep-predicates
(list-ref steps-res 5))
(list-ref filter-lst 6) ; vars2offsets from filter-lst
)))))
; {18} <FilterExpr> ::= (filter-expr (primary-expr <Expr> )
; <Predicate>* )
(define (ddo:ast-filter-expr op num-anc single-level? pred-nesting vars2offsets)
(cond
((not (eq? (car op) 'filter-expr))
(draft:signal-semantic-error "not an FilterExpr - " op))
((not (eq? (caadr op) 'primary-expr))
(draft:signal-semantic-error "not an PrimaryExpr - " (cadr op)))
((null? (cddr op)) ; no Predicates
(ddo:ast-expr (cadadr op) num-anc single-level? pred-nesting vars2offsets))
((and (null? (cdddr op)) ; a single predicate
(ddo:check-special-predicate (caddr op)))
=> (lambda (special-pred-impl)
(and-let*
((expr-lst (ddo:ast-expr
(cadadr op)
num-anc ; special predicate doesn't require ancestors
single-level? pred-nesting vars2offsets)))
(list
(ddo:filter-expr-special-predicate
(car expr-lst) special-pred-impl)
(cadr expr-lst) ; num-ancestors
(caddr expr-lst) ; single-level? after this step
(cadddr expr-lst) ; position-required?
ddo:type-nodeset
(list-ref expr-lst 5) ; deep-predicates
(list-ref expr-lst 6) ; vars2offsets
))))
(else ; the general case
(and-let*
((preds-res (ddo:ast-predicate-list
(cddr op) 0 #t (+ pred-nesting 1) vars2offsets))
(expr-lst (ddo:ast-expr
(cadadr op)
(draft:na-max num-anc (cadr preds-res)) ; num-anc
single-level? pred-nesting
(list-ref preds-res 6) ; vars2offsets from predicates
)))
(if
(not (or (eq? (list-ref expr-lst 4) ddo:type-nodeset)
(eq? (list-ref expr-lst 4) ddo:type-any)))
(draft:signal-semantic-error
"expression to be filtered evaluates to a non-nodeset - " (cadr op))
(let ((expr-impl (car expr-lst))
(pred-impl-lst (car preds-res)))
(list
(if
(list-ref preds-res 3) ; position required
(ddo:filter-expr-general expr-impl pred-impl-lst)
(ddo:filter-expr-non-pos expr-impl pred-impl-lst))
(cadr expr-lst) ; num-ancestors
(caddr expr-lst) ; single-level? after this step
(cadddr expr-lst) ; position-required?
ddo:type-nodeset
(append (list-ref expr-lst 5) ; deep-predicates
(list-ref preds-res 5))
(list-ref expr-lst 6) ; vars2offsets from expr-lst
)))))))
; {19} <VariableReference> ::= (variable-reference <String> )
(define (ddo:ast-variable-reference
op num-anc single-level? pred-nesting vars2offsets)
(let ((name (string->symbol (cadr op))))
(call-with-values
(lambda ()
(cond
((assq name (cdr vars2offsets)) ; this variable already in alist
=> (lambda (pair)
(values (cdr pair) vars2offsets)))
(else ; this is a new variable
(values (car vars2offsets)
(cons
(+ (car vars2offsets) 1)
(cons (cons name (car vars2offsets))
(cdr vars2offsets)))))))
(lambda (var-offset new-vars2offsets)
(list
(lambda (nodeset position+size var-binding)
(cond
((and (not (null? var-binding))
(eq? (caar var-binding) '*var-vector*))
(vector-ref (cdar var-binding) var-offset))
; For backward compatibility
((assq name var-binding)
=> cdr)
(else
(sxml:xpath-error "variable reference: unbound variable: ~e" name)
'())))
0
#t ; ATTENTION: in is not generally on the single-level
#f
ddo:type-any ; type cannot be statically determined
'() ; deep-predicates
new-vars2offsets)))))
; {20} <Literal> ::= (literal <String> )
(define (ddo:ast-literal op num-anc single-level? pred-nesting vars2offsets)
(let ((literal (cadr op)))
(list
(lambda (nodeset position+size var-binding) literal)
0 #t #f ddo:type-string '() vars2offsets)))
; {21} <Number> :: (number <Number> )
(define (ddo:ast-number op num-anc single-level? pred-nesting vars2offsets)
(let ((number (cadr op)))
(list
(lambda (nodeset position+size var-binding) number)
0 #t #f ddo:type-number '() vars2offsets)))
; {22} <FunctionCall> ::= (function-call (function-name <String> )
; (argument <Expr> )* )
(define (ddo:ast-function-call
op num-anc single-level? pred-nesting vars2offsets)
(let ((core-alist
; (list fun-name min-num-args max-num-args na4res impl
; single-level? requires-position? expr-type)
`((last 0 0 0 ,draft:core-last
#t #t ,ddo:type-number)
(position 0 0 0 ,draft:core-position
#t #t ,ddo:type-number)
(count 1 1 0 ,draft:core-count
#t #f ,ddo:type-number)
(id 1 1 #f ,draft:core-id
#f #f ,ddo:type-nodeset)
(local-name 0 1 0 ,draft:core-local-name
#t #f ,ddo:type-string)
(namespace-uri 0 1 0 ,draft:core-namespace-uri
#t #f ,ddo:type-string)
(name 0 1 0 ,draft:core-name
#t #f ,ddo:type-string)
(string 0 1 0 ,draft:core-string
#t #f ,ddo:type-string)
(concat 2 -1 0 ,draft:core-concat
#t #f ,ddo:type-string)
(starts-with 2 2 0 ,draft:core-starts-with
#t #f ,ddo:type-boolean)
(contains 2 2 0 ,draft:core-contains
#t #f ,ddo:type-boolean)
(substring-before 2 2 0 ,draft:core-substring-before
#t #f ,ddo:type-boolean)
(substring-after 2 2 0 ,draft:core-substring-after
#t #f ,ddo:type-boolean)
(substring 2 3 0 ,draft:core-substring
#t #f ,ddo:type-boolean)
(string-length 0 1 0 ,draft:core-string-length
#t #f ,ddo:type-number)
(normalize-space 0 1 0 ,draft:core-normalize-space
#t #f ,ddo:type-string)
(translate 3 3 0 ,draft:core-translate
#t #f ,ddo:type-string)
(boolean 1 1 0 ,draft:core-boolean
#t #f ,ddo:type-boolean)
(not 1 1 0 ,draft:core-not
#t #f ,ddo:type-boolean)
(true 0 0 0 ,draft:core-true
#t #f ,ddo:type-boolean)
(false 0 0 0 ,draft:core-false
#t #f ,ddo:type-boolean)
(lang 1 1 #f ,draft:core-lang
#t #f ,ddo:type-boolean)
(number 0 1 0 ,draft:core-number
#t #f ,ddo:type-number)
(sum 1 1 0 ,draft:core-sum
#t #f ,ddo:type-number)
(floor 1 1 0 ,draft:core-floor
#t #f ,ddo:type-number)
(ceiling 1 1 0 ,draft:core-ceiling
#t #f ,ddo:type-number)
(round 1 1 0 ,draft:core-round
#t #f ,ddo:type-number))))
(cond
((not (eq? (caadr op) 'function-name))
(draft:signal-semantic-error "not an FunctionName - " (cadr op)))
((assq (string->symbol (cadadr op)) core-alist)
=> (lambda (description) ; Core function found
(cond
((< (length (cddr op)) (cadr description))
(draft:signal-semantic-error
"too few arguments for the Core Function call - "
(cadadr op)))
((and (>= (caddr description) 0)
(> (length (cddr op)) (caddr description)))
(draft:signal-semantic-error
"too many arguments for the Core Function call - "
(cadadr op)))
(else ; correct number of arguments
(and-let*
((args-impl-lst (ddo:ast-function-arguments
(cddr op) ; list of arguments
single-level? pred-nesting vars2offsets)))
(list
; Producing a function implementation
(apply (list-ref description 4)
num-anc
(map car args-impl-lst))
(apply ; num-ancestors required for function
draft:na-max
(cons
(list-ref description 3) ; from function description
(map cadr args-impl-lst) ; from arguments
))
(list-ref description 5) ; single-level?
(or (list-ref description 6) ; position-required?
(not (null?
(filter cadddr args-impl-lst))))
(list-ref description 7) ; return type
(apply append ; deep-predicates
(map
(lambda (arg-res) (list-ref arg-res 5))
args-impl-lst))
(if (null? args-impl-lst) ; no arguments
vars2offsets
(list-ref (car args-impl-lst) 6))
))))))
(else ; function definition not found
(draft:signal-semantic-error
"function call to an unknown function - " (cadadr op))))))
; {22a} ( (argument <Expr> )* )
; na-lst - number of ancestors required for each of the arguments
; Returns: #f or
; (listof
; (list expr-impl num-anc single-level? requires-position? expr-type
; deep-predicates vars2offsets))
; NOTE: In XPath Core Function Library, none of the function arguments
; is required to save any ancestors in the context
(define (ddo:ast-function-arguments
op-lst single-level? pred-nesting vars2offsets)
(let ((arg-res-lst
(ddo:foldr
(lambda (op init)
(cons
(if
(not (eq? (car op) 'argument))
(draft:signal-semantic-error "not an Argument - " op)
(ddo:ast-expr
(cadr op) 0 single-level? pred-nesting
(if (or (null? init) ; called for the first time
(not (car init)))
vars2offsets
(list-ref (car init) 6) ; vars2offsets from previous pred
)))
init))
'()
op-lst)))
(and
(not (memv #f arg-res-lst)) ; semantic error detected
arg-res-lst)))
;=========================================================================
; Highest level API functions
;
; procedure ddo:sxpath :: query [ns-binding] [num-ancestors] ->
; -> node-or-nodeset [var-binding] -> nodeset
; procedure ddo:txpath :: location-path [ns-binding] [num-ancestors] ->
; -> node-or-nodeset [var-binding] -> nodeset
;
; Polynomial-time XPath implementation with distinct document order support.
;
; The API is identical to the API of a context-based SXPath (here we even use
; API helpers from "xpath-context.scm"). For convenience, below we repeat
; comments for the API (borrowed from "xpath-context.scm").
;
; query - a query in SXPath native syntax
; location-path - XPath location path represented as a string
; ns-binding - declared namespace prefixes (an optional argument)
; ns-binding ::= (listof (prefix . uri))
; prefix - a symbol
; uri - a string
; num-ancestors - number of ancestors required for resulting nodeset. Can
; generally be omitted and is than defaulted to 0, which denotes a
; _conventional_ nodeset. If a negative number, this signals that all
; ancestors should be remembered in the context.
;
; Returns: (lambda (node-or-nodeset . var-binding) ...)
; var-binding - XPath variable bindings (an optional argument)
; var-binding = (listof (var-name . value))
; var-name - (a symbol) a name of a variable
; value - its value. The value can have the following type: boolean, number,
; string, nodeset. NOTE: a node must be represented as a singleton nodeset.
;
; The result of applying the latter lambda to an SXML node or nodeset is the
; result of evaluating the query / location-path for that node / nodeset.
; Helper for constructing several highest-level API functions
; ns+na - can contain 'ns-binding' and/or 'num-ancestors' and/or none of them
(define (ddo:api-helper grammar-parser ast-parser)
(lambda (xpath-string . ns+na)
(call-with-values
(lambda () (draft:arglist->ns+na ns+na))
(lambda (ns-binding num-anc)
(and-let*
((ast (grammar-parser xpath-string ns-binding))
(impl-lst (ast-parser ast num-anc
#t ; we suppose single-level?=#t for src
0 ; predicate nesting is zero
'(0) ; initial vars2offsets
)))
(let ((impl-lambda
(if
(and num-anc (zero? num-anc))
(let ((impl-car (car impl-lst)))
(lambda (node position+size var-binding)
(draft:contextset->nodeset
(impl-car node position+size var-binding))))
(car impl-lst))))
(lambda (node . var-binding) ; common implementation
(impl-lambda
(as-nodeset node)
(cons 1 1)
(ddo:add-vector-to-var-binding
(list-ref impl-lst 6) ; vars2offsets
(reverse ; deep-predicates: need to reverse
(list-ref impl-lst 5))
node
(if (null? var-binding) var-binding (car var-binding)))))))))))
(define ddo:txpath (ddo:api-helper txp:xpath->ast ddo:ast-location-path))
(define ddo:xpath-expr (ddo:api-helper txp:expr->ast ddo:ast-expr))
(define ddo:sxpath (ddo:api-helper txp:sxpath->ast ddo:ast-expr))
| false |
764a8f79377cf165aaa87e0234ef80f8cbd784db | 5e5dcfa1ac8b5ebadec5525bd57cc36c90a68d47 | /archive/tests/temp2.rkt | bdb460d85a6c373ae70d868484e4c0413d54b9a0 | [
"Apache-2.0"
]
| permissive | standardgalactic/fructure | c6aa2c2fc66314425c80ac9954a0fea2767af217 | d434086052eab3c450f631b7b14dcbf9358f45b7 | refs/heads/master | 2023-07-08T13:07:42.565079 | 2020-09-24T02:06:10 | 2020-09-24T02:06:10 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 3,058 | rkt | temp2.rkt | #lang racket
(require (for-syntax racket/match racket/list racket/syntax))
(begin-for-syntax
(define (better-holes source)
(match source
[(list '... a) 5]
[(? list?) (map better-holes (undotdotdot-into source))]
['if 'if]
['expr (list 'unquote (gensym))]))
(define (undotdotdot source)
(match source
[(? (compose not pair?)) source]
[(list a ... b '... c ...) `(,@(undotdotdot a) (... ,b) ,@c)]
[_ source]))
(define (undotdotdot-into source)
(match (undotdotdot source)
[`(... ,a) `(... ,(undotdotdot-into a))]
[(? list? ls) (map undotdotdot-into ls)]
[(? (compose not pair?) a) a]))
(define (redotdotdot source)
(match source
[`(,a ... (... ,b) ,c ...) `(,@(redotdotdot a) ,b ... ,@c)]
[_ source]))
(define (redotdotdot-into source)
(match (redotdotdot source)
#;[`(... ,a) `(... ,(redotdotdot-into a))]
[(? list? ls) (map redotdotdot-into ls)]
[(? (compose not pair?) a) a]))
(define (make-holes source)
(match source
[(? list?) (map make-holes source)]
['if 'if]
['... '...]
['expr (list 'unquote (gensym))]))
(define (tandem-holes pattern template)
#;(println (undotdotdot-into pattern))
(let ([clean-pat (undotdotdot-into pattern)]
[clean-temp (undotdotdot-into template)])
(match* (clean-pat clean-temp)
[(`(... expr) _) (let ([new-var (gensym)])
`((... ,new-var) ,(list 'unquote-splicing '(make-list (length new-var) `expr))))]
[((? list?) _) (map tandem-holes clean-pat clean-temp)]
[('if _) '(if if)]
[('expr _) (let ([new-var (gensym)])
`(,(list 'unquote new-var) expr))]))))
(define-syntax (get-pat-macro stx)
(syntax-case stx ()
[(_ <source> <form>)
(let ([pat-temp (tandem-holes (eval (syntax->datum #'<form>)) (eval (syntax->datum #'<form>)))])
(with-syntax* ([<new-pat> (datum->syntax #'<source> (redotdotdot (first pat-temp)))]
[<new-temp> (datum->syntax #'<source> (redotdotdot (second pat-temp)))])
#'(match <source>
[`<new-pat> <new-temp>])))]))
(get-pat-macro '(if 1 2 3) '(if expr ...))
(require (for-syntax racket/match))
(begin-for-syntax
#;(define (better-holes source)
(match source
[(list '... a) 0]
[(? list?) (map better-holes source)]
['if 'if]
['expr (list 'unquote (gensym))])))
#|
(define (better-holes source)
(match source
[(list '... a) 5]
[(? list?) (map better-holes (undotdotdot-into source))]
['if 'if]
['expr (list 'unquote (gensym))]))
(define (undotdotdot source)
(match source
[(? (compose not pair?)) source]
[(list a ... b '... c ...) `(,@(undotdotdot a) (... ,b) ,@c)]
[_ source]))
(define (undotdotdot-into source)
(println source)
(match (undotdotdot source)
[`(... ,a) `(... ,(undotdotdot-into a))]
[(? list? ls) (map undotdotdot-into ls)]
[(? (compose not pair?) a) a]))
|#
| true |
38c6852bb3365aae08ee1d0bfcde25a35bf26173 | 50508fbb3a659c1168cb61f06a38a27a1745de15 | /turnstile-test/tests/turnstile/cmu15-814/stlc-tests.rkt | bc5c13ad86f46dfe4db092281f6d544d2349b67b | [
"BSD-2-Clause"
]
| permissive | phlummox/macrotypes | e76a8a4bfe94a2862de965a4fefd03cae7f2559f | ea3bf603290fd9d769f4f95e87efe817430bed7b | refs/heads/master | 2022-12-30T17:59:15.489797 | 2020-08-11T16:03:02 | 2020-08-11T16:03:02 | 307,035,363 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 2,558 | rkt | stlc-tests.rkt | ;; s-exp = use s-expression parser
#lang s-exp turnstile/examples/cmu15-814/stlc
(require rackunit/turnstile)
(typecheck-fail (λ ([x : Undef]) x) #:with-msg "Undef: unbound identifier")
(typecheck-fail (λ ([x : →]) x)
#:with-msg "Improper usage of type constructor →.+expected >= 1 arguments")
(typecheck-fail (λ ([x : (→)]) x)
#:with-msg "Improper usage of type constructor →.+expected >= 1 arguments")
(typecheck-fail (λ ([x : (→ →)]) x)
#:with-msg "Improper usage of type constructor →.+expected >= 1 arguments")
(check-type 1 : Int)
(check-not-type 1 : (→ Int Int))
(typecheck-fail "one" #:with-msg "Unsupported literal")
(typecheck-fail #f #:with-msg "Unsupported literal")
(check-type (λ ([x : Int] [y : Int]) x) : (→ Int Int Int))
(check-type (lambda ([x : Int] [y : Int]) x) : (-> Int Int Int))
(check-not-type (λ ([x : Int]) x) : Int)
(check-type (λ ([x : Int]) x) : (→ Int Int))
(check-type (λ ([f : (→ Int Int)]) 1) : (→ (→ Int Int) Int))
(check-type ((λ ([x : Int]) x) 1) : Int ⇒ 1)
(typecheck-fail ((λ ([x : Bool]) x) 1)
#:with-msg "Bool: unbound identifier")
(typecheck-fail (λ ([x : (→ Bool Bool)]) x)
#:with-msg "Bool: unbound identifier")
(typecheck-fail (λ ([x : Bool]) x)
#:with-msg "Bool: unbound identifier")
(typecheck-fail
(λ ([f : Int]) (f 1 2))
#:with-msg
"Expected → type, got: Int")
(check-type + : (→ Int Int Int))
(check-type (λ ([f : (→ Int Int Int)] [x : Int] [y : Int]) (f x y))
: (→ (→ Int Int Int) Int Int Int))
(check-type ((λ ([f : (→ Int Int Int)] [x : Int] [y : Int]) (f x y)) + 1 2)
: Int ⇒ 3)
(typecheck-fail
(+ 1 (λ ([x : Int]) x))
#:with-msg "expected Int, given \\(→ Int Int\\)\n *expression: \\(λ \\(\\(x : Int\\)\\) x\\)")
(typecheck-fail
(λ ([x : (→ Int Int)]) (+ x x))
#:with-msg "expected Int, given \\(→ Int Int\\)\n *expression: x")
(typecheck-fail
((λ ([x : Int] [y : Int]) y) 1)
#:with-msg "wrong number of arguments: expected 2, given 1")
(check-type ((λ ([x : Int]) (+ x x)) 10) : Int ⇒ 20)
(typecheck-fail (λ ([x : (→ 1 2)]) x) #:with-msg "not a well-formed type")
(typecheck-fail (λ ([x : 1]) x) #:with-msg "not a well-formed type")
(typecheck-fail (λ ([x : (+ 1 2)]) x) #:with-msg "not a well-formed type")
(typecheck-fail (λ ([x : (λ ([y : Int]) y)]) x) #:with-msg "not a well-formed type")
(typecheck-fail
(ann (ann 5 : Int) : (→ Int))
#:with-msg "expected \\(→ Int\\), given Int\n *expression: \\(ann 5 : Int\\)")
| false |
de691e4919e314788285fb993437b048be07738b | b45ffa96e9b274ea018ca5ca3d052657e5ec8fc5 | /rosette/sql.rkt | 31c029b4d9613793926c3bbd6256a5dbf0b47496 | [
"BSD-2-Clause"
]
| permissive | novembersky/Cosette | 362463a14b552bdb649197bde72c0e9f03686f5a | cd811abe855d82c9d4ad0ff9a606b9cd7f5c9006 | refs/heads/master | 2021-06-29T12:45:28.603915 | 2017-09-19T05:57:24 | 2017-09-19T05:57:24 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 4,844 | rkt | sql.rkt | #lang rosette
(require "syntax.rkt" "denotation.rkt" "table.rkt" "evaluator.rkt")
(provide (all-defined-out))
;; the interface to run sql,
;; note that ns is the namespace defined in denotation
(define (run q)
(denote-and-run q))
;; easy syntax rules to write sql queries
(define-syntax-rule
(SELECT v FROM q WHERE f)
(query-select v q f))
;; q: the table/subquery to group
;; f: group by fields
;; aggr: aggregation functions
;; target: group by field
(define-syntax-rule
(SELECT-GROUP q gb-fields aggrf target)
(query-aggr q gb-fields aggrf target))
;; group by but with an alternative implementation
(define-syntax-rule
(SELECT-GROUP-SUBQ q gb-fields aggrf target)
(SELECT-DISTINCT
(append (map (lambda (x) (VAL x)) gb-fields)
(list (VAL (AGGR aggrf (SELECT
(VALS (string-append "tmp." target))
FROM (AS (SELECT (append (map (lambda (x) (VAL x)) gb-fields) (list (VAL target))) FROM q WHERE (TRUE))
["tmp" (append gb-fields (list target))])
WHERE (foldl (lambda (x y) (AND x y)) (TRUE)
(map (lambda (z) (BINOP z = (string-append "tmp." z))) gb-fields)))))))
FROM q
WHERE (TRUE)))
(define-syntax-rule
(SELECT-DISTINCT v FROM q WHERE f)
(query-select-distinct v q f))
(define-syntax-rule
(UNION-ALL q1 q2)
(query-union-all q1 q2))
(define-syntax-rule
(TABLE-UNION-ALL t1 t2)
(union-all t1 t2)
)
(define-syntax-rule
(JOIN q1 q2)
(query-join q1 q2))
(define-syntax-rule (NAMED t)
(query-named t))
; rename the result of q with name t, and fields l (a list of string)
;(define-syntax-rule (AS q [t l])
; (query-rename q t l))
(define-syntax AS
(syntax-rules
()
[(AS q [t l]) (query-rename-full q t l)]
[(AS q [t]) (query-rename q t)]))
(define-syntax-rule
(RENAME t name)
(rename-table t name))
(define-syntax-rule (VAL v)
(cond
[(equal? v sqlnull) (val-const sqlnull)]
[(string? v) (val-column-ref v)]
[(int? v) (val-const v)]
[(val-agg? v) v]
[(val-bexpr? v) v]
[(val-uexpr? v) v]))
(define-syntax-rule (VAL-BINOP v1 op v2)
(val-bexpr (VAL v1) op (VAL v2)))
(define-syntax-rule (VAL-UNOP op val)
(val-uexpr op (VAL val)))
(define (VALS . v)
(map (lambda (x) (VAL x)) v))
(define-syntax-rule (AGGR aggr-fun q)
(val-agg aggr-fun q))
(define-syntax-rule (BINOP v1 op v2)
(filter-binop op (VAL v1) (VAL v2)))
(define-syntax-rule (EXISTS q)
(filter-exists q))
(define-syntax-rule (TRUE) (filter-true))
(define-syntax-rule (FALSE) (filter-false))
; f can be uninterpreted functions
; f should be of type int->int->...->int->bool
(define (NARY-OP f . args)
(filter-nary-op f (map (lambda (x) (VAL x)) args)))
(define-syntax-rule (OR f1 f2)
(filter-disj f1 f2))
(define-syntax-rule (AND f1 f2)
(filter-conj f1 f2))
(define-syntax-rule (NOT f)
(filter-not f))
(define-syntax-rule (LEFT-OUTER-JOIN q1 q2 k1 k2)
(query-left-outer-join q1 q2 k1 k2))
(define-syntax-rule (LEFT-OUTER-JOIN-2 q1 q2 join-query)
(query-left-outer-join-2 q1 q2 join-query))
(define-syntax-rule (UNIT) unit-table)
;; UNIT table is a table with 1 row and empty schema
(define unit-table
(Table "UNIT" (list)
(list (cons (list) 1))))
;; aggregation functions
;; input to these functions:
;; [(v1 . m1), (v2 . m2), ..., (vn . mn)]
;; output is the aggregation result of the list
(define (aggr-count l)
(foldl + 0 (map cdr l)))
(define (aggr-sum l)
(foldl + 0 (map (lambda (x) (* (car x) (cdr x))) l)))
(define (aggr-max l)
(max (map (lambda (x) (car x)) l)))
(define (aggr-min l)
(min (map (lambda (x) (car x)) l)))
(define test-table1
(list
(cons (list 1 1 2) 2)
(cons (list 1 1 2) 2)
(cons (list 0 1 2) 2)
(cons (list 1 2 1) 1)
(cons (list 1 2 3) 1)
(cons (list 2 1 0) 3)))
(define table1 (Table "t1" (list "c1" "c2" "c3") test-table1))
(define q (query-select
(list (val-column-ref "t1.c1") (val-column-ref "t1.c2"))
(query-named table1)
(filter-binop < (val-column-ref "t1.c1") (val-column-ref "t1.c2"))))
(define q2 (query-rename-full (query-named table1) "qt" (list "c12" "c22" "c32")))
(define q3 (query-join (query-named table1) (query-rename-full (query-named table1) "t2" (list "c1" "c2" "c3"))))
(define part-of-q3 (query-rename-full (query-named table1) "t2" (list "c1" "c2" "c3")))
| true |
fa6b7cf04eeff970be47bdbb85a5092c9f0392e3 | 7b85a7cefb9bd64e9032276844e12ebac7973a69 | /unstable-lib/gui/notify.rkt | 36d58c481e5994b3374e761786ecd1e159093e22 | [
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/unstable | 28ac91ca96a0434db99a097a6d4d2f0a1ca26f1e | 99149bf1a6a82b2309cc04e363a87ed36972b64b | refs/heads/master | 2021-03-12T21:56:07.687374 | 2019-10-24T01:04:57 | 2019-10-24T01:04:57 | 27,411,322 | 2 | 5 | NOASSERTION | 2020-06-25T19:01:26 | 2014-12-02T02:33:45 | Racket | UTF-8 | Racket | false | false | 578 | rkt | notify.rkt | #lang racket/base
;; Re-exports from `framework/notify`, for backwards compatibility.
(require framework/notify)
(provide (rename-out [notify:notify-box% notify-box%]
[notify:notify-box/pref notify-box/pref]
[notify:define-notify define-notify]
[notify:menu-option/notify-box menu-option/notify-box]
[notify:check-box/notify-box check-box/notify-box]
[notify:choice/notify-box choice/notify-box]
[notify:menu-group/notify-box menu-group/notify-box]))
| false |
9c4b72fce0e0f59c909e3d5ab4a790fd1fa47438 | 0f6e59eeda27cfb61e0623e5e795c514da53f95f | /macro-debugger/tests/macro-debugger/check-requires/src-b.rkt | d4b5328784b2e1e39628353b421222c3e0c8d0f3 | [
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/macro-debugger | 1679a781fe0d601bb0e9c97d224f0d06ee777b24 | 047c36a4d6a0b15a31d0fa7509999b9bf2c5f295 | refs/heads/master | 2023-08-24T04:09:14.428768 | 2023-01-18T02:27:26 | 2023-01-18T02:27:26 | 27,413,285 | 10 | 14 | NOASSERTION | 2021-05-04T22:30:05 | 2014-12-02T03:30:26 | Racket | UTF-8 | Racket | false | false | 43 | rkt | src-b.rkt | #lang racket/base
(define b 2)
(provide b)
| false |
597047ff33ed778f1b1e92da9381a64468db7e2e | 89b7353f1ab0aae0fe37b2f199ab4d6572defa62 | /lang/reader.rkt | 1e7a6f69667a4e9f1886b5c054b02f62ebb5394c | [
"MIT"
]
| permissive | elplatt/mechanics | dcc16754ea1b74675e0e9f7e042cf556edfbfc27 | f65242d4ad0872de7c321a1c9a8e04d9b17b9259 | refs/heads/master | 2022-06-26T06:47:56.588459 | 2020-05-01T20:29:25 | 2020-05-01T20:30:15 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 53 | rkt | reader.rkt | #lang s-exp syntax/module-reader
mechanics/lang/main
| false |
4ddea9bb0ef4b6f1bee1d46486cae49243ce4710 | 1da0749eadcf5a39e1890195f96903d1ceb7f0ec | /a-d6/a-d/memory/manual/vectors/handles-mm.rkt | 686c481d51963358c03bc057632c00d11723e070 | []
| no_license | sebobrien/ALGO1 | 8ce02fb88b6db9e001d936356205a629b49b884d | 50df6423fe45b99db9794ef13920cf03d532d69f | refs/heads/master | 2020-04-08T20:08:16.986517 | 2018-12-03T06:48:07 | 2018-12-03T06:48:07 | 159,685,194 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 4,292 | rkt | handles-mm.rkt | #lang r6rs
;-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
;-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
;-*-* *-*-
;-*-* Best-Fit Memory Manager (Handle Management) *-*-
;-*-* *-*-
;-*-* Theo D'Hondt - Wolfgang De Meuter *-*-
;-*-* 1993-2009 Programming Technology Lab *-*-
;-*-* Vrije Universiteit Brussel *-*-
;-*-* *-*-
;-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
;-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
(library
(handle-manager)
(export make-vector vector? vector-free vector-ref vector-set! vector-length)
(import (rename (except (rnrs base) vector vector? vector-length)
(make-vector scheme:make-vector) (vector-ref scheme:vector-ref) (vector-set! scheme:vector-set!))
(rnrs control)
(prefix (a-d memory manual vectors best-fit-mm) vector:))
(define free-handle 0)
(define handle-mem-size 16)
(define handle-mem (scheme:make-vector handle-mem-size vector:null))
(define handle-tag 'handle)
(define (tag ptr)
(cons handle-tag ptr))
(define (untag handle)
(cdr handle))
(define (get-pointer hidx)
(scheme:vector-ref handle-mem hidx))
(define (set-pointer! hidx ptr)
(scheme:vector-set! handle-mem hidx ptr))
(define (vector handle)
(if (vector? handle)
(get-pointer (untag handle))
(error "invalid handle" handle)))
(define (initialize-handles)
(do ((hidx 1 (+ hidx 1)))
((= hidx handle-mem-size))
(set-pointer! (- hidx 1) hidx)))
(define (crunch-vectors)
(define (move-vector source destination size)
(define hidx (vector:peek (+ source 1)))
(vector:poke! destination size)
(vector:poke! (+ destination 1) (get-pointer hidx))
(set-pointer! hidx (vector:tag destination))
(do ((index 2 (+ index 1)))
((= index size))
(vector:poke! (+ destination index)
(vector:peek (+ source index)))))
(define next-free
(let move-left
((source 0)
(destination 0))
(if (>= source vector:memory-size)
destination
(let ((size (vector:peek source)))
(cond
((negative? size)
(move-vector source destination (- size))
(move-left (- source size) (- destination size)))
(else
(move-left (+ source size) destination)))))))
(define size (- vector:memory-size next-free))
(vector:reset-trees)
(if (>= size vector:smallest-size)
(vector:insert-free next-free size)))
(define (swap-pointer hidx)
(define addr (vector:untag (get-pointer hidx)))
(define size (vector:peek addr))
(set-pointer! hidx (vector:peek (+ addr 1)))
(vector:poke! addr (- size))
(vector:poke! (+ addr 1) hidx))
(define (defragment-storage)
(do ((hidx 0 (+ hidx 1)))
((= hidx handle-mem-size))
(if (vector:vector? (get-pointer hidx))
(swap-pointer hidx)))
(crunch-vectors))
(define (make-vector size)
(if (null? free-handle)
(error "handle table overflow" size)
(let
((hidx free-handle)
(vctr (vector:make-vector size)))
(when (null? vctr)
(defragment-storage)
(set! vctr (vector:make-vector size))
(if (null? vctr)
(error "Memory overflow" size)))
(set! free-handle (get-pointer free-handle))
(set-pointer! hidx vctr)
(tag hidx))))
(define (vector-free vctr)
(vector:vector-free (vector vctr))
(let
((hidx (untag vctr)))
(set-pointer! hidx free-handle)
(set! free-handle hidx)))
(define (vector? any)
(and (pair? any)
(eq? (car any) handle-tag)))
(define (vector-ref vctr index)
(vector:vector-ref (vector vctr) index))
(define (vector-set! vctr index value)
(vector:vector-set! (vector vctr) index value))
(define (vector-length vctr)
(vector:vector-length (vector vctr)))
(initialize-handles)) | false |
5af549cc633d4c22dcdd1470e5c1a84aae71109a | 56c5f129167943f60dab3a7256db3d0cf5be33cf | /libgit2/include/refdb.rkt | 7c8a0f4546af03f91fc5da70373ca6a35cb857b7 | [
"MIT"
]
| permissive | guygastineau/libgit2 | d21111384afbfe4068bd5f289bd1de811c94b93e | 6d6a007543900eb7a6fbbeba55850288665bdde5 | refs/heads/master | 2022-12-12T15:21:28.849065 | 2019-05-06T20:59:17 | 2019-05-06T20:59:17 | 294,779,175 | 0 | 0 | null | 2020-09-11T18:26:21 | 2020-09-11T18:26:20 | null | UTF-8 | Racket | false | false | 703 | rkt | refdb.rkt | #lang racket
(require ffi/unsafe
"define.rkt"
"types.rkt"
"utils.rkt")
(provide (all-defined-out))
(define-libgit2/alloc git_refdb_backend_fs
(_fun _refdb_backend _repository -> _int))
(define-libgit2/check git_refdb_compress
(_fun _refdb -> _int))
(define-libgit2/dealloc git_refdb_free
(_fun _refdb -> _void))
(define-libgit2/check git_refdb_init_backend
(_fun _refdb_backend _uint -> _int))
(define-libgit2/alloc git_refdb_new
(_fun _refdb _repository -> _int)
git_refdb_free)
(define-libgit2/alloc git_refdb_open
(_fun _refdb _repository -> _int)
git_refdb_free)
(define-libgit2/check git_refdb_set_backend
(_fun _refdb _refdb_backend -> _int))
| false |
59427e7855062cdf1daa295727ca6b91a0f954cc | 85d136e932ea8f9d466c7e7bf0532bbd3bcb9e47 | /hackett-test/tests/hackett/regression/lazy-case.rkt | e7d20a1283578f0822dc9642d74eea7ce2d9fa99 | [
"ISC"
]
| permissive | jgrosso/hackett | c766d74de23efda6d767b7234f4a22847ca101a7 | 8e4e0e904ac37df58b8c8ef29c0f94ad4151246f | refs/heads/master | 2022-04-22T18:22:59.652938 | 2018-10-03T21:01:27 | 2018-10-03T21:14:11 | 259,401,141 | 0 | 0 | ISC | 2020-04-27T17:18:31 | 2020-04-27T17:18:31 | null | UTF-8 | Racket | false | false | 174 | rkt | lazy-case.rkt | #lang hackett
(require hackett/private/test)
(test {(if True
Unit
(case (error! "should never get here")
[Unit Unit]))
==! Unit})
| false |
13294e931f43ea399df1ca9851a63b908a59a7b1 | 90e8ce5b57282417bfed6dfd3768577cac764072 | /about.scrbl | dda46909ac50d02a190b53fd67309797be46f8f4 | []
| no_license | SIFMANOW/sifmanow.github.io | 782d569b27d412a368c15ad298d9c27b87de1b4f | 366f0ecfc975f35661188796df18010075a2f1a8 | refs/heads/master | 2020-12-03T19:40:28.723892 | 2020-01-21T00:48:18 | 2020-01-21T00:48:18 | 231,458,350 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,566 | scrbl | about.scrbl | #lang reader "website.rkt"
@page[#:title "About"]{
@h1{Who we are}
@p{SIF MA Now is a growing coalition of medical and public
health professionals and organizations, current and former
substance users, law enforcement and criminal justice
professionals, social justice groups, and concerned
Massachusetts residents who believe that safe consumption
sites (SCSs) are one important evidence-based solution to
problems related to drug use in Massachusetts.}
@p{We aim to create a climate increasing harm reduction
practices that are based in science and have proven
successful across the globe including SCSs within the
recovery and treatment community in Massachusetts. We want a
systemic change to Recovery, Prevention, Treatment and
Rehabilitation protocol that values and includes harm
reduction techniques proven to save lives and reduce
complications surrounding active drug use and begin to
seriously address possibilities for people with problematic
substance use to better their lives in a way that leads to
personal transformation, community transformation and
systemic transformation.}
@p{We believe legalizing and opening SCSs in MA is one vital
step in curbing the continually increasing number of opioid
related overdose deaths in MA as they provide education and
directly empower affected individuals to improve their life,
health, happiness, safety and stability by offering
alternative options to high-risk isolating behavior and
resources for recovery when and if individuals are willing
and ready to reach for them.}}
| false |
4cad2b1c3a6af096dc52f6b151c7dfdfb8d6956e | 29709336972d43a275525200614113709b565378 | /example/main.rkt | 7bb4427f2672a815cf476cb043dbfedb51e8532f | []
| no_license | jagen31/ralda | 6ff42ca59d951ee16a3719d7fd165f694bf6543a | 69f8ec739e65176df3033f735b063d74dc8f3061 | refs/heads/master | 2023-05-27T07:52:36.380135 | 2021-06-14T11:12:34 | 2021-06-14T11:12:34 | 362,865,786 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 92 | rkt | main.rkt | #lang racket
(require ralda ralda/example/example3 rsound)
(play (alda->rsound the-sound))
| false |
bd5e2cbfeaf4b507b6b048f938bdcf21580d4538 | bcecffb7b3a58fa51dc9f81a2020dfee9103b82f | /rkt/toplevel.rkt | 9af6df918094a6bf8b503effd5f91827f8c5a09a | []
| no_license | odanoburu/my-website | 8362dcd240f6f13ecfd48b60bd9489b4e27d9ece | 9bd607606cfea4653fbf05e2a5382b404b8436ff | refs/heads/master | 2021-10-09T08:59:26.789512 | 2018-12-25T04:27:06 | 2018-12-25T04:27:06 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,271 | rkt | toplevel.rkt | #lang racket/base
(provide toplevel)
(require racket/string
racket/function
racket/contract
racket/match
pollen/setup
pollen/template
"utils/cache.rkt"
"contracts.rkt")
(define tags
'(;; from http://docs.racket-lang.org/pollen/Setup.html#%28def._%28%28lib._pollen%2Fsetup..rkt%29._default-block-tags%29%29
address article aside
blockquote body canvas
dd div dl
fieldset figcaption figure footer form
h1 h2 h3 h4 h5 h6 header hgroup hr
li
main
nav noscript
ol output
p pre
section
table tfoot
ul
video))
(define/contract (add-newlines s) (string? . -> . string?)
(regexp-replace*
(pregexp (format "(?=~a)|(?<=~a)"
(string-join (map (curry format "<~a>") tags) "|")
(string-join (map (curry format "</~a>") tags) "|")))
s
"\n"))
(define/contract (interp x) (content? . -> . content?)
(match x
[`(@@app ,f ,doc)
(define transform (dynamic-require (build-path (current-project-root) f)
'transform))
(interp (transform doc))]
[_ x]))
(define (cleanup* v)
(cleanup)
v)
(define toplevel (compose1 cleanup* add-newlines ->html interp))
| false |
73e9a1dd7774c74c5245856c00f0894ff9fe3b1e | 98fd12cbf428dda4c673987ff64ace5e558874c4 | /paip/gregr/tools.rkt | 20ca85e7ec5a1b9efd28ca5e1214e68d41d9ad01 | [
"Unlicense"
]
| permissive | CompSciCabal/SMRTYPRTY | 397645d909ff1c3d1517b44a1bb0173195b0616e | a8e2c5049199635fecce7b7f70a2225cda6558d8 | refs/heads/master | 2021-12-30T04:50:30.599471 | 2021-12-27T23:50:16 | 2021-12-27T23:50:16 | 13,666,108 | 66 | 11 | Unlicense | 2019-05-13T03:45:42 | 2013-10-18T01:26:44 | Racket | UTF-8 | Racket | false | false | 12,311 | rkt | tools.rkt | #lang racket/base
(provide
subset?
adjoin
sub*
pat-match
pat-match-abbrevs
expand-pat-match-abbrev
rule-system
rule-based-translator
is
is/proj
tree-search
depth-first-search
breadth-first-search
best-first-search
beam-search
beam-search/n
search-all
iter-wide-search
graph-search
a*-search
)
(require racket/format racket/list racket/string racket/vector)
(define (subset? xs ys) (andmap (lambda (x) (member x ys)) xs))
;; Pattern matching
(define (sub* env d)
(define (loop d) (sub* env d))
(cond ((assoc d env) => (lambda (old-new) (cdr old-new)))
((pair? d) (cons (loop (car d)) (loop (cdr d))))
((vector? d) (vector-map loop d))
(else d)))
(define (var? x)
(and (symbol? x) (string-prefix? (symbol->string x) "?")))
(define (var-match env pattern input)
(define existing (assoc pattern env))
(if existing
(and (equal? (cdr existing) input) env)
(cons (cons pattern input) env)))
(define (segment-pattern? pattern)
(and (pair? pattern) (pair? (car pattern))
(assoc (car (car pattern)) segment-match-table)))
(define (segment-match env pattern input)
((cdr (assoc (car (car pattern)) segment-match-table))
env pattern input))
(define (single-pattern? pattern)
(and (pair? pattern)
(assoc (car pattern) single-match-table)))
(define (single-match env pattern input)
((cdr (assoc (car pattern) single-match-table))
env (cdr pattern) input))
(define (pat-match/env env pattern input)
(and env
(cond ((var? pattern) (var-match env pattern input))
((segment-pattern? pattern) (segment-match env pattern input))
((single-pattern? pattern) (single-match env pattern input))
((and (pair? pattern) (pair? input))
(pat-match/env (pat-match/env env (car pattern) (car input))
(cdr pattern) (cdr input)))
(else (and (equal? pattern input) env)))))
(define (pat-match pattern input) (pat-match/env '() pattern input))
(define (match-literal env quoted input)
(and (equal? (car quoted) input) env))
(define (match-is env var-and-pred input)
(define vr (car var-and-pred))
(define is? (cadr var-and-pred))
(define e2 (pat-match/env env vr input))
(and e2 ((eval is? (make-base-namespace)) input) e2))
(define (match-and env patterns input)
(and env (if (null? patterns) env
(match-and (pat-match/env env (car patterns) input)
(cdr patterns) input))))
(define (match-or env patterns input)
(and (pair? patterns)
(or (pat-match/env env (car patterns) input)
(match-or env (cdr patterns) input))))
(define (match-not env patterns input)
(and (not (match-or env patterns input)) env))
(define (segment-match-*+ env pattern input min-count)
(define seg-var (cadar pattern))
(define pat (cdr pattern))
(define binding (assoc seg-var env))
(if binding
;; For efficiency as mentioned in exercise 5.13.
(and (list? binding) (<= min-count (length binding))
(let loop ((input input) (binding binding))
(cond ((null? binding) (pat-match/env env pat input))
((pair? binding) (and (pair? input)
(equal? (car binding) (car input))
(loop (cdr input) (cdr binding))))
(else #f))))
(let loop ((count min-count) (input input) (seg '()))
(cond ((= 0 count)
(let loop ((input input) (seg seg))
(define e2 (pat-match/env env pat input))
(cond ((and e2 (var-match e2 seg-var (reverse seg))))
((pair? input) (loop (cdr input) (cons (car input) seg)))
(else #f))))
((pair? input)
(loop (- count 1) (cdr input) (cons (car input) seg)))
(else #f)))))
(define (segment-match-* env pattern input)
(segment-match-*+ env pattern input 0))
(define (segment-match-+ env pattern input)
(segment-match-*+ env pattern input 1))
(define (segment-match-? env pattern input)
(define seg-var (cadar pattern))
(define pat (cdr pattern))
;; Swap these to minimize greed.
(or (pat-match/env env (cons seg-var pat) input)
(pat-match/env env pat input)))
(define (match-if env pattern input)
(and (eval `(let ,(map (lambda (kv) `(,(car kv) ,(cdr kv))) env)
,(cadar pattern))
(make-base-namespace))
(pat-match/env env (cdr pattern) input)))
(define single-match-table
`((?quote . ,match-literal)
(?is . ,match-is)
(?or . ,match-or)
(?and . ,match-and)
(?not . ,match-not)))
(define segment-match-table
`((?* . ,segment-match-*)
(?+ . ,segment-match-+)
(?? . ,segment-match-?)
(?if . ,match-if)))
(define (pat-match-abbrevs old new)
(foldl (lambda (abbrev abbrevs)
(cons (cons (car abbrev)
(expand-pat-match-abbrev abbrevs (cdr abbrev)))
abbrevs))
old new))
(define (expand-pat-match-abbrev abbrevs p)
(cond ((symbol? p) (define binding (assoc p abbrevs))
(if binding (cdr binding) p))
((pair? p) (cons (expand-pat-match-abbrev abbrevs (car p))
(expand-pat-match-abbrev abbrevs (cdr p))))
(else p)))
(define (rule-system rule-match rule-if rule-then action)
(list rule-match rule-if rule-then action))
(define (rule-based-translator system input rules)
(define rule-match (car system))
(define rule-if (cadr system))
(define rule-then (caddr system))
(define action (cadddr system))
(ormap (lambda (rule)
(define result (rule-match (rule-if rule) input))
(and result (action result (rule-then rule))))
rules))
;; Search
(define debug-search? #f)
;; (set! debug-search? #t) wherever you'd like to step through search examples.
(define debug-proj #f)
(define (debug-search states)
(when debug-search? (printf ";; States: ~a\n"
(if debug-proj (map debug-proj states) states))
(read-line)))
(define (tree-search states goal? successors combine)
(debug-search states)
(cond ((null? states) #f)
((goal? (car states)) (car states))
(else (tree-search (combine (successors (car states)) (cdr states))
goal? successors combine))))
(define (prepend xs ys) (append ys xs))
(define (depth-first-search states goal? successors)
(tree-search states goal? successors append))
(define (breadth-first-search states goal? successors)
(tree-search states goal? successors prepend))
(define (is value) (lambda (x) (equal? x value)))
(define (is/proj value proj ?) (lambda (x) (? (proj x) value)))
(define (merge cost ps qs)
(cond
((null? ps) qs)
((null? qs) ps)
((< (cost (car qs))
(cost (car ps))) (cons (car qs) (merge cost ps (cdr qs))))
(else (cons (car ps) (merge cost (cdr ps) qs)))))
(define (sorter cost)
(lambda (new old)
;(sort (append new old) (lambda (a b) (< (cost a) (cost b))))
(merge cost (sort new (lambda (a b) (< (cost a) (cost b)))) old)))
(define (best-first-search states goal? successors cost)
(tree-search states goal? successors (sorter cost)))
(define (beam-search states goal? successors cost beam-width)
(tree-search states goal? successors
(lambda (new old)
(define sorted ((sorter cost) new old))
(if (> beam-width (length sorted))
sorted
(take sorted beam-width)))))
(define (beam-search/n n start goal? successors cost beam-width)
(define solutions '())
(when (< 0 n)
(beam-search (list start)
(lambda (x)
(and (goal? x)
(set! n (- n 1))
(set! solutions (cons x solutions))
(= 0 n)
x))
successors cost beam-width))
solutions)
(define (search-all start goal? successors cost beam-width)
(define solutions '())
(beam-search (list start)
(lambda (x)
(when (goal? x) (set! solutions (cons x solutions)))
#f)
successors cost beam-width)
solutions)
(define (path state previous cost-so-far total-cost)
(vector state previous cost-so-far total-cost))
(define (path-state p) (vector-ref p 0))
(define (path-previous p) (vector-ref p 1))
(define (path-cost-so-far p) (vector-ref p 2))
(define (path-total-cost p) (vector-ref p 3))
(define (path/state state) (vector state #f 0 0))
(define (map-path f path)
(if path (cons (f (path-state path))
(map-path f (path-previous path)))
'()))
(define (show-path path)
(format "#<Path to ~a cost ~a>" (path-state path)
(~r (path-total-cost path) #:precision 1)))
(define (iter-wide-search states goal? successors cost width max-width)
(when debug-search? (printf "; Width: ~a\n" width))
(unless (> width max-width)
(or (beam-search states goal? successors cost width)
(iter-wide-search states goal? successors cost
(+ width 1) max-width))))
(define (adjoin x xs =?)
(if (memf (lambda (y) (=? x y)) xs)
xs
(cons x xs)))
(define (graph-search states goal? successors combine state=? old-states)
(debug-search states)
(cond ((null? states) #f)
((goal? (car states)) (car states))
(else (graph-search
(combine (new-states states successors state=? old-states)
(cdr states))
goal? successors combine state=?
(adjoin (car states) old-states state=?)))))
(define (new-states states successors state=? old-states)
(define (mem state states) (memf (lambda (s) (state=? s state)) states))
(filter-not (lambda (state) (or (mem state states) (mem state old-states)))
(successors (car states))))
(define (a*-search paths goal? successors cost cost-left state=? old-paths)
(debug-search (map show-path paths))
(cond ((null? paths) #f)
((goal? (path-state (car paths))) (car paths))
(else
(let* ((p (car paths)) (state (path-state p)))
(let loop0 ((states (successors state))
(paths (cdr paths))
(old-paths (insert-path p old-paths)))
(define (loop paths old-paths)
(loop0 (cdr states) paths old-paths))
(if (null? states) (a*-search paths goal? successors
cost cost-left state=? old-paths)
(let* ((state2 (car states))
(cost (+ (path-cost-so-far p) (cost state state2)))
(cost2 (cost-left state2))
(p2 (path state2 p cost (+ cost cost2))))
(cond
((find-path state2 paths state=?)
=> (lambda (old)
(if (path<? p2 old)
(loop (insert-path p2 (remove old paths))
old-paths)
(loop paths old-paths))))
((find-path state2 old-paths state=?)
=> (lambda (old)
(if (path<? p2 old)
(loop (insert-path p2 paths)
(remove old old-paths))
(loop paths old-paths))))
(else (loop (insert-path p2 paths) old-paths))))))))))
(define (find-path state paths state=?)
(findf (lambda (p) (state=? (path-state p) state)) paths))
(define (path<? p1 p2) (< (path-total-cost p1) (path-total-cost p2)))
(define (merge-paths ps qs)
(cond
((null? ps) qs)
((null? qs) ps)
((path<? (car qs) (car ps)) (cons (car qs) (merge-paths ps (cdr qs))))
(else (cons (car ps) (merge-paths (cdr ps) qs)))))
(define (insert-path p paths) (merge-paths (list p) paths))
(define (path-states p) (map-path (lambda (x) x) p))
| false |
2ef74ad33602ac866bc99db4da8450dc46e5734e | 2a6d787bf25ebcd4a0b5b403dc580b6b36fb42da | /demo.rkt | 3cb10f161280709916c335a0af885a28901e3ade | []
| no_license | rntz/moxy | 127b238a0d14532befce8f4eed7bfca3edf4eb3e | 18015aed1596ae55658be4ac9eb5cbb3debb1644 | refs/heads/master | 2021-01-22T04:41:50.923830 | 2014-12-07T13:02:35 | 2014-12-07T13:02:35 | 16,607,638 | 9 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,100 | rkt | demo.rkt | #lang racket
(require racket/stream)
(require "debug.rkt")
(require "env.rkt")
(require "lex.rkt")
(require "objects.rkt")
(require "parse-builtins.rkt")
(require "parse.rkt")
(require "pcomb.rkt")
(require (only-in "quasi.rkt" run))
(require "repl.rkt")
(require "runtime.rkt")
(require "tags.rkt")
(require "util.rkt")
(require "values.rkt")
(define (tokenify what)
(cond
[(stream? what) what]
[(port? what) (tokenize what)]
[(string? what) (call-with-input-string what tokenize)]
[#t (error 'parse "don't know how to parse: ~v" what)]))
(define (p parser env what [whole #t])
(parse (if whole (<* parser peof) parser) env (tokenify what)))
(define (parse-expr what) (expr-sexp (parse-expr-no-really what)))
(define (parse-pat what) (pat-sexp (parse-pat-no-really what)))
(define (parse-decl what) (decl-sexp (parse-decl-no-really what)))
(define (parse-expr-no-really what) (run (p p-expr builtin-parse-env what)))
(define (parse-pat-no-really what) (run (p p-pat builtin-parse-env what)))
(define (parse-decl-no-really what) (run (p p-decl builtin-parse-env what)))
| false |
8e258caaf3ae7bfa2aa19c6bb77c8d296ee7fead | 8f1ce19d0e9e64aa9899605db6f7929f0f8c8c0a | /racket/PORTABILITY.rkt | a9952c34a4548c220b02ada750d5fd90970300ad | [
"MIT"
]
| permissive | arturalkaim/Shading | 7bfd10a1cbe181d165d37eb513d5fd84bd05a6b3 | 92056eca0ca8ecc978ff656dbca2219c45ef27ac | refs/heads/master | 2021-01-16T22:33:19.410431 | 2016-03-18T13:13:13 | 2016-03-18T13:13:13 | 45,994,645 | 1 | 2 | null | 2016-01-26T14:34:03 | 2015-11-11T16:44:18 | Racket | UTF-8 | Racket | false | false | 6,862 | rkt | PORTABILITY.rkt | #lang racket
(require ffi/unsafe
ffi/unsafe/define
math/flonum
(except-in "base.rkt" sphere cylinder box)
(prefix-in p3d: pict3d)
racket/trace
)
(define-ffi-definer define-test (ffi-lib "/Users/arturalkaim/Shaders/lib/libShaders"))
(define-test start (_fun -> _int))
(define-test createPoints (_fun _int -> _int))
(define-test box (_fun _float _float _float _float _float _float -> _int))
(define-test cylinder (_fun _float _float _float _float _float _float _float _float _float _float _float _float -> _int))
(define-test sphere (_fun _float _float _float _float _float _float _float -> _int))
(define-test pyramid (_fun _float _float _float _float _float _float _float -> _int))
(define-test rotate (_fun _int _float _float _float _float -> _int))
(define-test move (_fun _int _float _float _float -> _int))
(define-test scale (_fun _int _float _float _float -> _int))
(define-test init (_fun _int -> _int))
(define-test cycle (_fun -> _void))
(define-test pool (_fun -> _void))
(define-test main (_fun -> _int))
(define-test end_cycle (_fun -> _int))
(define-test send_data (_fun -> _int))
(define-test city (_fun _int -> _void))
(define pi/2 (/ pi 2))
(define (box-p p l w h)
(box (cx p) (cy p) (cz p) l w h))
(define (cube-p p l)
(box (cx p) (cy p) (cz p) l l l))
(define (sphere-p p r)
(sphere (cx p) (cy p) (cz p) r 0.0 0.0 0.0))
(define (cylinder-z p l h ang vx vy vz)
(cylinder (p3d:pos-x p) (p3d:pos-y p) (p3d:pos-z p) l h 0.0 0.0 0.0 ang vx vy vz))
(define (cylinder-p p0 h p1)
(if (not (xyz? p1))
(cylinder-z p0 h (/ p1 2 ))
(let* ((vec-dir (p3d:pos- (xyz->pos p1) (xyz->pos p0)))
(rot-dir (p3d:dir-normalize (p3d:dir-cross vec-dir p3d:+z)))
(dir (p3d:dir h h (/ (p3d:dir-dist vec-dir) 2)))
(center (p3d:pos-between (xyz->pos p0) (xyz->pos p1) 1/2))
(angle (acos (/ (p3d:dir-dot vec-dir p3d:+z) (* (p3d:dir-dist vec-dir) (p3d:dir-dist p3d:+z))))))
(match-let-values
([(yaw pit) (p3d:dir->angles (p3d:pos- (xyz->pos p1) (xyz->pos p0)))])
(cylinder-z center (p3d:dir-dx dir) (p3d:dir-dist vec-dir) (- angle) (p3d:dir-dx rot-dir) (p3d:dir-dy rot-dir) (p3d:dir-dz rot-dir))
))
)
)
(define (itera-pts f ptss)
(for/list ((pts0 ptss))
(for/list ((p0 pts0))
(f p0))))
(define (itera-quads f ptss)
(for/list ((pts0 ptss)
(pts1 (cdr ptss)))
(for/list ((p0 pts0)
(p1 pts1)
(p2 (cdr pts1))
(p3 (cdr pts0)))
(f p0 p1 p2 p3))))
(define (media a b)
(/ (+ a b) 2.0))
(define (media-pontos p0 p1)
(xyz (media (cx p0) (cx p1))
(media (cy p0) (cy p1))
(media (cz p0) (cz p1))))
(define (centro-quadrangulo p0 p1 p2 p3)
(media-pontos
(media-pontos p0 p2)
(media-pontos p1 p3)))
(define (average-points ptss)
(itera-quads centro-quadrangulo ptss))
(define (itera-quads-alternated f ptss)
(append (itera-quads f ptss)
(itera-quads f (average-points ptss))))
(define (pts-from-domain surf u0 u1 n v0 v1 m)
(map-division surf u0 u1 n v0 v1 m))
(define (centered-pts-from-domain surf u0 u1 n v0 v1 m)
(let ((du (/ (- u1 u0) n 2))
(dv (/ (- v1 v0) m 2)))
(map-division surf
(+ u0 du) (- u1 du) (- n 1)
(+ v0 dv) (- v1 dv) (- m 1))))
(define (itera-quads-from-domain f surf u0 u1 n v0 v1 m)
(itera-quads f (pts-from-domain surf u0 u1 n v0 v1 m)))
(define (itera-centered-quads-from-domain f surf u0 u1 n v0 v1 m)
(itera-quads f (centered-pts-from-domain surf u0 u1 n v0 v1 m)))
(define (itera-quads-alternated-from-domain f surf u0 u1 n v0 v1 m)
(append
(itera-quads-from-domain f surf u0 u1 n v0 v1 m)
(itera-centered-quads-from-domain f surf u0 u1 n v0 v1 m)))
(define (vector-normalizado v)
(let ((l (sqrt (+ (sqr (cx v))
(sqr (cy v))
(sqr (cz v))))))
(xyz (/ (cx v) l)
(/ (cy v) l)
(/ (cz v) l))))
(define (produto-cruzado p0 p1)
(xyz (* (- (cy p0) (cy p1)) (+ (cz p0) (cz p1)))
(* (- (cz p0) (cz p1)) (+ (cx p0) (cx p1)))
(* (- (cx p0) (cx p1)) (+ (cy p0) (cy p1)))))
(define (produtos-cruzados pts)
(if (null? (cdr pts))
(xyz 0 0 0)
(+c (produto-cruzado (car pts) (cadr pts))
(produtos-cruzados (cdr pts)))))
(define (normal-poligono pts)
(vector-normalizado
(produtos-cruzados
(append pts (list (car pts))))))
(define (normal-quadrangulo p0 p1 p2 p3)
(normal-poligono (list p0 p1 p2 p3)))
(define (ponto-intermedio p0 p1 f)
(+c p0 (*c (-c p1 p0) f)))
(define (itera-quads-chess f ptss)
(for/list ((pts0 ptss)
(pts1 (cdr ptss))
(start-on? (in-cycle (list #t #f))))
(for/list ((p0 pts0)
(p1 pts1)
(p2 (cdr pts1))
(p3 (cdr pts0))
(on? (if start-on?
(in-cycle (list #t #f))
(in-cycle (list #f #t)))))
(if on?
(f p0 p1 p2 p3)
(list)))))
(define (map-division-recursive f u0 u1 n v0 v1 m recurse? [rec 0])
(let ((du (/ (- u1 u0) n))
(dv (/ (- v1 v0) m)))
(map-division (lambda (u v)
(if (recurse? u v rec)
(map-division-recursive f u (+ u du) 2 v (+ v dv) 2 recurse? (+ rec 1))
(f u v du dv)))
u0 u1 n #f v0 v1 m #f)))
(define (combine m0 m1)
(map (lambda (r0 r1)
(map cons r0 r1))
m0
m1))
(define (itera-quadrangulos-cores f pts cores)
(itera-quads (lambda (pc0 pc1 pc2 pc3)
(f (car pc0) (car pc1) (car pc2) (car pc3)
(cdr pc0) (cdr pc1) (cdr pc2) (cdr pc3)))
(combine pts cores)))
(define atrator1 (xyz 0 0 0))
;MALHA
(define e 0.12)
(define c 18)
(define a 12)
(define n 20)
(define m 20)
(define (my-surf i j)
(xyz i 0 j))
(define (malha)
(map-division my-surf
0 (+ c e) n
0 a m))
(define (my-surf2 i j)
(xyz 0 i j))
(define (malha2)
(map-division my-surf2
0 c n
0 a m))
(define (my-surf3 i j)
(xyz c i j))
(define (malha3)
(map-division my-surf3
0 c n
0 a m))
(define (cils p0 p1 p2 p3)
(let* ((p (centro-quadrangulo p0 p1 p2 p3))
(n (normal-quadrangulo p0 p1 p2 p3))
(r (+ (* 0.99 (/ (distance p0 p1) 2.5)) (* 0.10 (cos (* (/ (distance p0 atrator1) 10) pi))))))
(cylinder-p p r (+c p (*c n 0.5)))))
#;(union
(with-current-layer "vidro1" (itera-quads cils (malha)))
(surface-grid (malha))
(with-current-layer "vidro2" (itera-quads cils (malha3)))
(surface-grid (malha3)))
(init 800)
(itera-quads cils (malha))
(send_data)
(time
(begin
(start)
))
| false |
9d689c1e9680a1064b472ba1f9743061d0d7917d | 32394cd709f7a2bf436f533aa2b88256c8466c1f | /Othello/play.rkt | ed2f0814a0a54d215da60307a96d4ee28f77b348 | []
| no_license | ankit-02/othello | 46cf1a1c0ff1390b20278cf2b69ac1f58d265615 | 3d79d30fffc1fe12c344b96db1eb6562bfc1d64e | refs/heads/master | 2020-04-16T13:13:06.498799 | 2019-01-14T07:38:01 | 2019-01-14T07:38:01 | 165,616,417 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 168 | rkt | play.rkt | #lang racket/gui
(require "AI-of-the-project.rkt")
(require "GUI-of-the-project.rkt")
(send reversi show #t)
(void (new message% [parent reversi] [label background])) | false |
2507ab1fb9e879626845dbc241550575c5a505cd | 17126876cd4ff4847ff7c1fbe42471544323b16d | /beautiful-racket-demo/jsonic-demo-3/scribblings/jsonic.scrbl | a25a295396518a747cdc1798786a9284e5513669 | [
"MIT"
]
| permissive | zenspider/beautiful-racket | a9994ebbea0842bc09941dc6d161fd527a7f4923 | 1fe93f59a2466c8f4842f17d10c1841609cb0705 | refs/heads/master | 2020-06-18T11:47:08.444886 | 2019-07-04T23:21:02 | 2019-07-04T23:21:02 | 196,293,969 | 1 | 0 | NOASSERTION | 2019-07-11T00:47:46 | 2019-07-11T00:47:46 | null | UTF-8 | Racket | false | false | 475 | scrbl | jsonic.scrbl | #lang scribble/manual
@(require (for-label json))
@title{jsonic: because JSON is boring}
@author{Roxy Lexington}
@defmodulelang[jsonic]
@section{Introduction}
This is a domain-specific language
that relies on the @racketmodname[json] library.
In particular, the @racket[jsexpr->string] function.
If we start with this:
@verbatim|{
#lang jsonic
[
@$ 'null $@,
@$ (* 6 7) $@,
@$ (= 2 (+ 1 1)) $@
]
}|
We'll end up with this:
@verbatim{
[
null,
42,
true
]
} | false |
63f92327cec66f281463ced85c0edf3071885a02 | 744d2f2ae1c950e037b080a0e29c8c49ca9b35e5 | /racket/lib/bpf-common.rkt | 2577f9d1787640254f497affe468e2e2050d5e0c | []
| no_license | uw-unsat/bpf-jit-verif | 5a6b18ce04ab291eca921dfeb4e5de9950f9b9fb | 7b15b8f30643509eb3b058cc6ca9060b5bad3bd3 | refs/heads/master | 2020-09-28T09:22:37.342309 | 2020-03-02T18:19:15 | 2020-03-02T18:19:15 | 226,746,308 | 10 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 9,626 | rkt | bpf-common.rkt | #lang rosette
(require
(prefix-in bpf: serval/bpf)
rosette/solver/smt/boolector
rosette/lib/angelic
rosette/solver/smt/boolector
rosette/solver/smt/z3
serval/lib/debug
serval/lib/unittest)
(provide (all-defined-out))
(define BPF_CLASS first)
(define BPF_OP second)
(define BPF_SRC last)
(define BPF_REG_0 'r0)
(define BPF_REG_1 'r1)
(define BPF_REG_2 'r2)
(define BPF_REG_3 'r3)
(define BPF_REG_4 'r4)
(define BPF_REG_5 'r5)
(define BPF_REG_6 'r6)
(define BPF_REG_7 'r7)
(define BPF_REG_8 'r8)
(define BPF_REG_9 'r9)
(define BPF_REG_FP 'r10)
(define TMP_REG_1 11)
(define TMP_REG_2 12)
(define (alu64? code)
(equal? (BPF_CLASS code) 'BPF_ALU64))
(define (alu32? code)
(equal? (BPF_CLASS code) 'BPF_ALU))
(define (jump? code)
(equal? (BPF_CLASS code) 'BPF_JMP))
(define (mov? code)
(equal? (BPF_OP code) 'BPF_MOV))
(define (shift? code)
(case (BPF_OP code)
[(BPF_LSH BPF_RSH BPF_ARSH) #t]
[else #f]))
(define (div? code)
(case (BPF_OP code)
[(BPF_DIV BPF_MOD) #t]
[else #f]))
(define (endian? code)
(equal? (BPF_OP code) 'BPF_END))
(define (src-x? code)
(equal? (BPF_SRC code) 'BPF_X))
(define (src-k? code)
(equal? (BPF_SRC code) 'BPF_K))
(define verify? (make-parameter #t))
(define-syntax-rule (check-verify x)
(begin
(define asserted (with-asserts-only x))
(check-equal? (asserts) null)
(for ([e asserted])
(let ([model (verify (assert e))])
(when (sat? model)
(define bugs (bug-ref e))
(when (null? bugs)
(printf "Unknown assert\n"))
(for ([bug bugs])
(displayln (bug-format bug model))))
(check-unsat? model)))))
(struct bpf-target
(
bitwidth ; bitwidth of target ISA
pc-alignment ; Alignment of target program counter
cpu-equal? ; How to compare target CPUs for equality
jit-function ; Function to run the JIT for the target ISA
run-jitted-code ; How to run the jitted code on the target isa
init-cpu ; Create a new cpu from (target_pc, bpf_cpu)
cpu-pc ; Extract program counter from the CPU
max-size ; Maximum size of target generated code
init-ctx ; Initialize JIT context
bpf-to-target-pc ; Map a BPF program counter to a target program counter
code-size ; How to go from JIT output to the size of generated code in PC units
))
(define (make-bpf-target
#:target-bitwidth target-bitwidth
#:target-pc-alignment target-pc-alignment
#:equiv cpu-equal?
#:run-jit run-jit
#:run-code run-jitted-code
#:init-cpu init-cpu
#:target-cpu-pc target-cpu-pc
#:max-target-size max-target-size
#:init-ctx init-ctx
#:bpf-to-target-pc bpf-to-target-pc
#:code-size code-size)
(bpf-target target-bitwidth target-pc-alignment cpu-equal?
run-jit run-jitted-code init-cpu target-cpu-pc max-target-size init-ctx
bpf-to-target-pc code-size))
(define max-insn (make-parameter (bv #x1000000 32)))
(define (verifier-preconditions insn bpf-cpu code dst src off imm)
; Operands for expressing precondition on BPF instruction
(define dst-op (bpf:reg-ref bpf-cpu dst))
(define src-op (bpf:reg-ref bpf-cpu src))
(&&
(bvult insn (max-insn))
(=> (&& (alu32? code) (div? code) (src-x? code)) (! (bveq (extract 31 0 src-op) (bv 0 32))))
(=> (&& (alu64? code) (div? code) (src-x? code)) (! (bveq src-op (bv 0 64))))
(=> (&& (alu32? code) (div? code) (src-k? code)) (! (bveq imm (bv 0 32))))
(=> (&& (alu64? code) (div? code) (src-k? code)) (! (bveq imm (bv 0 32))))
; Assume the shifting amount is in-bounds
(=> (&& (alu32? code) (shift? code) (src-x? code)) (bvult src-op (bv 32 64)))
(=> (&& (alu64? code) (shift? code) (src-x? code)) (bvult src-op (bv 64 64)))
(=> (&& (alu32? code) (shift? code) (src-k? code)) (bvult imm (bv 32 32)))
(=> (&& (alu64? code) (shift? code) (src-k? code)) (bvult imm (bv 64 32)))
; Assume the endianness imm is one of 16, 32, 64
(=> (endian? code) (|| (equal? imm (bv 16 32)) (equal? imm (bv 32 32)) (equal? imm (bv 64 32))))
; Assume imm in mov64 is 0
(=> (&& (alu64? code) (mov? code) (src-x? code))
(bveq imm (bv 0 32)))
; Assume imm in mov32 is either 0 or 1; the latter indicates the special variant with src == dst
(=> (&& (alu32? code) (mov? code) (src-x? code))
(|| (bveq imm (bv 0 32))
(&& (bveq imm (bv 1 32)) (equal? dst src))))
))
; Top-level definition for BPF Jit correctness.
(define
(bpf-jit-specification
code
target
#:add-symbolics [add-symbolics (lambda n (void))] ; Accumulate symbolics (for synthesis)
#:assumptions [assumptions (thunk null)]
#:synthesis [synthesis #f])
(define target-bitwidth (bpf-target-bitwidth target))
(define target-pc-alignment (bpf-target-pc-alignment target))
(define cpu-equal? (bpf-target-cpu-equal? target))
(define run-jit (bpf-target-jit-function target))
(define run-jitted-code (bpf-target-run-jitted-code target))
(define init-cpu (bpf-target-init-cpu target))
(define target-cpu-pc (bpf-target-cpu-pc target))
(define init-ctx (bpf-target-init-ctx target))
(define bpf-to-target-pc (bpf-target-bpf-to-target-pc target))
(define code-size (bpf-target-code-size target))
(define max-target-size (bpf-target-max-size target))
(define dst (if synthesis (choose* 'r0 'r1) (choose* 'r0 'r6)))
(define src (if synthesis (choose* 'r0 'r1) (choose* 'r0 'r6)))
; Create a symbolic register content for each BPF register
(define-symbolic* r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 (bitvector 64))
(define bpf-regs (bpf:regs r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10))
; Symbolic index of the current instruction being compiled
(define-symbolic* insn-idx (bitvector 32))
; Initialize the BPF CPU, PC, and registers
(define bpf-cpu (bpf:init-cpu))
(bpf:set-cpu-pc! bpf-cpu (zero-extend insn-idx (bitvector 64)))
(bpf:set-cpu-regs! bpf-cpu
(if (verify?) (struct-copy bpf:regs bpf-regs) (arbitrary bpf-regs)))
; Base of the generated target program
(define-symbolic* target-pc-base (bitvector target-bitwidth))
; Create architecture-dependent context
(define ctx (init-ctx))
; Construct target pc from BPF pc
(define (make-target-pc insn-idx)
(bpf-to-target-pc ctx target-pc-base insn-idx))
; The initial target pc is offsets[insn-1] / N
; where N is the size of instructions in the target language
(define target-pc-start (make-target-pc insn-idx))
; Create target CPU with starting program counter
(define target-cpu (init-cpu target-pc-start bpf-cpu))
; Verify initial states match. This should be guaranteed by init-target-cpu
(assert (cpu-equal? bpf-cpu target-cpu))
; Symbolic offset and immediate for BPF instruction
(define-symbolic* off (bitvector 16))
(define-symbolic* imm (bitvector 32))
(when (! (verify?))
(set! imm (arbitrary imm)))
; Add a list of symbolics we made.
; Only useful in program synthesis where we may want to quantify over these variables.
(add-symbolics (symbolics (list dst src off imm ctx insn-idx target-pc-base bpf-cpu target-cpu)))
(define pre (&&
; Jump target in-bounds
(bvult (bvadd insn-idx (sign-extend off (bitvector 32))) (max-insn))
; Relevant target progam counters in-bounds
(bvult (make-target-pc (bvadd (bv 1 32) insn-idx (sign-extend off (bitvector 32)))) max-target-size)
(bvult (make-target-pc insn-idx) max-target-size)
(bvult (make-target-pc (bvadd insn-idx (bv 1 32))) max-target-size)
; Target PC initially is aligned
(bveq
(bvurem target-pc-base target-pc-alignment)
(bv 0 target-bitwidth))
(verifier-preconditions insn-idx bpf-cpu code dst src off imm)
))
; Check that the preconditions are satisfiable.
; Technically not needed but rules out stupid verification bugs.
; (check-sat? (solve (assert pre)))
; FIXME: really want "(assume pre)" here to kill the asserts
; triggered by division by zero for example. For now it should suffice to guard with "when"
(when pre
(define insns
(for*/all ([src src #:exhaustive]
[dst dst #:exhaustive])
(run-jit insn-idx code dst src off imm ctx)))
; The next instruction is in the right place
(define precondition-next-instruction
(for/all ([insns insns #:exhaustive])
(bveq (make-target-pc (bvadd insn-idx (bv 1 32)))
(bvadd (make-target-pc insn-idx)
(integer->bitvector (code-size insns) (bitvector target-bitwidth))))))
(when precondition-next-instruction
; Run the BPF interpreter on the symbolic BPF instruction
(bpf:interpret-instr bpf-cpu code dst src off imm)
(for/all ([insns insns #:exhaustive])
; Run the target interpreter on the JITed instructions
(run-jitted-code target-cpu insns)
; Add external assumptions (must come after run-jitted-code)
(when (apply && (assumptions))
; The final states match
(bug-assert (cpu-equal? bpf-cpu target-cpu)
#:msg "final states must match")
; Prove that the final program counters correspond:
; offsets[bpf-pc-end - bpf-pc-base - 1] == (target-pc-end - target-pc-base) / N
; where N is the target instruction size.
(bug-assert
(bveq (make-target-pc (extract 31 0 (bpf:cpu-pc bpf-cpu)))
(target-cpu-pc target-cpu))
#:msg "final PCs must match")
)))))
| true |
793c78329845df4d1a1349dc1ff93542071e942f | a153d785bd40c1f740fb4ae6ab1657e16908b080 | /www/notes/hustle/ast.rkt | f5e85eccbe95bc357ac9715a78d1fa277e57edfe | [
"AFL-3.0"
]
| permissive | Nish-droid/www | 7a52c090a508617f1d1f04ec6578d109771d8e9b | 0993a9083d570f3643c9fe048ea4f639077c19fd | refs/heads/master | 2022-06-05T05:11:32.201145 | 2020-04-30T22:37:50 | 2020-04-30T22:37:50 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 359 | rkt | ast.rkt | #lang racket
;; type Expr =
;; | Integer
;; | Boolean
;; | Variable
;; | (list Prim1 Expr)
;; | (list Prim2 Expr Expr)
;; | `(if ,Expr ,Expr ,Expr)
;; | `(let ((,Variable ,Expr)) ,Expr)
;; type Prim1 =
;; | 'add1 | 'sub1 | 'zero?
;; | 'box | 'unbox | 'car | 'cdr
;; type Prim2 =
;; | '+ | '- | 'cons
;; type Variable = Symbol (except 'add1 'sub1 'if, etc.)
| false |
5585b655d132b4b1f35d8d172ce2799341c9654a | ef61a036fd7e4220dc71860053e6625cf1496b1f | /HTDP2e/02-arbitrary-large-data/ch-08-lists/ex-132-contains-flatt?.rkt | f9b7bc6a24fd23c39756319c000cc2535d9d4bcb | []
| no_license | lgwarda/racket-stuff | adb934d90858fa05f72d41c29cc66012e275931c | 936811af04e679d7fefddc0ef04c5336578d1c29 | refs/heads/master | 2023-01-28T15:58:04.479919 | 2020-12-09T10:36:02 | 2020-12-09T10:36:02 | 249,515,050 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,349 | rkt | ex-132-contains-flatt?.rkt | ;; The first three lines of this file were inserted by DrRacket. They record metadata
;; about the language level of this file in a form that our tools can easily process.
#reader(lib "htdp-beginner-abbr-reader.ss" "lang")((modname ex-132-contains-flatt?) (read-case-sensitive #t) (teachpacks ()) (htdp-settings #(#t constructor repeating-decimal #f #t none #f () #f)))
; List-of-names -> Boolean
; determines whether "Flatt" is on a-list-of-names
(check-expect
(contains-flatt?
'()) #f)
(check-expect
(contains-flatt?
(cons "Felleisen" '())) #f)
(check-expect
(contains-flatt?
(cons "Flatt" '())) #t)
(check-expect
(contains-flatt?
(cons "Felleisen" (cons "Flatt" '()))) #t)
(check-expect
(contains-flatt?
(cons "A" (cons "Find" (cons "C" '()))) #f)
(check-expect
(contains-flatt?
(cons "Fagan"
(cons "Findler"
(cons "Fisler"
(cons "Flanagan"
(cons "Flatt"
(cons "Felleisen"
(cons "Friedman" '()))))))))
#t)
(define (contains-flatt? alon)
(cond [(empty? alon) #f]
[(cons? alon)
(or (string=? (first alon) "Flatt")
(contains-flatt? (rest alon)))]))
| false |
cfe6a973b3f8ec4cfd8c3ff5ac13d5f813f787bd | 8ad2bcf76a6bda64f509da5f0844e0285f19d385 | /bin/timer | bbce3dd6fba82bb0218732fd9a6e49c7f3d07582 | []
| no_license | jeapostrophe/exp | c5efae0ea7068bb5c8f225df6de45e6c4fa566bd | 764265be4bcd98686c46ca173d45ee58dcca7f48 | refs/heads/master | 2021-11-19T00:23:11.973881 | 2021-08-29T12:56:11 | 2021-08-29T12:56:11 | 618,042 | 39 | 5 | null | null | null | null | UTF-8 | Racket | false | false | 736 | timer | #! /usr/bin/env racket
#lang racket/base
(require racket/format)
(define (~mr x)
(~r #:min-width 2 #:pad-string "0"
x))
(define (format-duration d)
(define-values (ds ms) (quotient/remainder d 1000))
(define-values (dm s) (quotient/remainder ds 60))
(define-values (dh m) (quotient/remainder dm 60))
(define-values (dd h) (quotient/remainder dh 24))
(~a (~mr h) ":" (~mr m) ":" (~mr s) "." (~r ms)))
(module+ main
(let loop ()
(define start (current-milliseconds))
(for ([e (in-vector (current-command-line-arguments))])
(printf "~a " e))
(flush-output)
(void (read-line))
(define end (current-milliseconds))
(define d (- end start))
(displayln (format-duration d))
(loop)))
| false |
|
906dcc7ec7187abcb4132807ae0ec48cb3dac970 | f5da4884c236512f9a945100234e213e51f980d3 | /serval/arm32/interp/integer-data-processing-immediate.rkt | f9a575187f2a550db82fc20e3a925019bb00042f | [
"MIT"
]
| permissive | uw-unsat/serval | 87574f5ec62480463ae976468d4ae7a56e06fe9f | 72adc4952a1e62330aea527214a26bd0c09cbd05 | refs/heads/master | 2022-05-12T23:19:48.558114 | 2022-01-20T18:53:26 | 2022-01-20T18:53:26 | 207,051,966 | 45 | 12 | MIT | 2022-03-21T14:05:50 | 2019-09-08T02:40:10 | Racket | UTF-8 | Racket | false | false | 3,763 | rkt | integer-data-processing-immediate.rkt | #lang rosette
(require
"common.rkt")
(provide
and-immediate ands-immediate
eor-immediate eors-immediate
sub-immediate subs-immediate
rsb-immediate rsbs-immediate
add-immediate adds-immediate
adc-immediate adcs-immediate
sbc-immediate sbcs-immediate
rsc-immediate rscs-immediate)
(define (decode cpu S Rn Rd imm12)
(define d Rd)
(define n Rn)
(define setflags (bveq S (bv #b1 1)))
(define-values (imm32 carry) (a32-expand-imm_c imm12 (cpu-pstate.c cpu)))
(values d n setflags imm32 carry))
(define (interpret-bitwise proc cpu S Rn Rd imm12)
(define-values (d n setflags imm32 carry) (decode cpu S Rn Rd imm12))
(define result (proc (cpu-gpr-ref cpu n) imm32))
(cond
[(r15? d)
(if setflags
(alu-exception-return cpu result)
(alu-write-pc cpu result))]
[else
(cpu-gpr-set! cpu d result)
(when setflags
(cpu-pstate.n-set! cpu (bit 31 result))
(cpu-pstate.z-set! cpu (is-zero-bit result))
(cpu-pstate.c-set! cpu carry)
; PSTATE.V unchanged
)]))
(define interpret-and/ands
(curry interpret-bitwise bvand))
(define interpret-eor/eors
(curry interpret-bitwise bvxor))
(define (interpret-arithmetic proc-Rn proc-imm32 proc-carry cpu S Rn Rd imm12)
(define-values (d n setflags imm32 carry) (decode cpu S Rn Rd imm12))
(define-values (result nzcv) (add-with-carry (proc-Rn (cpu-gpr-ref cpu n)) (proc-imm32 imm32) (proc-carry (cpu-pstate.c cpu))))
(cond
[(r15? d)
(if setflags
(alu-exception-return cpu result)
(alu-write-pc cpu result))]
[else
(cpu-gpr-set! cpu d result)
(when setflags
(cpu-pstate.nzcv-set! cpu nzcv))]))
(define interpret-sub/subs
(curry interpret-arithmetic identity bvnot (const (bv #b1 1))))
(define interpret-rsb/rsbs
(curry interpret-arithmetic bvnot identity (const (bv #b1 1))))
(define interpret-add/adds
(curry interpret-arithmetic identity identity (const (bv #b0 1))))
(define interpret-adc/adcs
(curry interpret-arithmetic identity identity identity))
(define interpret-sbc/sbcs
(curry interpret-arithmetic identity bvnot identity))
(define interpret-rsc/rscs
(curry interpret-arithmetic bvnot identity identity))
(define-insn (S Rn Rd imm12)
#:encode (lambda (opc) (list (bv #b0010 4) (bv opc 3) S Rn Rd imm12))
[(#b000) and/ands-immediate interpret-and/ands]
[(#b001) eor/eors-immediate interpret-eor/eors]
[(#b010) sub/subs-immediate interpret-sub/subs]
[(#b011) rsb/rsbs-immediate interpret-rsb/rsbs]
[(#b100) add/adds-immediate interpret-add/adds]
[(#b101) adc/adcs-immediate interpret-adc/adcs]
[(#b110) sbc/sbcs-immediate interpret-sbc/sbcs]
[(#b111) rsc/rscs-immediate interpret-rsc/rscs])
(define and-immediate
(curry and/ands-immediate (bv #b0 1)))
(define ands-immediate
(curry and/ands-immediate (bv #b1 1)))
(define eor-immediate
(curry eor/eors-immediate (bv #b0 1)))
(define eors-immediate
(curry eor/eors-immediate (bv #b1 1)))
(define sub-immediate
(curry sub/subs-immediate (bv #b0 1)))
(define subs-immediate
(curry sub/subs-immediate (bv #b1 1)))
(define rsb-immediate
(curry rsb/rsbs-immediate (bv #b0 1)))
(define rsbs-immediate
(curry rsb/rsbs-immediate (bv #b1 1)))
(define add-immediate
(curry add/adds-immediate (bv #b0 1)))
(define adds-immediate
(curry add/adds-immediate (bv #b1 1)))
(define adc-immediate
(curry adc/adcs-immediate (bv #b0 1)))
(define adcs-immediate
(curry adc/adcs-immediate (bv #b1 1)))
(define sbc-immediate
(curry sbc/sbcs-immediate (bv #b0 1)))
(define sbcs-immediate
(curry sbc/sbcs-immediate (bv #b1 1)))
(define rsc-immediate
(curry rsc/rscs-immediate (bv #b0 1)))
(define rscs-immediate
(curry rsc/rscs-immediate (bv #b1 1)))
| false |
eb4bb1f9c6873b63e31e8cfd3faeafc3ef7d94b0 | 5bbc152058cea0c50b84216be04650fa8837a94b | /benchmarks/stack/untyped/stack.rkt | 9c05cdc2565a8342ec253e002937f0594087a45f | []
| no_license | nuprl/gradual-typing-performance | 2abd696cc90b05f19ee0432fb47ca7fab4b65808 | 35442b3221299a9cadba6810573007736b0d65d4 | refs/heads/master | 2021-01-18T15:10:01.739413 | 2018-12-15T18:44:28 | 2018-12-15T18:44:28 | 27,730,565 | 11 | 3 | null | 2018-12-01T13:54:08 | 2014-12-08T19:15:22 | Racket | UTF-8 | Racket | false | false | 102 | rkt | stack.rkt | #lang racket/base
(provide
init
push
)
(define (init)
'())
(define (push st i)
(cons i st))
| false |
151f39eb4b78f72b4549bc7d9dbd83eeae218146 | 62d9610ccca3527fc40e1e3422ea2978439d75e6 | /tests-driver.rkt | 234a7d9d1b2a856a501750c93ef8e5c69bec264d | []
| no_license | aymanosman/racket-ghuloum-compiler | 8e6a93524e2a19267ef73cef0d802f63adef4ea9 | 9645313d52ef150641e0543243b1b7996b70b2c6 | refs/heads/master | 2020-04-20T13:49:38.827418 | 2020-03-17T23:51:26 | 2020-03-17T23:51:26 | 168,880,264 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 3,245 | rkt | tests-driver.rkt | #lang racket
(provide emit
test-all
compiler
compile-port
current-system-type
add-tests-with-string-output)
(define all-tests '())
(define (add-test! t)
(set! all-tests (cons t all-tests)))
(define-syntax add-tests-with-string-output
(syntax-rules (=>)
[(_ test-name [expr => output-string] ...)
(add-test!
'(test-name [expr string output-string] ...))]))
(define (run-compile expr)
(call-with-output-file "stst.s" #:exists 'replace
(lambda (out)
(parameterize ([compile-port out])
((compiler) expr)))))
(define current-system-type (make-parameter 'macosx)) ;; 'linux
(define (build)
(unless (if (equal? 'macosx (current-system-type))
(system "gcc -Wall -Wconversion -fomit-frame-pointer -fno-asynchronous-unwind-tables -o stst runtime.c stst.s")
(system "docker exec box1 gcc -o stst runtime.c stst.s"))
(error 'make "could not build target")))
(define (execute)
(unless (if (equal? 'macosx (current-system-type))
(system "./stst > stst.out")
(system "docker exec box1 ./stst > stst.out"))
(error 'make "produced program exited abnormally")))
(define (test-with-string-output test-id expr expected-output)
(run-compile expr)
(build)
(execute)
(unless (string=? expected-output (file->string "stst.out"))
(error 'test "output mismatch for test ~s, expected ~s, got ~s"
test-id expected-output (file->string "stst.out"))))
(define (test-one test-id test)
(let ([expr (car test)]
[type (cadr test)]
[out (caddr test)])
(printf "test ~s:~s ..." test-id expr)
(flush-output)
(case type
[(string) (test-with-string-output test-id expr out)]
[else (error 'test "invalid test type ~s" type)])
(printf " ok\n")))
(define (test-all)
(dynamic-wind
(lambda ()
(start-container))
(lambda ()
(do-test-all))
(lambda ()
(stop-container))))
;; TODO no-docker-flag
(define (start-container)
(when (not (equal? 'macosx (current-system-type)))
(system "docker stop box1 || true")
(unless (system "docker run -dt --rm --name box1 -v $PWD:/data -w /data gcc")
(error 'make "failed to start container"))))
(define (stop-container)
(when (not (equal? 'macosx (current-system-type)))
(unless (system "docker stop box1")
(error 'make "failed to stop container"))))
(define (do-test-all)
(let f ([i 0] [ls (reverse all-tests)])
(if (null? ls)
(printf "passed all ~s tests\n" i)
(let ([x (car ls)] [ls (cdr ls)])
(let* ([test-name (car x)]
[tests (cdr x)]
[n (length tests)])
(printf "Performing ~a tests ...\n" test-name)
(let g ([i i] [tests tests])
(cond
[(null? tests) (f i ls)]
[else
(test-one i (car tests))
(g (add1 i) (cdr tests))])))))))
(define (emit . args)
(apply fprintf (compile-port) args)
(newline (compile-port)))
(define compile-port
(make-parameter
(current-output-port)))
(define compiler
(make-parameter
(lambda (exp) (error 'compiler "you need to define this!!"))))
| true |
c64c07b01895297cd3188962ec13a27d8c98158c | 3ac344d1cac4caa5eb4842bc0e4d61b1ae7030fb | /scribblings/assertions.scrbl | 62d69d0aa8063f3eb5af136a0002918a96f0943d | [
"ISC"
]
| permissive | vicampo/riposte | 0c2f2a8459a2c6eee43f6f8a83f329eb9741e3fc | 73ae0b0086d3e8a8d38df095533d9f0a8ea6b31b | refs/heads/master | 2021-10-29T11:18:14.745047 | 2021-10-13T10:20:33 | 2021-10-13T10:20:33 | 151,718,283 | 42 | 5 | ISC | 2019-03-26T12:20:23 | 2018-10-05T12:35:49 | Racket | UTF-8 | Racket | false | false | 1,846 | scrbl | assertions.scrbl | #lang scribble/manual
@title{Assertions}
Assertions are checks that succeed or fail. When executing an assertion, Riposte will see whether what's being asserted is true. If it's true, it moves on to the next thing (command, assertion, etc.). If the check fails, Riposte bails out.
There are a few different kinds of assertions:
@itemlist[
@item{equations}
@item{disequations}
@item{inequalities}
@item{type checks}
]
@section{Equations and inequalities}
Write an equation by writing two expressions separated by @tt{=}.
Write a disequation by writing @tt{!=}
@section{Type checks}
You can use @tt{is} and the JSON type keywords to assert that a value has a certain type. The types are:
@itemlist[
@item[null]
@item{number}
@item{integer}
@item{boolean}
@item{string}
@item{array}
@item{object}
]
You can use these words as-is. Thus:
@codeblock[#:keep-lang-line? #f #:line-numbers #f]|{
#lang riposte
$foo is an integer
}|
is an assertion that succeeds provided that the value held by @tt{$foo} is indeed an integer.
@section{Negation}
You can assert that a value does not have a certain type by using @tt{not}. Thus:
@codeblock[#:keep-lang-line? #f #:line-numbers #f]|{
#lang riposte
$bar is not an array
}|
works provided that @tt{$bar} is not an array.
@section{Adjectives}
One can tweak checks with adjectives. The set of adjectives available depends on the type.
Use @tt{non} to say that a value does not meet a certain adjective.
@subsection{Numeric adjectives}
@itemlist[
@item{@tt{positive} / @tt{non positive}}
@item{@tt{negative} / @@tt{non negative}}
]
@subsection{String adjectives}
@itemlist[
@item{@tt{empty} / @tt{non empty}}
]
@subsection{Array adjectives}
@itemlist[
@item{@tt{empty} / @tt{non empty}}
]
@subsection{Object adjectives}
@itemlist[
@item{@tt{empty} / @tt{non empty}}
]
| false |
0bf16b03d83602bff57cbe973b2ecd6baf6fed8f | 8ce07cfb521a586aa08c20b29a2b7204c2a1bde9 | /test/global.rkt | c133abd8d49fc8a9ee0bb4f41e681db46d06a4a5 | [
"MIT"
]
| permissive | hnj2/serval | cfe8976aede11bde0a31856ccb68fc336c70860a | 51ffd695eaa81047fa6542eadfb87f1e0820be90 | refs/heads/master | 2022-12-12T14:03:58.370667 | 2020-08-17T23:07:03 | 2020-08-17T23:07:03 | 291,007,500 | 0 | 0 | MIT | 2020-08-28T09:33:49 | 2020-08-28T09:33:48 | null | UTF-8 | Racket | false | false | 2,928 | rkt | global.rkt | #lang rosette
(require (except-in rackunit fail)
rackunit/text-ui
rosette/lib/roseunit
serval/lib/core
serval/lib/unittest
(prefix-in llvm: serval/llvm))
(require "generated/racket/test/global.globals.rkt"
"generated/racket/test/global.map.rkt")
(require "generated/racket/test/global.ll.rkt")
(define N 4096)
(define (check-global-val x)
(parameterize ([llvm:current-machine (llvm:make-machine symbols globals)])
(define exp (bv x 64))
(check-not-equal? (@get_value) exp)
(@set_value exp)
(define act (@get_value))
(check-equal? act exp)))
(define (check-global-concrete)
(check-global-val 42)
(check-global-val 0)
(check-equal? (asserts) null))
(define (check-global-symbolic)
(define-symbolic v64 (bitvector 64))
(define-symbolic v32 (bitvector 32))
; @val i64
(parameterize ([llvm:current-machine (llvm:make-machine symbols globals)])
(@set_value v64)
(check-equal? (asserts) null)
(check-equal? (@get_value) v64))
; @vals [10 x i32]
; constant index
(parameterize ([llvm:current-machine (llvm:make-machine symbols globals)])
(@set_value_i (bv 1 64) v32)
(check-equal? (asserts) null)
(check-equal? (@get_value_i (bv 1 64)) v32))
; symbolic index
(parameterize ([llvm:current-machine (llvm:make-machine symbols globals)])
(define pre (bvult v64 (bv N 64)))
(define-values (cond asserted)
(with-asserts
(begin
(@set_value_i v64 v32)
(equal? (@get_value_i v64) v32))))
(check-equal? (asserts) null)
(for-each (lambda (x) (check-unsat? (verify (assert x)))) asserted)
(check-sat (solve (assert cond)))
(check-unsat? (verify (assert (=> pre cond))))))
(define-symbolic spec-vals (~> i64 i32))
(define (spec-set_value_i i val)
(let ([old spec-vals])
(set! spec-vals (lambda (x) (if (equal? x i) val (old x))))))
(define (vals-eqv?)
(define-symbolic i i64)
(define block (llvm:symbol->block 'vals))
(forall (list i) (=> (bvult i (bv N 64))
(equal? (spec-vals i) (mblock-iload block (list i))))))
(define (check-global-spec)
(parameterize ([llvm:current-machine (llvm:make-machine symbols globals)])
(define-symbolic i i64)
(define-symbolic v i32)
(define pre (vals-eqv?))
(spec-set_value_i i v)
(define asserted
(with-asserts-only (@set_value_i i v)))
(define post (vals-eqv?))
; no UB triggered
(check-equal? (asserts) null)
(for-each (lambda (x) (check-unsat? (verify (assert x)))) asserted)
; verify spec against impl
(check-unsat? (verify (assert (=> pre post))))))
(define global-tests
(test-suite+
"Tests for global.c"
(test-case+ "global-concrete" (check-global-concrete))
(test-case+ "global-symbolic" (check-global-symbolic))
(test-case+ "global-spec" (check-global-spec))))
(module+ test
(time (run-tests global-tests)))
| false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.