diff --git a/LICENSE b/LICENSE index 8216009..623e493 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Code by Nore, WTFPL. +Code by Nore, licensed under the CC-BY. Textures of CPU by kaeza, CC-BY-SA. Textures and nodebox of screen by kaeza, edited by Nore, WTFPL. Textures of floppy drive by kaeza, CC-BY-SA. diff --git a/f.py b/f.py index 9818a69..08efacc 100644 --- a/f.py +++ b/f.py @@ -25,7 +25,7 @@ def to_int(x): except: return None -def header(name): +def header(name, lt=None): global here global latest memory[here] = 0 @@ -33,12 +33,16 @@ def header(name): for c in name.strip(): memory[here] = ord(c) here += 1 - setmemory(here, latest) + if lt!=None: + setmemory(here, lt) + else: + setmemory(here, latest) here += 2 memory[here] = len(name) here += 1 - latest = here - df[name] = here + if lt==None: + latest = here + df[name] = here def compile_constant(name, value): value=to_int(value) @@ -52,6 +56,42 @@ def compile_constant(name, value): here += 1 memory[here] = 41 here += 1 + +def env_compile_2constant(name, value): + value=to_int(value) + global here + global env_latest + header(name, env_latest) + env_latest = here + memory[here] = 77 + here += 1 + setmemory(here, value&0xffff) + here += 2 + memory[here] = 33 + here += 1 + memory[here] = 77 + here += 1 + setmemory(here, value>>16) + here += 2 + memory[here] = 33 + here += 1 + memory[here] = 41 + here += 1 + +def env_compile_constant(name, value): + value=to_int(value) + global here + global env_latest + header(name, env_latest) + env_latest = here + memory[here] = 77 + here += 1 + setmemory(here, value) + here += 2 + memory[here] = 33 + here += 1 + memory[here] = 41 + here += 1 ITABLE = { "IPOP":0x28, @@ -267,6 +307,12 @@ def compile_def(name, l, immed=False, save_in=None): setmemory(here, stack.pop()) here += 2 setmemory(stack.pop(), here) + elif word == "+LOOP": + setmemory(here, df["(+loop)"]) + here += 2 + setmemory(here, stack.pop()) + here += 2 + setmemory(stack.pop(), here) elif word == "QUIT": squit.append(here) here += 2 @@ -294,15 +340,24 @@ def compile_def(name, l, immed=False, save_in=None): memory=[0]*0x10000 here=0x40c latest=0 +env_latest = 0 state="forth" for i in lf: k = i.split() if len(k)>=1 and k[0] == "ASSEMBLER": state="assembler" + elif len(k)>=1 and k[0] == "ENVIRONMENT": + state="env" elif len(k)>=1 and k[0] == "FORTH": state="forth" elif len(k)>=3 and k[1] == "CONSTANT" and k[0]!=":": - compile_constant(k[2],k[0]) + if state == "env": + env_compile_constant(k[2], k[0]) + else: + compile_constant(k[2],k[0]) + elif len(k)>=3 and k[1] == "2CONSTANT" and k[0]!=":": + if state == "env": + env_compile_2constant(k[2], k[0]) elif len(k)>=3: #print(k[0]) if k[0][0] == "\\": @@ -335,6 +390,12 @@ setmemory(0x409, df["COLD"]) memory[0x40b]=0x1a setmemory(0x10c, latest) setmemory(0x112, here) +setmemory(0x1a6, 1) +setmemory(0x1b0, latest) +setmemory(0x1b2, env_latest) +setmemory(0x1a4, 0x1b0) +setmemory(0x1d0, 0x1b0) +setmemory(0x1a2, 0x1b4) memory[0xff00]=0x4d memory[0xff01]=0x00 diff --git a/forth.fth b/forth.fth index 97e06b2..4c07930 100644 --- a/forth.fth +++ b/forth.fth @@ -84,6 +84,24 @@ ASSEMBLER : SET-CHANNEL PLY PLX CHAN NXT ; : SEND PLY PLX SEND NXT ; +ENVIRONMENT +256 CONSTANT /COUNTED-STRING +34 CONSTANT /HOLD +84 CONSTANT /PAD +8 CONSTANT ADRESS-UNIT-BITS +-1 CONSTANT CORE +-1 CONSTANT CORE-EXT +-1 CONSTANT FLOORED +255 CONSTANT MAX-CHAR +32767 CONSTANT MAX-N +-1 CONSTANT MAX-U +128 CONSTANT RETURN-STACK-CELLS +128 CONSTANT STACK-CELLS +0xffffffff 2CONSTANT MAX-UD +0x7fffffff 2CONSTANT MAX-D +-1 CONSTANT SEARCH-ORDER +-1 CONSTANT SEARCH-ORDER-EXT +8 CONSTANT WORDLISTS FORTH 32 CONSTANT BL @@ -95,13 +113,19 @@ FORTH 0x108 CONSTANT BASE 0x10a CONSTANT STATE 0x10c CONSTANT LATEST -0x10e CONSTANT ENVDICO 0x110 CONSTANT SPAN 0x112 CONSTANT (here) 0x114 CONSTANT LT 0x116 CONSTANT #TIB 0x118 CONSTANT TIB 0x1a0 CONSTANT 'NUMBER +0x1a2 CONSTANT NEW-WORDLIST +0x1a4 CONSTANT CW +0x1a6 CONSTANT NWORDER +0x1b0 CONSTANT WORDLISTS +0x1b0 CONSTANT FORTH-WORDLIST +0x1b2 CONSTANT ENVDICO +0x1d0 CONSTANT WORDER : CHARS ; IMMEDIATE : ALIGN ; IMMEDIATE @@ -169,8 +193,8 @@ FORTH : THEN HERE SWAP ! ; IMMEDIATE : BEGIN HERE ; IMMEDIATE : FIND-WORD-DICO SWAP >R BEGIN DUP 4 - RSTR R@ = IF 2 PICK R@ STR= IF NIP R> DROP EXIT THEN ELSE DROP THEN 3 - @ DUP 0= UNTIL NIP R> DROP ; -: FIND-WORD LATEST @ FIND-WORD-DICO ; -: FIND DUP COUNT FIND-WORD DUP IF NIP DUP 1- C@ 128 AND IF 1 ELSE -1 THEN THEN ; +: GET-WL-LATEST DUP CW @ = IF DROP LATEST @ ELSE @ THEN ; +: FIND-WORD WORDER NWORDER @ 2* + WORDER DO I @ GET-WL-LATEST FIND-WORD-DICO ?DUP IF UNLOOP EXIT THEN 2 +LOOP 0 ; : ' PARSE-WORD FIND-WORD ; : POSTPONE ' DUP 1- C@ 128 AND IF , ELSE ['] (lit) , , ['] , , THEN ; IMMEDIATE : LITERAL ['] (lit) , , ; IMMEDIATE @@ -245,4 +269,17 @@ FORTH : OFF SET-CHANNEL S" off" SEND ; : IO@ RECEIVE 3 < ; : LOADPKG 0 0x11e C! PARSE-WORD 0x11a 2! BEGIN 0x11a 2@ SET-CHANNEL 0x11e 1 SEND 0x11e C@ 1+ 0x11e C! 0x11a 2@ 16 RECEIVE-AT 16 C@ WHILE 16 SWAP EVALUATE REPEAT DROP ; +: GET-CURRENT CW @ ; +: SET-CURRENT LATEST @ CW @ ! DUP CW ! @ LATEST ! ; +: WORDLIST NEW-WORDLIST @ DUP CELL+ NEW-WORDLIST ! ; +: DEFINITIONS WORDER @ SET-CURRENT ; +: GET-ORDER WORDER NWORDER @ 1- 2* + ?DO I @ -2 +LOOP NWORDER @ ; +: SET-ORDER DUP NWORDER ! WORDER 0 ?DO TUCK ! CELL+ LOOP DROP ; +: ALSO WORDER DUP CELL+ NWORDER @ 2* MOVE NWORDER 2 +! ; +: FORTH FORTH-WORDLIST WORDER ! ; +: ONLY FORTH 1 NWORDER ! ; +: ORDER WORDER NWORDER @ 2* + WORDER DO I @ . 2 +LOOP CR CW @ ; +: PREVIOUS WORDER CELL+ WORDER NWORDER @ 1- 2* MOVE NWORDER -2 +! ; +: SEARCH-WORDLIST GET-WL-LATEST FIND-WORD-DICO DUP IF DUP 1- C@ 128 AND IF 1 ELSE -1 THEN THEN ; +: FIND DUP COUNT WORDER NWORDER @ 2* + WORDER DO 2DUP I @ SEARCH-WORDLIST ?DUP IF 2>R 2DROP DROP 2R> UNLOOP EXIT THEN 2 +LOOP 2DROP 0 ; : COLD S" Computer is ready (" TYPE UNUSED U. S" bytes free)" TYPE QUIT ; diff --git a/forth_floppy.lua b/forth_floppy.lua index 299f677..be22a5b 100644 --- a/forth_floppy.lua +++ b/forth_floppy.lua @@ -1,3 +1,3 @@ function create_forth_floppy() - return "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\010\000\000\000\051\028\000\000\000\000\102\028\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\021\016\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\077\000\002\024\077\000\003\025\077\051\028\026\000\069\088\073\084\000\000\004\040\041\000\040\108\105\116\041\020\004\005\043\033\041\000\040\115\108\105\116\041\031\004\006\043\069\011\033\034\012\068\027\041\000\040\100\111\100\111\101\115\041\044\004\008\043\033\043\027\041\000\068\085\080\065\004\003\048\033\041\000\083\087\065\080\077\004\004\049\050\033\034\041\000\082\079\084\088\004\003\049\050\051\034\033\035\041\000\045\082\079\084\100\004\004\049\050\051\033\035\034\041\000\079\086\069\082\115\004\004\050\048\034\033\041\000\080\073\067\075\130\004\004\050\068\012\008\013\007\034\041\000\068\082\079\080\143\004\004\049\041\000\050\068\082\079\080\159\004\005\049\049\041\000\050\068\085\080\170\004\004\050\048\034\033\034\041\000\050\083\087\065\080\181\004\005\049\050\051\003\051\034\033\035\019\035\041\000\050\079\086\069\082\196\004\005\051\003\051\050\048\034\035\019\035\033\034\041\000\078\073\080\216\004\003\049\032\041\000\084\085\067\075\235\004\004\049\050\033\034\033\041\000\063\068\085\080\246\004\004\048\057\001\000\041\033\041\000\062\082\004\005\002\049\001\041\000\082\062\017\005\002\017\033\041\000\082\064\026\005\002\016\033\041\000\033\035\005\001\050\049\038\041\000\067\033\043\005\002\050\049\054\041\000\064\053\005\001\048\004\032\041\000\067\064\062\005\002\048\020\032\041\000\065\078\068\072\005\003\050\048\044\032\041\000\079\082\083\005\002\050\048\045\032\041\000\088\079\082\094\005\003\050\048\046\032\041\000\073\078\086\069\082\084\106\005\006\048\047\032\041\000\040\098\114\097\110\099\104\041\121\005\008\043\027\041\000\040\048\098\114\097\110\099\104\041\137\005\009\050\043\058\001\000\027\041\000\082\079\076\076\153\005\004\050\065\075\068\012\008\013\005\033\049\068\074\074\007\037\073\073\069\072\059\245\255\041\000\043\168\005\001\050\049\012\034\041\000\045\196\005\001\050\049\013\034\041\000\043\033\206\005\002\050\065\007\049\012\066\037\041\000\042\217\005\001\050\049\014\034\041\000\085\060\230\005\002\050\048\013\032\041\000\085\062\241\005\002\049\050\013\033\041\000\077\042\252\005\002\050\049\015\034\033\041\000\085\077\042\007\006\003\050\049\014\034\033\041\000\048\061\020\006\002\048\057\003\000\047\032\041\077\000\000\032\041\000\048\060\062\032\006\003\048\057\001\000\041\077\255\255\032\041\000\048\060\051\006\002\050\063\033\041\000\048\062\067\006\002\050\058\002\000\034\041\063\047\033\041\000\060\062\077\006\002\050\048\013\058\002\000\032\041\077\255\255\032\041\000\061\093\006\001\050\048\013\058\005\000\077\255\255\032\041\077\000\000\032\041\000\069\077\080\084\089\082\111\006\006\077\000\003\025\041\000\069\077\080\084\089\083\137\006\006\077\000\002\024\041\000\068\069\080\084\072\152\006\005\008\078\000\002\013\068\078\001\000\061\033\041\000\050\042\166\006\002\078\001\000\048\062\032\041\000\050\047\184\006\002\078\001\000\048\061\032\041\000\082\083\072\073\070\084\197\006\006\050\048\060\032\041\000\076\083\072\073\070\084\214\006\006\050\048\062\032\041\000\050\062\082\229\006\003\050\049\001\002\041\000\050\082\062\241\006\003\018\017\033\034\041\000\050\082\064\253\006\003\018\016\002\033\034\041\000\049\043\009\007\002\048\073\032\041\000\049\045\021\007\002\048\070\032\041\000\069\088\069\067\085\084\069\031\007\007\049\026\000\042\047\077\079\068\046\007\005\051\050\049\015\031\035\034\041\000\042\047\057\007\002\051\050\049\015\031\034\041\000\047\077\079\068\071\007\004\051\050\063\031\035\034\041\000\047\086\007\001\051\050\063\031\034\041\000\077\079\068\098\007\003\051\050\063\031\035\041\000\085\077\047\077\079\068\111\007\006\051\049\050\030\035\034\041\000\070\077\047\077\079\068\127\007\006\051\049\050\031\035\034\041\000\079\043\144\007\002\050\049\012\034\033\041\000\085\068\077\047\077\079\068\157\007\007\051\049\050\030\035\034\033\041\000\060\174\007\001\050\063\065\050\034\046\069\063\047\057\004\000\050\063\033\041\049\067\013\033\041\000\062\187\007\001\049\050\033\063\065\050\034\046\069\063\047\057\004\000\050\063\033\041\049\067\013\033\041\000\078\069\071\065\084\069\213\007\006\048\047\073\032\041\000\040\100\111\041\246\007\004\043\001\050\051\003\002\041\000\040\063\100\111\041\003\008\005\043\001\050\049\001\002\013\058\004\000\018\018\017\027\041\000\073\019\008\001\016\033\041\000\074\039\008\001\019\018\034\018\016\002\050\002\003\033\041\000\085\078\076\079\079\080\047\008\006\018\018\018\041\000\040\108\111\111\112\041\068\008\006\018\074\016\002\013\043\058\004\000\018\018\018\041\027\041\000\040\043\108\111\111\112\041\082\008\007\018\065\049\012\016\070\002\067\064\013\063\033\066\018\002\013\063\050\046\069\043\058\002\000\027\041\018\018\018\041\000\087\065\073\084\108\008\004\000\041\000\076\069\065\086\069\146\008\005\017\017\017\027\041\000\082\069\067\069\073\086\069\045\065\084\157\008\010\051\050\048\082\032\041\000\068\069\076\069\084\069\045\077\083\071\176\008\010\050\049\083\041\000\083\069\084\045\067\072\065\078\078\069\076\196\008\011\050\049\085\041\000\083\069\078\068\215\008\004\050\049\084\041\000\066\076\227\008\002\077\032\000\033\041\000\070\065\076\083\069\237\008\005\077\000\000\033\041\000\084\082\085\069\251\008\004\077\255\255\033\041\000\040\115\111\117\114\099\101\041\008\009\008\077\000\001\033\041\000\062\073\078\025\009\003\077\004\001\033\041\000\083\079\085\082\067\069\045\073\068\037\009\009\077\006\001\033\041\000\066\065\083\069\055\009\004\077\008\001\033\041\000\083\084\065\084\069\068\009\005\077\010\001\033\041\000\076\065\084\069\083\084\082\009\006\077\012\001\033\041\000\069\078\086\068\073\067\079\097\009\007\077\014\001\033\041\000\083\080\065\078\113\009\004\077\016\001\033\041\000\040\104\101\114\101\041\126\009\006\077\018\001\033\041\000\076\084\141\009\002\077\020\001\033\041\000\035\084\073\066\152\009\004\077\022\001\033\041\000\084\073\066\165\009\003\077\024\001\033\041\000\039\078\085\077\066\069\082\177\009\007\077\160\001\033\041\000\067\072\065\082\083\193\009\133\042\020\004\000\065\076\073\071\078\207\009\133\042\020\004\000\065\076\073\071\078\069\068\219\009\135\042\020\004\000\067\069\076\076\043\233\009\005\042\031\004\002\000\196\005\020\004\000\067\069\076\076\045\245\009\005\042\031\004\002\000\206\005\020\004\000\067\072\065\082\043\007\010\005\042\021\007\020\004\000\067\069\076\076\083\025\010\005\042\184\006\020\004\000\069\077\073\084\039\010\004\042\044\004\006\000\115\099\114\101\101\110\215\008\031\004\002\000\043\005\031\004\002\000\031\004\001\000\227\008\020\004\000\082\069\067\069\073\086\069\052\010\007\042\031\004\128\000\176\008\020\004\000\050\033\094\010\002\042\088\004\130\004\043\005\245\009\043\005\020\004\000\050\064\109\010\002\042\077\004\245\009\062\005\088\004\062\005\020\004\000\083\079\085\082\067\069\128\010\006\042\025\009\128\010\020\004\000\083\062\068\151\010\003\042\077\004\067\006\020\004\000\077\065\088\165\010\003\042\181\004\213\007\153\005\194\010\159\004\137\005\196\010\235\004\020\004\000\077\073\078\179\010\003\042\181\004\213\007\153\005\220\010\235\004\137\005\222\010\159\004\020\004\000\068\043\205\010\002\042\100\004\196\005\115\004\157\007\100\004\196\005\020\004\000\072\069\088\230\010\003\042\031\004\016\000\068\009\043\005\020\004\000\068\069\067\073\077\065\076\252\010\007\042\031\004\010\000\068\009\043\005\020\004\000\084\085\067\075\018\011\004\042\088\004\130\004\020\004\000\078\073\080\037\011\003\042\088\004\159\004\020\004\000\065\066\083\051\011\003\042\077\004\067\006\153\005\076\011\246\007\020\004\000\040\109\097\114\107\101\114\041\065\011\008\042\097\009\043\005\141\009\043\005\020\004\000\084\089\080\069\090\011\004\042\077\004\077\006\153\005\142\011\130\004\196\005\088\004\019\008\138\011\039\008\072\005\052\010\082\008\128\011\137\005\144\011\170\004\020\004\000\082\083\084\082\109\011\004\042\021\007\077\004\031\004\002\000\196\005\072\005\031\004\127\000\083\005\037\011\206\005\088\004\020\004\000\067\082\154\011\002\042\031\004\010\000\052\010\020\004\000\083\080\065\067\069\187\011\005\042\031\004\032\000\052\010\020\004\000\083\080\065\067\069\083\205\011\006\042\077\004\077\006\153\005\251\011\031\004\000\000\003\008\247\011\205\011\082\008\241\011\137\005\253\011\159\004\020\004\000\083\084\082\061\224\011\004\042\031\004\000\000\003\008\050\012\130\004\072\005\130\004\072\005\093\006\153\005\038\012\068\008\170\004\251\008\020\004\088\004\021\007\088\004\021\007\082\008\016\012\170\004\008\009\020\004\000\073\077\077\069\068\073\065\084\069\007\012\009\042\097\009\062\005\031\007\077\004\072\005\031\004\128\000\094\005\088\004\053\005\020\004\000\072\069\082\069\069\012\004\042\141\009\062\005\020\004\000\091\100\012\129\042\251\008\082\009\043\005\020\004\000\093\112\012\001\042\008\009\082\009\043\005\020\004\000\065\076\076\079\084\126\012\005\042\141\009\217\005\020\004\000\044\144\012\001\042\100\012\043\005\031\004\002\000\144\012\020\004\000\067\044\156\012\002\042\100\012\053\005\031\004\001\000\144\012\020\004\000\083\075\073\080\045\087\072\073\084\069\175\012\010\042\077\004\072\005\031\004\033\000\187\007\153\005\233\012\021\007\181\004\111\006\153\005\229\012\020\004\137\005\203\012\020\004\000\069\088\073\084\045\073\070\045\069\078\068\202\012\011\042\151\010\051\011\037\009\062\005\111\006\153\005\021\013\151\010\196\005\031\004\000\000\026\005\159\004\020\004\000\080\065\082\083\069\045\076\073\077\073\084\083\250\012\012\042\151\010\130\004\196\005\088\004\037\009\062\005\196\005\020\004\000\062\073\078\045\069\078\068\039\013\007\042\151\010\051\011\037\009\043\005\020\004\000\067\079\085\078\084\069\068\045\083\084\082\073\078\071\067\013\014\042\077\004\100\012\053\005\100\012\021\007\115\004\130\004\196\005\088\004\003\008\133\013\039\008\072\005\130\004\053\005\021\007\082\008\119\013\159\004\100\012\020\004\000\080\065\082\083\069\045\087\079\082\068\096\013\010\042\250\012\039\013\202\012\181\004\111\006\153\005\178\013\067\013\159\004\031\004\000\000\020\004\077\004\017\005\077\004\072\005\031\004\032\000\213\007\153\005\224\013\021\007\181\004\111\006\153\005\220\013\067\013\159\004\035\005\206\005\026\005\088\004\020\004\137\005\182\013\051\011\077\004\151\010\159\004\206\005\021\007\037\009\043\005\035\005\206\005\026\005\088\004\020\004\000\080\065\082\083\069\153\013\005\042\151\010\051\011\037\009\062\005\111\006\153\005\030\014\159\004\151\010\196\005\031\004\000\000\020\004\039\013\077\004\017\005\100\004\017\005\077\004\072\005\035\005\093\006\153\005\084\014\021\007\181\004\111\006\153\005\080\014\026\005\159\004\067\013\159\004\035\005\206\005\026\005\088\004\020\004\137\005\040\014\026\005\159\004\051\011\077\004\151\010\159\004\206\005\021\007\037\009\043\005\035\005\206\005\026\005\088\004\020\004\000\087\079\082\068\003\014\004\042\151\010\051\011\037\009\062\005\111\006\153\005\151\014\159\004\031\004\000\000\100\012\053\005\100\012\020\004\039\013\077\004\017\005\100\004\017\005\077\004\072\005\035\005\093\006\153\005\205\014\021\007\181\004\111\006\153\005\201\014\026\005\159\004\067\013\159\004\035\005\206\005\026\005\088\004\020\004\137\005\161\014\026\005\159\004\051\011\077\004\151\010\159\004\206\005\021\007\037\009\043\005\035\005\206\005\026\005\088\004\096\013\020\004\000\072\069\065\068\069\082\122\014\006\042\153\013\037\011\031\004\000\000\175\012\130\004\196\005\088\004\003\008\022\015\039\008\072\005\175\012\082\008\012\015\097\009\062\005\156\012\175\012\020\004\000\058\247\014\001\042\247\014\100\012\077\004\152\009\043\005\031\004\042\000\175\012\126\012\020\004\000\058\067\079\068\069\037\015\005\042\247\014\100\012\077\004\152\009\043\005\020\004\000\085\078\085\083\069\068\067\015\006\042\100\012\246\007\020\004\000\078\067\072\065\082\090\015\005\042\077\004\072\005\077\004\031\004\058\000\187\007\153\005\133\015\031\004\048\000\206\005\137\005\161\015\077\004\031\004\097\000\187\007\153\005\155\015\031\004\055\000\206\005\137\005\161\015\031\004\087\000\206\005\020\004\000\062\078\085\077\066\069\082\106\015\007\042\077\004\017\005\031\004\000\000\003\008\011\016\106\015\077\004\068\009\062\005\187\007\130\004\067\006\121\005\083\005\153\005\249\015\196\004\068\009\062\005\230\005\031\004\000\000\088\004\100\004\068\009\062\005\020\006\230\010\100\004\031\004\000\000\230\010\100\004\021\007\137\005\007\016\159\004\039\008\068\008\026\005\088\004\206\005\020\004\082\008\187\015\026\005\159\004\031\004\000\000\020\004\042\031\004\000\000\031\004\000\000\196\004\130\004\072\005\031\004\045\000\111\006\153\005\072\016\088\004\021\007\088\004\031\007\174\015\196\004\159\004\246\007\031\004\001\000\196\004\137\005\084\016\174\015\100\004\159\004\031\004\001\000\115\004\020\004\000\078\085\077\066\069\082\174\015\006\042\193\009\062\005\046\007\020\004\000\083\065\086\069\045\073\078\080\085\084\096\016\010\042\037\009\062\005\031\004\001\000\020\004\000\082\069\083\084\079\082\069\045\073\078\080\085\084\119\016\013\042\077\004\031\004\001\000\111\006\153\005\172\016\159\004\037\009\043\005\251\008\137\005\188\016\031\004\000\000\019\008\186\016\159\004\082\008\180\016\008\009\020\004\000\067\079\085\078\084\147\016\005\042\077\004\021\007\088\004\072\005\020\004\000\067\072\065\082\199\016\004\042\153\013\159\004\072\005\020\004\000\070\073\076\076\218\016\004\042\115\004\077\004\077\006\153\005\014\017\130\004\196\005\088\004\003\008\010\017\077\004\039\008\053\005\082\008\000\017\137\005\016\017\170\004\159\004\020\004\000\069\082\065\083\069\235\016\005\042\031\004\000\000\235\016\020\004\000\040\029\017\129\042\031\004\041\000\003\014\170\004\020\004\000\046\040\043\017\130\042\031\004\041\000\003\014\109\011\020\004\000\092\060\017\129\042\031\004\010\000\003\014\170\004\020\004\000\084\072\069\078\076\017\132\042\100\012\088\004\043\005\020\004\000\066\069\071\073\078\095\017\133\042\100\012\020\004\000\070\073\078\068\045\087\079\082\068\045\068\073\067\079\113\017\014\042\088\004\017\005\077\004\031\004\004\000\206\005\154\011\035\005\111\006\153\005\185\017\031\004\002\000\143\004\035\005\007\012\153\005\181\017\051\011\026\005\159\004\020\004\137\005\187\017\159\004\031\004\003\000\206\005\062\005\077\004\032\006\153\005\141\017\051\011\026\005\159\004\020\004\000\070\073\078\068\045\087\079\082\068\136\017\009\042\097\009\062\005\136\017\020\004\000\070\073\078\068\224\017\004\042\077\004\199\016\224\017\077\004\153\005\028\018\051\011\077\004\031\007\072\005\031\004\128\000\083\005\153\005\024\018\031\004\001\000\137\005\028\018\031\004\255\255\020\004\000\039\241\017\001\042\153\013\224\017\020\004\000\080\079\083\084\080\079\078\069\035\018\136\042\035\018\077\004\031\007\072\005\031\004\128\000\083\005\153\005\079\018\156\012\137\005\093\018\031\004\031\004\156\012\156\012\031\004\156\012\156\012\020\004\000\076\073\084\069\082\065\076\054\018\135\042\031\004\031\004\156\012\156\012\020\004\000\078\076\073\084\069\082\065\076\106\018\136\042\077\004\017\005\031\004\000\000\003\008\158\018\031\004\031\004\156\012\031\004\000\000\156\012\082\008\142\018\026\005\031\004\000\000\003\008\192\018\100\012\031\004\002\000\206\005\039\008\031\004\004\000\230\005\206\005\043\005\082\008\168\018\020\004\000\068\079\069\083\062\129\018\005\042\031\004\065\004\097\009\062\005\021\007\043\005\026\005\097\009\062\005\031\004\005\000\196\005\043\005\020\004\000\091\039\093\203\018\131\042\035\018\106\018\020\004\000\091\067\079\077\080\073\076\069\093\239\018\137\042\035\018\156\012\020\004\000\059\003\019\129\042\031\004\020\004\156\012\097\009\043\005\112\012\020\004\000\067\079\068\069\059\015\019\005\042\031\004\041\000\175\012\097\009\043\005\020\004\000\091\067\072\065\082\093\039\019\134\042\218\016\106\018\020\004\000\067\082\069\065\084\069\062\019\006\042\247\014\100\012\097\009\043\005\031\004\042\000\175\012\100\012\031\004\006\000\196\005\106\018\031\004\020\004\156\012\020\004\000\086\065\082\073\065\066\076\069\079\019\008\042\079\019\031\004\002\000\144\012\020\004\000\067\079\078\083\084\065\078\084\124\019\008\042\247\014\100\012\097\009\043\005\031\004\077\000\175\012\156\012\031\004\033\000\175\012\031\004\041\000\175\012\020\004\000\077\065\082\075\069\082\147\019\006\042\100\012\247\014\100\012\088\004\031\004\042\000\175\012\106\018\097\009\062\005\106\018\031\004\090\011\156\012\031\004\020\004\156\012\097\009\043\005\020\004\000\073\070\188\019\130\042\031\004\153\005\156\012\100\012\031\004\000\000\156\012\020\004\000\069\076\083\069\235\019\132\042\031\004\137\005\156\012\100\012\088\004\031\004\000\000\156\012\100\012\088\004\043\005\020\004\000\085\078\084\073\076\004\020\133\042\031\004\153\005\156\012\156\012\020\004\000\082\069\080\069\065\084\038\020\134\042\031\004\137\005\156\012\156\012\100\012\088\004\043\005\020\004\000\087\072\073\076\069\059\020\133\042\031\004\153\005\156\012\100\012\088\004\031\004\000\000\156\012\020\004\000\067\065\083\069\085\020\132\042\031\004\000\000\020\004\000\069\078\068\067\065\083\069\112\020\135\042\031\004\159\004\156\012\077\004\051\006\153\005\155\020\100\012\088\004\043\005\137\005\137\020\159\004\020\004\000\079\070\130\020\130\042\031\004\130\004\156\012\031\004\111\006\156\012\031\004\153\005\156\012\100\012\031\004\000\000\156\012\031\004\159\004\156\012\020\004\000\069\078\068\079\070\165\020\133\042\031\004\137\005\156\012\100\012\031\004\000\000\156\012\100\012\100\004\043\005\020\004\000\083\076\073\084\069\082\065\076\209\020\136\042\031\004\044\004\156\012\077\004\156\012\130\004\196\005\088\004\019\008\019\021\039\008\072\005\175\012\082\008\009\021\020\004\000\083\034\244\020\130\042\031\004\034\000\003\014\244\020\020\004\000\080\065\068\027\021\003\042\100\012\031\004\036\000\196\005\020\004\000\086\065\076\085\069\045\021\005\042\247\014\100\012\097\009\043\005\031\004\077\000\175\012\156\012\031\004\033\000\175\012\031\004\041\000\175\012\020\004\000\084\079\065\021\130\042\153\013\224\017\021\007\082\009\062\005\153\005\129\021\106\018\031\004\043\005\156\012\137\005\131\021\043\005\020\004\000\067\079\077\080\073\076\069\044\102\021\008\042\156\012\020\004\000\065\071\065\073\078\145\021\133\042\031\004\137\005\156\012\156\012\020\004\000\065\066\079\082\084\159\021\005\042\152\006\188\026\020\004\000\067\079\077\080\073\076\069\045\087\079\082\068\179\021\012\042\181\004\241\006\224\017\004\005\153\005\247\021\253\006\170\004\077\004\031\007\072\005\031\004\128\000\083\005\153\005\241\021\046\007\137\005\243\021\156\012\137\005\043\022\009\007\096\016\032\006\153\005\013\022\159\004\253\006\170\004\129\018\137\005\043\022\159\004\031\004\000\000\019\008\029\022\159\004\082\008\023\022\253\006\109\011\205\011\031\004\063\000\052\010\179\021\020\004\000\067\079\085\078\084\202\021\005\042\077\004\021\007\088\004\072\005\020\004\000\082\069\067\085\082\083\069\054\022\135\042\152\009\062\005\156\012\020\004\000\058\078\079\078\065\077\069\076\022\007\042\100\012\077\004\152\009\043\005\031\004\042\000\175\012\097\009\062\005\126\012\020\004\000\062\066\079\068\089\096\022\005\042\031\004\007\000\196\005\020\004\000\069\078\086\073\082\079\078\077\069\078\084\063\128\022\012\042\113\009\062\005\136\017\077\004\153\005\170\022\046\007\008\009\020\004\000\068\048\061\153\022\003\042\094\005\032\006\020\004\000\072\079\076\068\179\022\004\042\100\012\062\005\031\007\077\004\100\012\043\005\053\005\020\004\000\035\194\022\001\042\068\009\062\005\174\007\100\004\077\004\031\004\009\000\213\007\153\005\247\022\031\004\055\000\196\005\137\005\253\022\031\004\048\000\196\005\194\022\020\004\000\035\083\216\022\002\042\216\022\181\004\179\022\153\005\008\023\020\004\000\046\034\007\023\130\042\027\021\031\004\109\011\156\012\020\004\000\067\034\026\023\130\042\031\004\034\000\003\014\031\004\137\005\156\012\100\012\031\004\000\000\156\012\115\004\100\012\115\004\077\004\175\012\130\004\196\005\088\004\019\008\094\023\039\008\072\005\175\012\082\008\084\023\088\004\100\012\088\004\043\005\106\018\020\004\000\060\035\043\023\002\042\045\021\100\012\043\005\020\004\000\035\062\112\023\002\042\170\004\100\012\062\005\045\021\130\004\206\005\020\004\000\083\073\071\078\127\023\004\042\067\006\153\005\163\023\031\004\045\000\194\022\020\004\000\067\079\078\086\069\082\084\150\023\007\042\031\004\255\255\174\015\159\004\020\004\000\077\079\086\069\176\023\004\042\077\004\032\006\153\005\210\023\159\004\170\004\020\004\115\004\181\004\252\005\153\005\254\023\100\004\031\004\000\000\003\008\250\023\130\004\072\005\130\004\053\005\021\007\088\004\021\007\088\004\082\008\230\023\137\005\044\024\031\004\002\000\143\004\037\011\196\005\115\004\196\005\088\004\100\004\031\004\000\000\003\008\044\024\031\007\088\004\031\007\088\004\130\004\072\005\130\004\053\005\082\008\024\024\170\004\020\004\000\046\195\023\001\042\077\004\017\005\065\011\031\004\000\000\112\023\237\008\194\022\007\023\026\005\150\023\127\023\109\011\020\004\000\085\046\053\024\002\042\031\004\000\000\112\023\237\008\194\022\007\023\127\023\109\011\020\004\000\046\082\088\024\002\042\017\005\077\004\017\005\065\011\031\004\000\000\112\023\237\008\194\022\007\023\026\005\150\023\127\023\026\005\130\004\206\005\224\011\109\011\020\004\000\085\046\082\113\024\003\042\017\005\031\004\000\000\112\023\237\008\194\022\007\023\127\023\026\005\130\004\206\005\224\011\109\011\020\004\000\087\073\084\072\073\078\159\024\006\042\130\004\206\005\017\005\206\005\026\005\241\005\020\004\000\068\079\198\024\130\042\031\004\003\008\156\012\100\012\031\004\000\000\156\012\100\012\020\004\000\063\068\079\219\024\131\042\031\004\019\008\156\012\100\012\031\004\000\000\156\012\100\012\020\004\000\076\079\079\080\245\024\132\042\031\004\082\008\156\012\156\012\100\012\088\004\043\005\020\004\000\043\076\079\079\080\016\025\133\042\031\004\108\008\156\012\156\012\100\012\088\004\043\005\020\004\000\065\067\067\069\080\084\042\025\006\042\044\004\006\000\115\099\114\101\101\110\196\008\044\004\006\000\115\099\114\101\101\110\031\004\016\000\176\008\077\004\067\006\153\005\114\025\159\004\146\008\137\005\082\025\205\010\037\011\031\004\016\000\115\004\195\023\020\004\000\069\088\080\069\067\084\069\025\006\042\069\025\126\009\043\005\020\004\000\081\085\069\082\089\138\025\005\042\031\004\000\000\037\009\043\005\031\004\000\000\055\009\043\005\177\009\077\004\031\004\080\000\069\025\205\011\025\009\109\010\020\004\000\082\069\070\073\076\076\156\025\006\042\055\009\062\005\153\005\216\025\251\008\137\005\242\025\031\004\000\000\037\009\043\005\177\009\077\004\031\004\080\000\069\025\205\011\025\009\109\010\008\009\020\004\000\073\078\084\069\082\080\082\069\084\045\087\079\082\068\201\025\014\042\181\004\241\006\224\017\004\005\153\005\029\026\253\006\170\004\046\007\137\005\079\026\009\007\096\016\032\006\153\005\049\026\170\004\253\006\170\004\137\005\079\026\159\004\031\004\000\000\019\008\065\026\159\004\082\008\059\026\253\006\109\011\205\011\031\004\063\000\052\010\179\021\020\004\000\069\086\065\076\085\065\084\069\006\026\008\042\151\010\241\006\037\009\062\005\017\005\055\009\062\005\017\005\031\004\255\255\055\009\043\005\031\004\000\000\037\009\043\005\025\009\109\010\153\013\004\005\153\005\158\026\082\009\062\005\153\005\152\026\202\021\137\005\154\026\006\026\137\005\130\026\159\004\026\005\055\009\043\005\026\005\037\009\043\005\253\006\025\009\109\010\020\004\000\081\085\073\084\093\026\004\042\137\006\187\011\201\025\153\005\249\026\153\013\004\005\153\005\227\026\082\009\062\005\153\005\221\026\202\021\137\005\223\026\006\026\137\005\199\026\159\004\205\011\031\004\079\000\052\010\031\004\075\000\052\010\187\011\137\005\193\026\020\004\000\040\097\098\111\114\116\034\041\188\026\008\042\100\004\153\005\018\027\109\011\179\021\170\004\020\004\000\065\066\079\082\084\034\007\027\134\042\027\021\031\004\007\027\156\012\020\004\000\068\065\066\083\032\027\004\042\077\004\067\006\153\005\082\027\130\004\246\007\100\004\153\005\078\027\088\004\121\005\137\005\082\027\088\004\246\007\020\004\000\083\077\047\082\069\077\051\027\006\042\130\004\017\005\181\004\106\005\017\005\065\011\017\005\051\027\026\005\127\007\026\005\067\006\153\005\125\027\246\007\088\004\026\005\067\006\153\005\137\027\246\007\088\004\020\004\000\079\078\094\027\002\042\215\008\044\004\002\000\111\110\227\008\020\004\000\079\070\070\147\027\003\042\215\008\044\004\003\000\111\102\102\227\008\020\004\000\073\079\064\167\027\003\042\094\010\031\004\003\000\187\007\020\004\000\076\079\065\068\080\075\071\188\027\007\042\031\004\000\000\031\004\030\001\053\005\153\013\031\004\026\001\109\010\031\004\026\001\128\010\215\008\031\004\030\001\031\004\001\000\227\008\031\004\030\001\072\005\021\007\031\004\030\001\053\005\031\004\026\001\128\010\031\004\016\000\176\008\031\004\016\000\072\005\153\005\039\028\031\004\016\000\088\004\093\026\137\005\229\027\159\004\020\004\000\067\079\076\068\210\027\004\042\044\004\019\000\067\111\109\112\117\116\101\114\032\105\115\032\114\101\097\100\121\032\040\109\011\090\015\088\024\044\004\011\000\098\121\116\101\115\032\102\114\101\101\041\109\011\188\026\020\004\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" + return "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\010\000\000\000\228\031\000\000\000\000\023\032\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\184\017\180\001\176\001\001\000\000\000\000\000\000\000\000\000\228\031\029\010\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\176\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\077\000\002\024\077\000\003\025\077\228\031\026\000\069\088\073\084\000\000\004\040\041\000\040\108\105\116\041\020\004\005\043\033\041\000\040\115\108\105\116\041\031\004\006\043\069\011\033\034\012\068\027\041\000\040\100\111\100\111\101\115\041\044\004\008\043\033\043\027\041\000\068\085\080\065\004\003\048\033\041\000\083\087\065\080\077\004\004\049\050\033\034\041\000\082\079\084\088\004\003\049\050\051\034\033\035\041\000\045\082\079\084\100\004\004\049\050\051\033\035\034\041\000\079\086\069\082\115\004\004\050\048\034\033\041\000\080\073\067\075\130\004\004\050\068\012\008\013\007\034\041\000\068\082\079\080\143\004\004\049\041\000\050\068\082\079\080\159\004\005\049\049\041\000\050\068\085\080\170\004\004\050\048\034\033\034\041\000\050\083\087\065\080\181\004\005\049\050\051\003\051\034\033\035\019\035\041\000\050\079\086\069\082\196\004\005\051\003\051\050\048\034\035\019\035\033\034\041\000\078\073\080\216\004\003\049\032\041\000\084\085\067\075\235\004\004\049\050\033\034\033\041\000\063\068\085\080\246\004\004\048\057\001\000\041\033\041\000\062\082\004\005\002\049\001\041\000\082\062\017\005\002\017\033\041\000\082\064\026\005\002\016\033\041\000\033\035\005\001\050\049\038\041\000\067\033\043\005\002\050\049\054\041\000\064\053\005\001\048\004\032\041\000\067\064\062\005\002\048\020\032\041\000\065\078\068\072\005\003\050\048\044\032\041\000\079\082\083\005\002\050\048\045\032\041\000\088\079\082\094\005\003\050\048\046\032\041\000\073\078\086\069\082\084\106\005\006\048\047\032\041\000\040\098\114\097\110\099\104\041\121\005\008\043\027\041\000\040\048\098\114\097\110\099\104\041\137\005\009\050\043\058\001\000\027\041\000\082\079\076\076\153\005\004\050\065\075\068\012\008\013\005\033\049\068\074\074\007\037\073\073\069\072\059\245\255\041\000\043\168\005\001\050\049\012\034\041\000\045\196\005\001\050\049\013\034\041\000\043\033\206\005\002\050\065\007\049\012\066\037\041\000\042\217\005\001\050\049\014\034\041\000\085\060\230\005\002\050\048\013\032\041\000\085\062\241\005\002\049\050\013\033\041\000\077\042\252\005\002\050\049\015\034\033\041\000\085\077\042\007\006\003\050\049\014\034\033\041\000\048\061\020\006\002\048\057\003\000\047\032\041\077\000\000\032\041\000\048\060\062\032\006\003\048\057\001\000\041\077\255\255\032\041\000\048\060\051\006\002\050\063\033\041\000\048\062\067\006\002\050\058\002\000\034\041\063\047\033\041\000\060\062\077\006\002\050\048\013\058\002\000\032\041\077\255\255\032\041\000\061\093\006\001\050\048\013\058\005\000\077\255\255\032\041\077\000\000\032\041\000\069\077\080\084\089\082\111\006\006\077\000\003\025\041\000\069\077\080\084\089\083\137\006\006\077\000\002\024\041\000\068\069\080\084\072\152\006\005\008\078\000\002\013\068\078\001\000\061\033\041\000\050\042\166\006\002\078\001\000\048\062\032\041\000\050\047\184\006\002\078\001\000\048\061\032\041\000\082\083\072\073\070\084\197\006\006\050\048\060\032\041\000\076\083\072\073\070\084\214\006\006\050\048\062\032\041\000\050\062\082\229\006\003\050\049\001\002\041\000\050\082\062\241\006\003\018\017\033\034\041\000\050\082\064\253\006\003\018\016\002\033\034\041\000\049\043\009\007\002\048\073\032\041\000\049\045\021\007\002\048\070\032\041\000\069\088\069\067\085\084\069\031\007\007\049\026\000\042\047\077\079\068\046\007\005\051\050\049\015\031\035\034\041\000\042\047\057\007\002\051\050\049\015\031\034\041\000\047\077\079\068\071\007\004\051\050\063\031\035\034\041\000\047\086\007\001\051\050\063\031\034\041\000\077\079\068\098\007\003\051\050\063\031\035\041\000\085\077\047\077\079\068\111\007\006\051\049\050\030\035\034\041\000\070\077\047\077\079\068\127\007\006\051\049\050\031\035\034\041\000\079\043\144\007\002\050\049\012\034\033\041\000\085\068\077\047\077\079\068\157\007\007\051\049\050\030\035\034\033\041\000\060\174\007\001\050\063\065\050\034\046\069\063\047\057\004\000\050\063\033\041\049\067\013\033\041\000\062\187\007\001\049\050\033\063\065\050\034\046\069\063\047\057\004\000\050\063\033\041\049\067\013\033\041\000\078\069\071\065\084\069\213\007\006\048\047\073\032\041\000\040\100\111\041\246\007\004\043\001\050\051\003\002\041\000\040\063\100\111\041\003\008\005\043\001\050\049\001\002\013\058\004\000\018\018\017\027\041\000\073\019\008\001\016\033\041\000\074\039\008\001\019\018\034\018\016\002\050\002\003\033\041\000\085\078\076\079\079\080\047\008\006\018\018\018\041\000\040\108\111\111\112\041\068\008\006\018\074\016\002\013\043\058\004\000\018\018\018\041\027\041\000\040\043\108\111\111\112\041\082\008\007\018\065\049\012\016\070\002\067\064\013\063\033\066\018\002\013\063\050\046\069\043\058\002\000\027\041\018\018\018\041\000\087\065\073\084\108\008\004\000\041\000\076\069\065\086\069\146\008\005\017\017\017\027\041\000\082\069\067\069\073\086\069\045\065\084\157\008\010\051\050\048\082\032\041\000\068\069\076\069\084\069\045\077\083\071\176\008\010\050\049\083\041\000\083\069\084\045\067\072\065\078\078\069\076\196\008\011\050\049\085\041\000\083\069\078\068\215\008\004\050\049\084\041\000\047\067\079\085\078\084\069\068\045\083\084\082\073\078\071\000\000\015\077\000\001\033\041\000\047\072\079\076\068\250\008\005\077\034\000\033\041\000\047\080\065\068\008\009\004\077\084\000\033\041\000\065\068\082\069\083\083\045\085\078\073\084\045\066\073\084\083\021\009\016\077\008\000\033\041\000\067\079\082\069\046\009\004\077\255\255\033\041\000\067\079\082\069\045\069\088\084\059\009\008\077\255\255\033\041\000\070\076\079\079\082\069\068\076\009\007\077\255\255\033\041\000\077\065\088\045\067\072\065\082\092\009\008\077\255\000\033\041\000\077\065\088\045\078\109\009\005\077\255\127\033\041\000\077\065\088\045\085\123\009\005\077\255\255\033\041\000\082\069\084\085\082\078\045\083\084\065\067\075\045\067\069\076\076\083\137\009\018\077\128\000\033\041\000\083\084\065\067\075\045\067\069\076\076\083\164\009\011\077\128\000\033\041\000\077\065\088\045\085\068\184\009\006\077\255\255\033\077\255\255\033\041\000\077\065\088\045\068\199\009\005\077\255\255\033\077\255\127\033\041\000\083\069\065\082\067\072\045\079\082\068\069\082\217\009\012\077\255\255\033\041\000\083\069\065\082\067\072\045\079\082\068\069\082\045\069\088\084\242\009\016\077\255\255\033\041\000\087\079\082\068\076\073\083\084\083\011\010\009\077\008\000\033\041\000\066\076\227\008\002\077\032\000\033\041\000\070\065\076\083\069\040\010\005\077\000\000\033\041\000\084\082\085\069\054\010\004\077\255\255\033\041\000\040\115\111\117\114\099\101\041\067\010\008\077\000\001\033\041\000\062\073\078\084\010\003\077\004\001\033\041\000\083\079\085\082\067\069\045\073\068\096\010\009\077\006\001\033\041\000\066\065\083\069\114\010\004\077\008\001\033\041\000\083\084\065\084\069\127\010\005\077\010\001\033\041\000\076\065\084\069\083\084\141\010\006\077\012\001\033\041\000\083\080\065\078\156\010\004\077\016\001\033\041\000\040\104\101\114\101\041\169\010\006\077\018\001\033\041\000\076\084\184\010\002\077\020\001\033\041\000\035\084\073\066\195\010\004\077\022\001\033\041\000\084\073\066\208\010\003\077\024\001\033\041\000\039\078\085\077\066\069\082\220\010\007\077\160\001\033\041\000\078\069\087\045\087\079\082\068\076\073\083\084\236\010\012\077\162\001\033\041\000\067\087\001\011\002\077\164\001\033\041\000\078\087\079\082\068\069\082\012\011\007\077\166\001\033\041\000\087\079\082\068\076\073\083\084\083\028\011\009\077\176\001\033\041\000\070\079\082\084\072\045\087\079\082\068\076\073\083\084\046\011\014\077\176\001\033\041\000\069\078\086\068\073\067\079\069\011\007\077\178\001\033\041\000\087\079\082\068\069\082\085\011\006\077\208\001\033\041\000\067\072\065\082\083\100\011\133\042\020\004\000\065\076\073\071\078\114\011\133\042\020\004\000\065\076\073\071\078\069\068\126\011\135\042\020\004\000\067\069\076\076\043\140\011\005\042\031\004\002\000\196\005\020\004\000\067\069\076\076\045\152\011\005\042\031\004\002\000\206\005\020\004\000\067\072\065\082\043\170\011\005\042\021\007\020\004\000\067\069\076\076\083\188\011\005\042\184\006\020\004\000\069\077\073\084\202\011\004\042\044\004\006\000\115\099\114\101\101\110\215\008\031\004\002\000\043\005\031\004\002\000\031\004\001\000\227\008\020\004\000\082\069\067\069\073\086\069\215\011\007\042\031\004\128\000\176\008\020\004\000\050\033\001\012\002\042\088\004\130\004\043\005\152\011\043\005\020\004\000\050\064\016\012\002\042\077\004\152\011\062\005\088\004\062\005\020\004\000\083\079\085\082\067\069\035\012\006\042\084\010\035\012\020\004\000\083\062\068\058\012\003\042\077\004\067\006\020\004\000\077\065\088\072\012\003\042\181\004\213\007\153\005\101\012\159\004\137\005\103\012\235\004\020\004\000\077\073\078\086\012\003\042\181\004\213\007\153\005\127\012\235\004\137\005\129\012\159\004\020\004\000\068\043\112\012\002\042\100\004\196\005\115\004\157\007\100\004\196\005\020\004\000\072\069\088\137\012\003\042\031\004\016\000\127\010\043\005\020\004\000\068\069\067\073\077\065\076\159\012\007\042\031\004\010\000\127\010\043\005\020\004\000\084\085\067\075\181\012\004\042\088\004\130\004\020\004\000\078\073\080\200\012\003\042\088\004\159\004\020\004\000\065\066\083\214\012\003\042\077\004\067\006\153\005\239\012\246\007\020\004\000\040\109\097\114\107\101\114\041\228\012\008\042\156\010\043\005\184\010\043\005\020\004\000\084\089\080\069\253\012\004\042\077\004\077\006\153\005\049\013\130\004\196\005\088\004\019\008\045\013\039\008\072\005\215\011\082\008\035\013\137\005\051\013\170\004\020\004\000\082\083\084\082\016\013\004\042\021\007\077\004\031\004\002\000\196\005\072\005\031\004\127\000\083\005\200\012\206\005\088\004\020\004\000\067\082\061\013\002\042\031\004\010\000\215\011\020\004\000\083\080\065\067\069\094\013\005\042\031\004\032\000\215\011\020\004\000\083\080\065\067\069\083\112\013\006\042\077\004\077\006\153\005\158\013\031\004\000\000\003\008\154\013\112\013\082\008\148\013\137\005\160\013\159\004\020\004\000\083\084\082\061\131\013\004\042\031\004\000\000\003\008\213\013\130\004\072\005\130\004\072\005\093\006\153\005\201\013\068\008\170\004\054\010\020\004\088\004\021\007\088\004\021\007\082\008\179\013\170\004\067\010\020\004\000\073\077\077\069\068\073\065\084\069\170\013\009\042\156\010\062\005\031\007\077\004\072\005\031\004\128\000\094\005\088\004\053\005\020\004\000\072\069\082\069\232\013\004\042\184\010\062\005\020\004\000\091\007\014\129\042\054\010\141\010\043\005\020\004\000\093\019\014\001\042\067\010\141\010\043\005\020\004\000\065\076\076\079\084\033\014\005\042\184\010\217\005\020\004\000\044\051\014\001\042\007\014\043\005\031\004\002\000\051\014\020\004\000\067\044\063\014\002\042\007\014\053\005\031\004\001\000\051\014\020\004\000\083\075\073\080\045\087\072\073\084\069\082\014\010\042\077\004\072\005\031\004\033\000\187\007\153\005\140\014\021\007\181\004\111\006\153\005\136\014\020\004\137\005\110\014\020\004\000\069\088\073\084\045\073\070\045\069\078\068\109\014\011\042\058\012\214\012\096\010\062\005\111\006\153\005\184\014\058\012\196\005\031\004\000\000\026\005\159\004\020\004\000\080\065\082\083\069\045\076\073\077\073\084\083\157\014\012\042\058\012\130\004\196\005\088\004\096\010\062\005\196\005\020\004\000\062\073\078\045\069\078\068\202\014\007\042\058\012\214\012\096\010\043\005\020\004\000\067\079\085\078\084\069\068\045\083\084\082\073\078\071\230\014\014\042\077\004\007\014\053\005\007\014\021\007\115\004\130\004\196\005\088\004\003\008\040\015\039\008\072\005\130\004\053\005\021\007\082\008\026\015\159\004\007\014\020\004\000\080\065\082\083\069\045\087\079\082\068\003\015\010\042\157\014\202\014\109\014\181\004\111\006\153\005\085\015\230\014\159\004\031\004\000\000\020\004\077\004\017\005\077\004\072\005\031\004\032\000\213\007\153\005\131\015\021\007\181\004\111\006\153\005\127\015\230\014\159\004\035\005\206\005\026\005\088\004\020\004\137\005\089\015\214\012\077\004\058\012\159\004\206\005\021\007\096\010\043\005\035\005\206\005\026\005\088\004\020\004\000\080\065\082\083\069\060\015\005\042\058\012\214\012\096\010\062\005\111\006\153\005\193\015\159\004\058\012\196\005\031\004\000\000\020\004\202\014\077\004\017\005\100\004\017\005\077\004\072\005\035\005\093\006\153\005\247\015\021\007\181\004\111\006\153\005\243\015\026\005\159\004\230\014\159\004\035\005\206\005\026\005\088\004\020\004\137\005\203\015\026\005\159\004\214\012\077\004\058\012\159\004\206\005\021\007\096\010\043\005\035\005\206\005\026\005\088\004\020\004\000\087\079\082\068\166\015\004\042\058\012\214\012\096\010\062\005\111\006\153\005\058\016\159\004\031\004\000\000\007\014\053\005\007\014\020\004\202\014\077\004\017\005\100\004\017\005\077\004\072\005\035\005\093\006\153\005\112\016\021\007\181\004\111\006\153\005\108\016\026\005\159\004\230\014\159\004\035\005\206\005\026\005\088\004\020\004\137\005\068\016\026\005\159\004\214\012\077\004\058\012\159\004\206\005\021\007\096\010\043\005\035\005\206\005\026\005\088\004\003\015\020\004\000\072\069\065\068\069\082\029\016\006\042\060\015\200\012\031\004\000\000\082\014\130\004\196\005\088\004\003\008\185\016\039\008\072\005\082\014\082\008\175\016\156\010\062\005\063\014\082\014\020\004\000\058\154\016\001\042\154\016\007\014\077\004\195\010\043\005\031\004\042\000\082\014\033\014\020\004\000\058\067\079\068\069\200\016\005\042\154\016\007\014\077\004\195\010\043\005\020\004\000\085\078\085\083\069\068\230\016\006\042\007\014\246\007\020\004\000\078\067\072\065\082\253\016\005\042\077\004\072\005\077\004\031\004\058\000\187\007\153\005\040\017\031\004\048\000\206\005\137\005\068\017\077\004\031\004\097\000\187\007\153\005\062\017\031\004\055\000\206\005\137\005\068\017\031\004\087\000\206\005\020\004\000\062\078\085\077\066\069\082\013\017\007\042\077\004\017\005\031\004\000\000\003\008\174\017\013\017\077\004\127\010\062\005\187\007\130\004\067\006\121\005\083\005\153\005\156\017\196\004\127\010\062\005\230\005\031\004\000\000\088\004\100\004\127\010\062\005\020\006\137\012\100\004\031\004\000\000\137\012\100\004\021\007\137\005\170\017\159\004\039\008\068\008\026\005\088\004\206\005\020\004\082\008\094\017\026\005\159\004\031\004\000\000\020\004\042\031\004\000\000\031\004\000\000\196\004\130\004\072\005\031\004\045\000\111\006\153\005\235\017\088\004\021\007\088\004\031\007\081\017\196\004\159\004\246\007\031\004\001\000\196\004\137\005\247\017\081\017\100\004\159\004\031\004\001\000\115\004\020\004\000\078\085\077\066\069\082\081\017\006\042\236\010\062\005\046\007\020\004\000\083\065\086\069\045\073\078\080\085\084\003\018\010\042\096\010\062\005\031\004\001\000\020\004\000\082\069\083\084\079\082\069\045\073\078\080\085\084\026\018\013\042\077\004\031\004\001\000\111\006\153\005\079\018\159\004\096\010\043\005\054\010\137\005\095\018\031\004\000\000\019\008\093\018\159\004\082\008\087\018\067\010\020\004\000\067\079\085\078\084\054\018\005\042\077\004\021\007\088\004\072\005\020\004\000\067\072\065\082\106\018\004\042\060\015\159\004\072\005\020\004\000\070\073\076\076\125\018\004\042\115\004\077\004\077\006\153\005\177\018\130\004\196\005\088\004\003\008\173\018\077\004\039\008\053\005\082\008\163\018\137\005\179\018\170\004\159\004\020\004\000\069\082\065\083\069\142\018\005\042\031\004\000\000\142\018\020\004\000\040\192\018\129\042\031\004\041\000\166\015\170\004\020\004\000\046\040\206\018\130\042\031\004\041\000\166\015\016\013\020\004\000\092\223\018\129\042\031\004\010\000\166\015\170\004\020\004\000\084\072\069\078\239\018\132\042\007\014\088\004\043\005\020\004\000\066\069\071\073\078\002\019\133\042\007\014\020\004\000\070\073\078\068\045\087\079\082\068\045\068\073\067\079\020\019\014\042\088\004\017\005\077\004\031\004\004\000\206\005\061\013\035\005\111\006\153\005\092\019\031\004\002\000\143\004\035\005\170\013\153\005\088\019\214\012\026\005\159\004\020\004\137\005\094\019\159\004\031\004\003\000\206\005\062\005\077\004\032\006\153\005\048\019\214\012\026\005\159\004\020\004\000\071\069\084\045\087\076\045\076\065\084\069\083\084\043\019\013\042\077\004\012\011\062\005\111\006\153\005\158\019\159\004\156\010\062\005\137\005\160\019\062\005\020\004\000\070\073\078\068\045\087\079\082\068\135\019\009\042\100\011\028\011\062\005\184\006\196\005\100\011\003\008\218\019\039\008\062\005\135\019\043\019\004\005\153\005\210\019\068\008\020\004\031\004\002\000\108\008\192\019\031\004\000\000\020\004\000\039\175\019\001\042\060\015\175\019\020\004\000\080\079\083\084\080\079\078\069\229\019\136\042\229\019\077\004\031\007\072\005\031\004\128\000\083\005\153\005\017\020\063\014\137\005\031\020\031\004\031\004\063\014\063\014\031\004\063\014\063\014\020\004\000\076\073\084\069\082\065\076\248\019\135\042\031\004\031\004\063\014\063\014\020\004\000\078\076\073\084\069\082\065\076\044\020\136\042\077\004\017\005\031\004\000\000\003\008\096\020\031\004\031\004\063\014\031\004\000\000\063\014\082\008\080\020\026\005\031\004\000\000\003\008\130\020\007\014\031\004\002\000\206\005\039\008\031\004\004\000\230\005\206\005\043\005\082\008\106\020\020\004\000\068\079\069\083\062\067\020\005\042\031\004\065\004\156\010\062\005\021\007\043\005\026\005\156\010\062\005\031\004\005\000\196\005\043\005\020\004\000\091\039\093\141\020\131\042\229\019\044\020\020\004\000\091\067\079\077\080\073\076\069\093\177\020\137\042\229\019\063\014\020\004\000\059\197\020\129\042\031\004\020\004\063\014\156\010\043\005\019\014\020\004\000\067\079\068\069\059\209\020\005\042\031\004\041\000\082\014\156\010\043\005\020\004\000\091\067\072\065\082\093\233\020\134\042\125\018\044\020\020\004\000\067\082\069\065\084\069\000\021\006\042\154\016\007\014\156\010\043\005\031\004\042\000\082\014\007\014\031\004\006\000\196\005\044\020\031\004\020\004\063\014\020\004\000\086\065\082\073\065\066\076\069\017\021\008\042\017\021\031\004\002\000\051\014\020\004\000\067\079\078\083\084\065\078\084\062\021\008\042\154\016\007\014\156\010\043\005\031\004\077\000\082\014\063\014\031\004\033\000\082\014\031\004\041\000\082\014\020\004\000\077\065\082\075\069\082\085\021\006\042\007\014\154\016\007\014\088\004\031\004\042\000\082\014\044\020\156\010\062\005\044\020\031\004\253\012\063\014\031\004\020\004\063\014\156\010\043\005\020\004\000\073\070\126\021\130\042\031\004\153\005\063\014\007\014\031\004\000\000\063\014\020\004\000\069\076\083\069\173\021\132\042\031\004\137\005\063\014\007\014\088\004\031\004\000\000\063\014\007\014\088\004\043\005\020\004\000\085\078\084\073\076\198\021\133\042\031\004\153\005\063\014\063\014\020\004\000\082\069\080\069\065\084\232\021\134\042\031\004\137\005\063\014\063\014\007\014\088\004\043\005\020\004\000\087\072\073\076\069\253\021\133\042\031\004\153\005\063\014\007\014\088\004\031\004\000\000\063\014\020\004\000\067\065\083\069\023\022\132\042\031\004\000\000\020\004\000\069\078\068\067\065\083\069\050\022\135\042\031\004\159\004\063\014\077\004\051\006\153\005\093\022\007\014\088\004\043\005\137\005\075\022\159\004\020\004\000\079\070\068\022\130\042\031\004\130\004\063\014\031\004\111\006\063\014\031\004\153\005\063\014\007\014\031\004\000\000\063\014\031\004\159\004\063\014\020\004\000\069\078\068\079\070\103\022\133\042\031\004\137\005\063\014\007\014\031\004\000\000\063\014\007\014\100\004\043\005\020\004\000\083\076\073\084\069\082\065\076\147\022\136\042\031\004\044\004\063\014\077\004\063\014\130\004\196\005\088\004\019\008\213\022\039\008\072\005\082\014\082\008\203\022\020\004\000\083\034\182\022\130\042\031\004\034\000\166\015\182\022\020\004\000\080\065\068\221\022\003\042\007\014\031\004\036\000\196\005\020\004\000\086\065\076\085\069\239\022\005\042\154\016\007\014\156\010\043\005\031\004\077\000\082\014\063\014\031\004\033\000\082\014\031\004\041\000\082\014\020\004\000\084\079\003\023\130\042\060\015\175\019\021\007\141\010\062\005\153\005\067\023\044\020\031\004\043\005\063\014\137\005\069\023\043\005\020\004\000\067\079\077\080\073\076\069\044\040\023\008\042\063\014\020\004\000\065\071\065\073\078\083\023\133\042\031\004\137\005\063\014\063\014\020\004\000\065\066\079\082\084\097\023\005\042\152\006\126\028\020\004\000\067\079\077\080\073\076\069\045\087\079\082\068\117\023\012\042\181\004\241\006\175\019\004\005\153\005\185\023\253\006\170\004\077\004\031\007\072\005\031\004\128\000\083\005\153\005\179\023\046\007\137\005\181\023\063\014\137\005\237\023\009\007\003\018\032\006\153\005\207\023\159\004\253\006\170\004\067\020\137\005\237\023\159\004\031\004\000\000\019\008\223\023\159\004\082\008\217\023\253\006\016\013\112\013\031\004\063\000\215\011\117\023\020\004\000\067\079\085\078\084\140\023\005\042\077\004\021\007\088\004\072\005\020\004\000\082\069\067\085\082\083\069\248\023\135\042\195\010\062\005\063\014\020\004\000\058\078\079\078\065\077\069\014\024\007\042\007\014\077\004\195\010\043\005\031\004\042\000\082\014\156\010\062\005\033\014\020\004\000\062\066\079\068\089\034\024\005\042\031\004\007\000\196\005\020\004\000\069\078\086\073\082\079\078\077\069\078\084\063\066\024\012\042\085\011\062\005\043\019\077\004\153\005\108\024\046\007\067\010\020\004\000\068\048\061\091\024\003\042\094\005\032\006\020\004\000\072\079\076\068\117\024\004\042\007\014\062\005\031\007\077\004\007\014\043\005\053\005\020\004\000\035\132\024\001\042\127\010\062\005\174\007\100\004\077\004\031\004\009\000\213\007\153\005\185\024\031\004\055\000\196\005\137\005\191\024\031\004\048\000\196\005\132\024\020\004\000\035\083\154\024\002\042\154\024\181\004\117\024\153\005\202\024\020\004\000\046\034\201\024\130\042\221\022\031\004\016\013\063\014\020\004\000\067\034\220\024\130\042\031\004\034\000\166\015\031\004\137\005\063\014\007\014\031\004\000\000\063\014\115\004\007\014\115\004\077\004\082\014\130\004\196\005\088\004\019\008\032\025\039\008\072\005\082\014\082\008\022\025\088\004\007\014\088\004\043\005\044\020\020\004\000\060\035\237\024\002\042\239\022\007\014\043\005\020\004\000\035\062\050\025\002\042\170\004\007\014\062\005\239\022\130\004\206\005\020\004\000\083\073\071\078\065\025\004\042\067\006\153\005\101\025\031\004\045\000\132\024\020\004\000\067\079\078\086\069\082\084\088\025\007\042\031\004\255\255\081\017\159\004\020\004\000\077\079\086\069\114\025\004\042\077\004\032\006\153\005\148\025\159\004\170\004\020\004\115\004\181\004\252\005\153\005\192\025\100\004\031\004\000\000\003\008\188\025\130\004\072\005\130\004\053\005\021\007\088\004\021\007\088\004\082\008\168\025\137\005\238\025\031\004\002\000\143\004\200\012\196\005\115\004\196\005\088\004\100\004\031\004\000\000\003\008\238\025\031\007\088\004\031\007\088\004\130\004\072\005\130\004\053\005\082\008\218\025\170\004\020\004\000\046\133\025\001\042\077\004\017\005\228\012\031\004\000\000\050\025\040\010\132\024\201\024\026\005\088\025\065\025\016\013\020\004\000\085\046\247\025\002\042\031\004\000\000\050\025\040\010\132\024\201\024\065\025\016\013\020\004\000\046\082\026\026\002\042\017\005\077\004\017\005\228\012\031\004\000\000\050\025\040\010\132\024\201\024\026\005\088\025\065\025\026\005\130\004\206\005\131\013\016\013\020\004\000\085\046\082\051\026\003\042\017\005\031\004\000\000\050\025\040\010\132\024\201\024\065\025\026\005\130\004\206\005\131\013\016\013\020\004\000\087\073\084\072\073\078\097\026\006\042\130\004\206\005\017\005\206\005\026\005\241\005\020\004\000\068\079\136\026\130\042\031\004\003\008\063\014\007\014\031\004\000\000\063\014\007\014\020\004\000\063\068\079\157\026\131\042\031\004\019\008\063\014\007\014\031\004\000\000\063\014\007\014\020\004\000\076\079\079\080\183\026\132\042\031\004\082\008\063\014\063\014\007\014\088\004\043\005\020\004\000\043\076\079\079\080\210\026\133\042\031\004\108\008\063\014\063\014\007\014\088\004\043\005\020\004\000\065\067\067\069\080\084\236\026\006\042\044\004\006\000\115\099\114\101\101\110\196\008\044\004\006\000\115\099\114\101\101\110\031\004\016\000\176\008\077\004\067\006\153\005\052\027\159\004\146\008\137\005\020\027\112\012\200\012\031\004\016\000\115\004\133\025\020\004\000\069\088\080\069\067\084\007\027\006\042\007\027\169\010\043\005\020\004\000\081\085\069\082\089\076\027\005\042\031\004\000\000\096\010\043\005\031\004\000\000\114\010\043\005\220\010\077\004\031\004\080\000\007\027\112\013\084\010\016\012\020\004\000\082\069\070\073\076\076\094\027\006\042\114\010\062\005\153\005\154\027\054\010\137\005\180\027\031\004\000\000\096\010\043\005\220\010\077\004\031\004\080\000\007\027\112\013\084\010\016\012\067\010\020\004\000\073\078\084\069\082\080\082\069\084\045\087\079\082\068\139\027\014\042\181\004\241\006\175\019\004\005\153\005\223\027\253\006\170\004\046\007\137\005\017\028\009\007\003\018\032\006\153\005\243\027\170\004\253\006\170\004\137\005\017\028\159\004\031\004\000\000\019\008\003\028\159\004\082\008\253\027\253\006\016\013\112\013\031\004\063\000\215\011\117\023\020\004\000\069\086\065\076\085\065\084\069\200\027\008\042\058\012\241\006\096\010\062\005\017\005\114\010\062\005\017\005\031\004\255\255\114\010\043\005\031\004\000\000\096\010\043\005\084\010\016\012\060\015\004\005\153\005\096\028\141\010\062\005\153\005\090\028\140\023\137\005\092\028\200\027\137\005\068\028\159\004\026\005\114\010\043\005\026\005\096\010\043\005\253\006\084\010\016\012\020\004\000\081\085\073\084\031\028\004\042\137\006\094\013\139\027\153\005\187\028\060\015\004\005\153\005\165\028\141\010\062\005\153\005\159\028\140\023\137\005\161\028\200\027\137\005\137\028\159\004\112\013\031\004\079\000\215\011\031\004\075\000\215\011\094\013\137\005\131\028\020\004\000\040\097\098\111\114\116\034\041\126\028\008\042\100\004\153\005\212\028\016\013\117\023\170\004\020\004\000\065\066\079\082\084\034\201\028\134\042\221\022\031\004\201\028\063\014\020\004\000\068\065\066\083\226\028\004\042\077\004\067\006\153\005\020\029\130\004\246\007\100\004\153\005\016\029\088\004\121\005\137\005\020\029\088\004\246\007\020\004\000\083\077\047\082\069\077\245\028\006\042\130\004\017\005\181\004\106\005\017\005\228\012\017\005\245\028\026\005\127\007\026\005\067\006\153\005\063\029\246\007\088\004\026\005\067\006\153\005\075\029\246\007\088\004\020\004\000\079\078\032\029\002\042\215\008\044\004\002\000\111\110\227\008\020\004\000\079\070\070\085\029\003\042\215\008\044\004\003\000\111\102\102\227\008\020\004\000\073\079\064\105\029\003\042\001\012\031\004\003\000\187\007\020\004\000\076\079\065\068\080\075\071\126\029\007\042\031\004\000\000\031\004\030\001\053\005\060\015\031\004\026\001\016\012\031\004\026\001\035\012\215\008\031\004\030\001\031\004\001\000\227\008\031\004\030\001\072\005\021\007\031\004\030\001\053\005\031\004\026\001\035\012\031\004\016\000\176\008\031\004\016\000\072\005\153\005\233\029\031\004\016\000\088\004\031\028\137\005\167\029\159\004\020\004\000\071\069\084\045\067\085\082\082\069\078\084\148\029\011\042\012\011\062\005\020\004\000\083\069\084\045\067\085\082\082\069\078\084\252\029\011\042\156\010\062\005\012\011\062\005\043\005\077\004\012\011\043\005\062\005\156\010\043\005\020\004\000\087\079\082\068\076\073\083\084\018\030\008\042\001\011\062\005\077\004\152\011\001\011\043\005\020\004\000\068\069\070\073\078\073\084\073\079\078\083\055\030\011\042\100\011\062\005\018\030\020\004\000\071\069\084\045\079\082\068\069\082\085\030\009\042\100\011\028\011\062\005\031\007\184\006\196\005\019\008\136\030\039\008\062\005\031\004\254\255\108\008\124\030\028\011\062\005\020\004\000\083\069\084\045\079\082\068\069\082\107\030\009\042\077\004\028\011\043\005\100\011\031\004\000\000\019\008\182\030\200\012\043\005\152\011\082\008\172\030\159\004\020\004\000\065\076\083\079\155\030\004\042\100\011\077\004\152\011\028\011\062\005\184\006\133\025\028\011\031\004\002\000\217\005\020\004\000\070\079\082\084\072\194\030\005\042\069\011\100\011\043\005\020\004\000\079\078\076\089\228\030\004\042\228\030\031\004\001\000\028\011\043\005\020\004\000\079\082\068\069\082\245\030\005\042\100\011\028\011\062\005\184\006\196\005\100\011\003\008\042\031\039\008\062\005\247\025\031\004\002\000\108\008\028\031\094\013\012\011\062\005\020\004\000\080\082\069\086\073\079\085\083\011\031\008\042\100\011\152\011\100\011\028\011\062\005\031\007\184\006\133\025\028\011\031\004\254\255\217\005\020\004\000\083\069\065\082\067\072\045\087\079\082\068\076\073\083\084\062\031\015\042\135\019\043\019\077\004\153\005\147\031\077\004\031\007\072\005\031\004\128\000\083\005\153\005\143\031\031\004\001\000\137\005\147\031\031\004\255\255\020\004\000\070\073\078\068\108\031\004\042\077\004\248\023\100\011\028\011\062\005\184\006\196\005\100\011\003\008\212\031\181\004\039\008\062\005\108\031\004\005\153\005\204\031\241\006\170\004\159\004\253\006\068\008\020\004\031\004\002\000\108\008\178\031\170\004\031\004\000\000\020\004\000\067\079\076\068\157\031\004\042\044\004\019\000\067\111\109\112\117\116\101\114\032\105\115\032\114\101\097\100\121\032\040\016\013\253\016\026\026\044\004\011\000\098\121\116\101\115\032\102\114\101\101\041\016\013\126\028\020\004\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" end \ No newline at end of file diff --git a/init.lua b/init.lua index 57bdc34..0d2edcb 100644 --- a/init.lua +++ b/init.lua @@ -25,6 +25,26 @@ local bit32 = loadpkg("bit32") dofile(modpath.."/computer_memory.lua") dofile(modpath.."/forth_floppy.lua") +local wpath = minetest.get_worldpath() +local function read_file(fn) + local f = io.open(fn, "r") + if f==nil then return {} end + local t = f:read("*all") + f:close() + if t=="" or t==nil then return {} end + return minetest.deserialize(t) +end + +local function write_file(fn, tbl) + local f = io.open(fn, "w") + f:write(minetest.serialize(tbl)) + f:close() +end + +local cptrs = read_file(wpath.."/forth_computers") +local oldcptrs = read_file(wpath.."/forth_computers") +local screens = read_file(wpath.."/screens") + function hacky_swap_node(pos,name) local node = minetest.get_node(pos) if node.name ~= name then @@ -195,19 +215,33 @@ end local function send_message(pos, cptr, maddr, mlen) local msg = string_at(cptr, maddr, mlen) cptr.digiline_events[cptr.channel] = msg - --print(cptr.channel) - --print(msg) digiline:receptor_send(pos, digiline.rules.default, cptr.channel, msg) end local function run_computer(pos,cptr) + local meta = minetest.get_meta(pos) + local oldpos = meta:get_string("pos") + if oldpos == "" then + return + end + oldpos = minetest.deserialize(oldpos) + if oldpos.x ~= pos.x or oldpos.y ~= pos.y or oldpos.z ~= pos.z then + local old_cptr = oldcptrs[hashpos(oldpos)] + for key, _ in pairs(oldcptrs) do + print(key) + end + meta:set_string("pos", minetest.serialize(pos)) + print(hashpos(oldpos)) + if old_cptr ~= nil then + cptrs[hashpos(pos)].cptr = old_cptr.cptr + end + end if cptr.stopped then return end cptr.cycles = math.max(MAX_CYCLES,cptr.cycles+CYCLES_PER_STEP) while 1 do instr = cptr[cptr.PC] local f = ITABLE[instr] if f == nil then return end - --print("Instr: "..tostring(instr).." PC: "..tostring(cptr.PC).." SP: "..tostring(cptr.SP).." RP: "..tostring(cptr.RP).." X: "..tostring(cptr.X).." Y: "..tostring(cptr.Y).." Z: "..tostring(cptr.Z).." I: "..tostring(cptr.I)) cptr.PC = bit32.band(cptr.PC+1, 0xffff) setfenv(f, {cptr = cptr, pos=pos, emit=emit, receive=receive, delete_message=delete_message, set_channel=set_channel, send_message=send_message, u16=u16, u32=u32, s16=s16, s32=s32, read=read, write=write, readC=readC, writeC=writeC, push=push, pop=pop, rpush=rpush, rpop=rpop, bit32=bit32, math=math}) f() @@ -374,25 +408,6 @@ for i, v in pairs(ITABLE_RAW) do ITABLE[i] = loadstring(v) -- Parse everything at the beginning, way faster end -local wpath = minetest.get_worldpath() -local function read_file(fn) - local f = io.open(fn, "r") - if f==nil then return {} end - local t = f:read("*all") - f:close() - if t=="" or t==nil then return {} end - return minetest.deserialize(t) -end - -local function write_file(fn, tbl) - local f = io.open(fn, "w") - f:write(minetest.serialize(tbl)) - f:close() -end - -local cptrs = read_file(wpath.."/forth_computers") -local screens = read_file(wpath.."/screens") - local on_computer_digiline_receive = function (pos, node, channel, msg) local cptr = cptrs[hashpos(pos)].cptr if cptr == nil then return end @@ -413,6 +428,8 @@ minetest.register_node("forth_computer:computer",{ on_construct = function(pos) if cptrs[hashpos(pos)] then return end cptrs[hashpos(pos)] = {pos=pos, cptr=create_cptr()} + local meta = minetest.get_meta(pos) + meta:set_string("pos", minetest.serialize(pos)) end, on_destruct = function(pos) if cptrs[hashpos(pos)] == nil then return end @@ -420,6 +437,7 @@ minetest.register_node("forth_computer:computer",{ cptrs[hashpos(pos)].swapping = nil return end + oldcptrs[hashpos(pos)] = cptrs[hashpos(pos)] cptrs[hashpos(pos)] = nil end, on_punch = function(pos, node, puncher) @@ -445,6 +463,8 @@ minetest.register_node("forth_computer:computer_off",{ on_construct = function(pos) if cptrs[hashpos(pos)] then return end cptrs[hashpos(pos)] = {pos=pos, cptr=create_cptr()} + local meta = minetest.get_meta(pos) + meta:set_string("pos", minetest.serialize(pos)) end, on_destruct = function(pos) if cptrs[hashpos(pos)] == nil then return end @@ -452,6 +472,7 @@ minetest.register_node("forth_computer:computer_off",{ cptrs[hashpos(pos)].swapping = nil return end + oldcptrs[hashpos(pos)] = cptrs[hashpos(pos)] cptrs[hashpos(pos)] = nil end, on_punch = function(pos, node, puncher) @@ -658,6 +679,7 @@ minetest.register_globalstep(function(dtime) for _,i in pairs(cptrs) do run_computer(i.pos, i.cptr) end + oldcptrs = {} for _,i in pairs(screens) do if i.fmodif then i.fmodif=false @@ -675,6 +697,7 @@ minetest.register_on_shutdown(function() i.pname = nil end write_file(wpath.."/forth_computers",cptrs) + write_file(wpath.."/old_forth_computers",oldcptrs) write_file(wpath.."/screens",screens) end)