SFtpFileSystemInfo: Pattern matching & wildcard support added. Docs updated.

git-svn-id: svn://ultimatepp.org/upp/trunk@12432 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
oblivion 2018-10-31 08:32:17 +00:00
parent 207f940ffb
commit 9bdb145d40
6 changed files with 131 additions and 62 deletions

View file

@ -1,6 +1,6 @@
SSH package for U++
--------------------
SSH package is a flexible and easy-to-use libssh2 wrapper for Ultimate++.
SSH package is a flexible, easy-to-use, yet powerful libssh2 wrapper for Ultimate++.
It supports both console and GUI-based applications on POSIX-compliant operating systems and
MS Windows (tm).
@ -10,38 +10,38 @@ Classes:
- Base (core) class -> Ssh
- Ssh session -----> SshSession
- Sftp subsystem -----> SFtp
- SFtp Stream interface -----> SFtpStream
- File system transparency -----> SFtpFileSystemInfo
- Ssh channel -----> SshChannel
- Scp channel -----> Scp
- Exec channel -----> SshExec
- Real-time interactive shell -----> SshShell
- X11 forwarding -----> SshShell (as operation mode)
- Tcp/IP and port forwarding -----> SshTunnel
- Known hosts manager -> SshHosts
Features and Highlights:
--------------------
- Ssh-derived classes have pick semantics, based on RAII principle, support RTTI, and allow
polymorphism (i.e. different classes can be stored in the same arrays, etc.) through a common
polymorphism (i.e. different classes can be stored in the same array, etc.) through a common
interface.
- Uses U++ memory allocators (Native allocators is also a compile-time option)
- Uses U++'s memory manager (Native manager (malloc) is also a compile-time option)
- Uses OpenSSL by default.
- Supports multithreading.
- Supports 3rd-party network proxies.
- Supports known hosts verification mechanism.
- Supports password, public key, host-based, and keyboard-interactive authentication methods.
- Supports ssh-agents.
- Supports real-time interactive command line (shell) interface with both console and GUI integration
(works on both Windows and Posix-compliant OS'es)
- Supports multiple X11 connection forwarding.
(SshShell works on both Windows and Posix-compliant OSes)
- Supports X11 forwarding.
(A single SShShell instance is capable of handling multiple X11 requests simultaneously.)
- Supports Tcp/IP and port forwarding.
- Supports stream operations on SFTP objects.
- Supports access to sftp folder hiearcy in a file-system-agnostic (transparent) way.
- Supports detailed (full) debug logging.
Todo:
--------------------
- Improve documentation.
Reference examples:
-------------------

View file

@ -627,33 +627,38 @@ SFtp::DirEntry::DirEntry(const String& path, const SFtpAttrs& attrs)
*a = attrs;
}
// Experimental stuff!
Array<FileSystemInfo::FileInfo> SFtpFileSystemInfo::Find(String mask, int max_count, bool unmounted) const
{
ASSERT(browser);
// TODO: Handle wildcards and "root" properly.
Array<FileInfo> fi;
String dir;
if(!browser->InProgress()) {
if(IsNull(mask))
mask = browser->GetDefaultDir();
mask.Replace("*", "");
auto e = browser->GetInfo(mask);
if(e) {
if(e.IsDirectory()) {
if(max_count == 1) {
fi.Add(e.ToFileInfo());
}
else {
SFtp::DirList ls;
if(browser->ListDir(mask, ls))
for(const auto& ee : ls)
fi.Add(ee.ToFileInfo());
dir = browser->GetDefaultDir();
else {
String s;
dir = GetFileDirectory(browser->RealizePath(mask, s) ? s : mask);
}
bool haswc = HasWildcards(mask);
if(!haswc && max_count == 1) {
const SFtp::DirEntry& e = browser->GetInfo(mask);
if(e)
fi.Add(e.ToFileInfo());
}
else {
String pattern;
SFtp::DirList ls;
if(browser->ListDir(dir, ls)) {
if(haswc)
pattern = GetFileName(mask);
for(int i = 0, j = 0; i < ls.GetCount() && j < max_count; i++) {
const SFtp::DirEntry& e = ls[i];
if(!haswc || (haswc && PatternMatch(pattern, e.GetName()))) {
fi.Add(e.ToFileInfo());
j++;
}
}
}
else
fi.Add(e.ToFileInfo());
}
}
return pick(fi);

View file

@ -231,18 +231,18 @@ public:
SFtpFileIn() {}
};
// Experimental stuff!
class SFtpFileSystemInfo : public FileSystemInfo {
public:
SFtpFileSystemInfo& Mount(SFtp& sftp) { browser = &sftp; return *this; }
int GetStyle() const final { return STYLE_POSIX; }
operator FileSystemInfo&() { return static_cast<FileSystemInfo&>(*this); }
bool CreateFolder(String path, String& error) const final;
Array<FileSystemInfo::FileInfo> Find(String mask, int max_count = INT_MAX, bool unmounted = false) const final;
int GetStyle() const override { return STYLE_POSIX; }
operator FileSystemInfo&() { return static_cast<FileSystemInfo&>(*this); }
bool CreateFolder(String path, String& error) const override;
Array<FileSystemInfo::FileInfo> Find(String mask, int max_count = INT_MAX, bool unmounted = false) const override;
SFtpFileSystemInfo() { browser = nullptr; }
SFtpFileSystemInfo(SFtp& sftp) { Mount(sftp); }
virtual ~SFtpFileSystemInfo() {}
SFtpFileSystemInfo(SFtp& sftp) { Mount(sftp); }
SFtpFileSystemInfo() { browser = nullptr; }
private:
SFtp *browser = nullptr;
};

View file

@ -3,4 +3,3 @@ TODO:
- Override libssh2 send and recv callbacks to do raw sends/recvs with U++ TcpSocket.
- Accordingly, move Ssh::Wait() to SshSession.
- Improve SFtpFileSystemInfo.

View file

@ -18,9 +18,10 @@ sh]&]
for a range of operations on remote file system objects, such
as file/directory creation, deletion, renaming, file transfers,
directory listings etc. SFtp class is derived from [^topic`:`/`/Core`/SSH`/src`/Upp`_Ssh`_Base`_en`-us`#Upp`:`:Ssh`:`:class^ S
sh] base class, and has pick semantics. See also [^topic`:`/`/Core`/SSH`/src`/Upp`_Ssh`_SFtpStream`_en`-us`#Upp`:`:SFtpStream`:`:class^ S
FtpStream], and [^topic`:`/`/Core`/SSH`/src`/Upp`_Ssh`_SFtp`_en`-us`#Upp`:`:SFtp`:`:DirEntry`:`:class^ S
Ftp`::DirEntry] classes. &]
sh] base class, and has pick semantics. See also [^topic`:`/`/Core`/SSH`/src`/Upp`_Ssh`_SFtp`_en`-us`#Upp`:`:SFtp`:`:DirEntry`:`:class^ S
Ftp`::DirEntry], [^topic`:`/`/Core`/SSH`/src`/Upp`_Ssh`_SFtp`_en`-us`#Upp`:`:SFtpFileSystemInfo`:`:class^ S
FtpFileSystemInfo], and [^topic`:`/`/Core`/SSH`/src`/Upp`_Ssh`_SFtpStream`_en`-us`#Upp`:`:SFtpStream`:`:class^ S
FtpStream], classes.&]
[s0;#l288; &]
[s3;%- &]
[ {{10000F(128)G(128)@1 [s0; [* Public Method List]]}}&]
@ -552,4 +553,65 @@ irEntry]([@(0.0.255) const]_[_^Upp`:`:String^ String][@(0.0.255) `&]_[*@3 path],
[_^Upp`:`:SFtp`:`:DirEntry^ DirEntry]>_[* DirList]&]
[s2; SFtp`::DirList is a Vector containing SFtp`::DirEntry elements.&]
[s3;%- &]
[s3; ]]
[s0;%- &]
[ {{10000@(113.42.0) [s0; [*@7;4 SFtpFileSystemInfo]]}}&]
[s3; &]
[s1;:Upp`:`:SFtpFileSystemInfo`:`:class:%- [@(0.0.255)3 class][3 _][*3 SFtpFileSystemInfo][3 _
:_][@(0.0.255)3 public][3 _][*@3;3 FileSystemInfo]&]
[s2; This helper class is a FileSystemInfo adapter for the SFtp objects.
It allows SFtp objects to be used with FileSystemInfo class that
provides uniform access to folder hierarchies in a file`-system
agnostic (`"transparent`") way.&]
[s3; &]
[ {{10000F(128)G(128)@1 [s0; [* Public Method List]]}}&]
[s3;%- &]
[s5;:Upp`:`:SFtpFileSystemInfo`:`:Mount`(Upp`:`:SFtp`&`):%- [_^Upp`:`:SFtpFileSystemInfo^ S
FtpFileSystemInfo][@(0.0.255) `&]_[* Mount]([_^Upp`:`:SFtp^ SFtp][@(0.0.255) `&]_[*@3 sftp])
&]
[s2; Mounts a valid [%-*@3 sftp] file system to be enumerated. Returns
`*this for method chaining.&]
[s3; &]
[s4;%- &]
[s5;:Upp`:`:SFtpFileSystemInfo`:`:operator FileSystemInfo`&`(`):%- [* operator_FileSyst
emInfo`&]()&]
[s2; Operator support for direct SFtpFileSystemInfo `-> FileSystemInfo
conversion.&]
[s3;%- &]
[s4;%- &]
[s5;:Upp`:`:SFtpFileSystemInfo`:`:Find`(Upp`:`:String`,int`,bool`)const override:%- [_^Upp`:`:Array^ A
rray]<[_^Upp`:`:FileSystemInfo`:`:FileInfo^ FileSystemInfo`::FileInfo]>_[* Find]([_^Upp`:`:String^ S
tring]_[*@3 mask], [@(0.0.255) int]_[*@3 max`_count]_`=_`_`_INT`_MAX`_`_,
[@(0.0.255) bool]_[*@3 unmounted]_`=_[@(0.0.255) false])_[@(0.0.255) const]_override&]
[s2; Searches for the given [%-*@3 mask] in the mounted sftp file system.
Returns an array of FileInfo objects on success, and an empty
array on failure. Mask can be a full or relative path, and may
contain wildcards (`*, ?). When the mask is null or empty, this
method will return the content of the user`'s default directory.
[%-*@3 max`_count] can be used to limit the number of returned
FileInfos. The [%-*@3 unmounted] flag is unused.&]
[s3; &]
[s4;%- &]
[s5;:Upp`:`:SFtpFileSystemInfo`:`:CreateFolder`(Upp`:`:String`,Upp`:`:String`&`)const override:%- [@(0.0.255) b
ool]_[* CreateFolder]([_^Upp`:`:String^ String]_[*@3 path], [_^Upp`:`:String^ String][@(0.0.255) `&
]_[*@3 error])_[@(0.0.255) const]_override&]
[s0;l288; Attempts to create a new folder at [%-*@3 path]. Returns
true on success, and the [%-*@3 error] buffer will be filled with
specific error message on failure.&]
[s3; &]
[s4;%- &]
[s5;:Upp`:`:SFtpFileSystemInfo`:`:GetStyle`(`)const override:%- [@(0.0.255) int]_[* GetSt
yle]()_[@(0.0.255) const]_override&]
[s0;l288; Returns the file system style. This method returns the
[C FileSystemInfo`::STYLE`_POSIX] constant.&]
[s3;%- &]
[ {{10000F(128)G(128)@1 [s0; [* Constructor detail]]}}&]
[s3;%- &]
[s5;:Upp`:`:SFtpFileSystemInfo`:`:SFtpFileSystemInfo`(`):%- [* SFtpFileSystemInfo]()&]
[s2; Default constructor.&]
[s3;%- &]
[s4;%- &]
[s5;:Upp`:`:SFtpFileSystemInfo`:`:SFtpFileSystemInfo`(Upp`:`:SFtp`&`):%- [* SFtpFileSys
temInfo]([_^Upp`:`:SFtp^ SFtp][@(0.0.255) `&]_[*@3 sftp])&]
[s2; Constructor. Mounts a valid [%-*@3 sftp] file system to be enumerated.&]
[s3; &]
[s0; ]]

View file

@ -1,22 +1,25 @@
TITLE("SFtp")
COMPRESSED
120,156,221,93,13,115,226,56,210,254,43,170,154,219,61,152,34,196,54,16,8,236,109,37,147,201,102,82,151,175,10,201,206,188,149,34,193,96,17,124,49,54,231,143,204,100,247,118,126,251,117,75,178,45,99,27,12,56,155,189,119,106,38,16,91,106,117,63,221,106,73,173,150,230,206,108,54,59,61,93,107,245,158,254,121,185,223,211,200,223,254,166,214,148,119,141,182,218,232,180,26,106,83,219,131,31,106,67,213,90,90,163,169,118,180,253,102,167,209,232,40,221,177,165,123,222,224,206,210,58,29,86,73,171,105,239,180,118,75,83,219,205,78,179,163,54,218,29,13,234,106,138,162,41,109,173,165,54,27,29,173,213,53,168,55,30,220,41,80,188,1,109,236,239,53,246,21,85,81,218,170,170,52,180,182,210,104,53,85,181,161,1,9,173,173,169,74,171,75,109,99,112,247,105,175,135,21,154,80,65,105,237,41,138,178,7,212,154,77,5,168,99,181,102,67,109,40,90,163,165,238,183,246,186,35,250,104,218,131,187,180,72,173,149,34,181,149,174,233,211,153,144,72,111,246,222,
31,180,122,42,84,221,171,237,189,107,67,179,205,22,52,182,143,18,53,160,154,166,237,181,246,213,86,19,88,106,42,90,215,165,255,14,76,151,206,168,237,11,10,166,170,106,106,111,164,182,123,192,194,247,239,223,235,106,83,225,72,181,129,23,85,1,190,53,21,158,129,28,109,181,181,175,236,183,58,106,71,105,180,155,90,171,13,162,207,117,87,159,9,73,70,77,173,39,228,232,212,58,239,246,212,61,64,84,233,0,255,173,125,32,160,128,16,240,9,64,182,224,111,163,211,245,69,101,172,135,149,246,107,251,239,0,164,70,75,105,239,43,237,102,187,213,4,73,52,117,79,5,32,21,148,31,212,208,181,29,119,166,91,131,59,172,160,32,214,43,254,116,63,210,137,30,88,32,238,239,15,127,252,112,124,177,115,219,39,119,228,247,223,85,124,121,80,1,69,214,155,90,93,169,146,59,79,233,145,187,247,7,237,94,147,244,127,241,231,131,193,31,127,252,56,184,243,26,189,31,118,8,126,81,123,221,219,249,124,216,29,118,241,53,126,50,219,234,194,235,187,131,138,82,87,234,
32,104,181,65,132,197,53,200,195,224,238,125,131,209,34,248,107,23,126,151,203,205,131,145,101,142,195,130,7,141,30,148,245,166,3,108,74,233,189,99,202,33,55,83,211,227,4,9,181,199,250,220,11,44,221,167,30,209,109,210,239,127,210,128,248,205,21,241,130,145,247,226,129,81,212,201,169,79,116,203,114,190,122,100,226,184,68,39,174,110,63,82,226,76,136,51,167,174,238,155,142,237,17,199,38,96,1,142,79,201,196,180,40,225,85,137,51,250,23,29,251,94,13,168,141,167,68,247,216,203,93,3,140,101,236,59,238,11,25,187,148,213,175,17,131,90,148,127,115,169,173,207,76,251,177,198,41,249,208,154,55,161,46,16,137,235,89,166,231,67,17,224,223,31,215,57,24,92,30,16,204,160,174,249,76,13,50,113,157,25,185,187,247,157,185,57,6,92,119,135,187,71,142,75,135,187,32,226,112,215,115,199,195,93,4,254,1,208,25,62,124,208,61,58,124,160,246,112,39,240,134,239,66,133,192,155,80,31,247,12,69,50,130,114,188,165,26,160,101,144,41,136,4,228,159,136,
71,103,186,237,155,99,15,184,161,20,224,242,156,162,109,35,247,125,31,128,152,165,57,136,95,73,140,68,15,7,156,137,53,218,201,108,1,63,63,154,238,177,237,187,47,11,237,12,187,209,155,1,151,155,130,132,9,99,146,173,57,236,1,191,84,84,173,83,61,97,63,15,212,176,19,144,43,102,155,228,156,250,83,199,32,103,160,195,84,119,104,165,186,195,141,57,163,78,224,15,43,166,237,15,171,172,95,60,220,75,101,56,163,114,39,32,195,31,7,15,208,156,168,57,168,200,239,128,10,190,60,104,144,153,55,168,98,147,90,15,84,230,123,196,231,197,201,179,110,5,20,202,145,153,9,102,70,199,142,109,48,173,250,104,113,196,159,210,133,146,190,67,46,2,203,130,158,135,68,224,53,51,71,110,249,216,156,67,70,150,51,126,194,202,51,199,160,92,92,38,108,51,95,234,163,105,96,63,245,205,223,232,6,114,71,117,243,36,247,126,91,144,28,152,30,99,37,226,65,45,20,232,238,135,29,81,144,117,121,67,247,161,215,83,221,240,152,193,125,117,97,176,0,76,110,160,
158,193,29,161,92,31,250,224,94,243,159,228,154,250,129,11,158,97,248,222,71,127,131,116,102,92,243,227,169,110,218,128,71,189,24,22,39,212,255,4,205,90,128,197,176,10,234,240,124,129,198,217,233,7,244,87,104,218,55,87,195,135,79,135,23,31,207,142,239,73,230,227,36,80,239,25,80,17,225,65,165,250,32,191,103,141,12,4,68,161,28,58,153,59,128,33,117,17,32,132,204,50,71,158,55,213,136,55,1,125,67,199,240,192,125,129,71,64,130,232,14,193,229,141,41,58,138,139,219,179,51,124,48,209,77,43,112,105,61,97,240,75,228,190,156,67,103,173,48,94,72,248,202,119,1,183,225,143,195,154,120,96,124,117,92,99,88,179,28,120,154,97,36,92,60,110,42,66,84,20,28,41,39,141,131,75,252,32,213,102,45,65,77,246,153,97,102,96,30,115,221,159,130,15,138,43,49,110,238,9,251,16,101,38,150,254,232,97,33,137,0,114,27,118,66,232,17,220,24,149,30,247,39,200,27,55,73,121,60,65,35,140,188,191,238,135,6,202,56,32,95,77,31,6,23,134,
118,248,130,55,203,221,35,127,194,90,170,75,218,100,116,51,212,133,117,22,85,70,126,137,11,195,88,55,242,193,128,97,136,9,60,238,18,192,188,133,105,207,2,80,214,8,121,183,40,140,21,113,17,74,142,44,199,163,149,106,88,242,235,148,2,125,232,7,222,148,26,117,97,107,226,3,91,19,35,104,150,88,93,169,116,27,230,90,48,31,236,233,48,215,234,30,249,174,197,188,199,241,197,205,241,117,151,77,188,218,26,128,138,213,143,160,254,245,241,225,199,193,206,127,56,198,12,0,211,102,29,155,193,83,207,37,120,118,252,203,77,68,238,123,146,230,231,235,211,155,227,20,81,230,35,86,80,189,62,61,249,148,75,246,240,234,234,248,34,205,172,62,135,95,87,177,123,115,121,149,71,246,8,32,96,236,30,225,212,131,134,132,39,196,244,137,225,80,207,30,254,221,39,244,27,140,77,9,242,57,212,142,191,28,157,221,246,79,127,101,4,245,0,156,0,17,166,251,239,128,130,37,128,167,64,19,66,250,248,24,38,54,56,49,193,22,117,11,97,127,225,77,129,47,229,124,
49,5,115,35,98,83,8,176,36,111,78,199,230,196,132,122,140,8,122,82,44,3,159,208,156,145,143,193,135,203,155,155,203,243,60,24,110,174,111,47,142,14,23,245,134,166,239,187,1,204,9,17,25,147,241,255,27,117,29,82,129,169,236,232,133,57,253,115,97,225,216,58,239,121,18,235,178,71,95,102,199,172,51,122,164,2,243,199,153,201,28,167,87,205,178,234,152,123,248,45,254,129,179,9,148,226,244,250,182,127,93,35,167,159,249,199,23,254,113,253,249,203,45,200,117,235,129,171,150,26,200,212,103,140,200,233,245,201,245,21,210,226,31,95,248,7,208,58,1,90,39,174,19,204,101,98,171,104,93,222,124,66,90,252,227,11,255,0,90,151,64,235,42,166,194,6,69,7,44,195,93,205,221,225,217,25,84,190,198,190,42,176,100,147,113,203,90,85,243,51,175,249,153,117,200,245,170,126,225,85,143,191,209,113,224,235,35,176,144,209,75,145,122,32,233,33,106,192,118,161,19,184,230,216,167,153,76,175,30,250,209,54,81,228,188,97,112,189,33,15,41,149,53,236,133,19,
40,222,123,196,80,149,24,149,80,82,236,227,56,209,249,43,15,59,197,180,192,204,167,28,53,48,82,127,174,30,112,52,98,122,96,128,126,53,97,186,14,104,177,213,39,119,172,105,239,255,191,173,50,70,98,88,73,41,68,168,74,130,243,217,49,13,190,108,192,42,160,150,2,106,4,108,185,132,17,252,172,50,159,182,49,180,132,6,68,169,60,84,216,240,129,154,3,97,65,75,248,13,150,155,145,228,94,62,72,49,142,155,160,115,141,33,134,92,107,174,45,51,114,9,185,145,227,88,12,57,78,174,4,139,118,44,35,156,83,111,75,202,166,95,19,253,131,243,24,89,115,98,62,205,35,37,92,99,33,11,210,42,48,36,21,119,9,152,35,200,61,161,78,138,193,254,17,99,60,43,156,72,22,190,188,94,217,30,131,83,149,108,118,97,89,145,47,110,49,105,251,47,246,184,80,15,140,228,196,26,155,118,64,172,59,117,29,27,22,224,146,72,124,197,106,224,176,157,236,145,225,26,86,56,76,15,236,64,127,196,213,252,179,57,166,91,75,78,233,83,150,228,225,162,21,120,
218,107,174,23,211,64,146,235,66,35,175,76,89,147,247,132,125,132,198,224,120,38,70,28,165,88,8,125,242,36,187,143,10,176,117,71,98,57,154,139,107,189,212,176,199,149,227,229,91,80,174,108,132,215,220,212,146,34,221,99,84,40,112,93,106,251,17,20,164,2,80,176,133,64,149,123,13,44,196,246,29,80,48,12,9,23,197,169,248,204,3,70,132,114,230,29,64,168,84,31,146,142,88,228,134,40,222,106,54,81,194,76,226,92,127,162,75,84,32,135,158,178,124,154,168,94,98,180,105,85,32,9,103,35,98,109,175,231,106,132,12,50,130,70,11,33,162,205,156,223,53,152,255,243,50,196,150,205,35,68,213,215,26,234,162,206,185,210,80,55,20,30,99,250,76,244,124,231,47,237,56,96,233,165,128,8,114,219,56,254,133,230,238,137,248,146,141,26,238,43,69,168,9,92,216,51,225,14,29,240,102,224,14,193,207,165,128,148,92,93,238,44,56,119,254,116,35,79,104,113,117,226,74,90,160,207,208,107,89,215,149,70,236,184,97,168,73,103,115,255,165,232,44,44,210,209,
242,200,242,102,122,42,61,164,188,133,254,46,159,169,107,57,186,81,47,164,201,98,83,191,114,52,85,116,7,0,157,231,153,105,63,173,212,213,106,223,18,146,42,99,149,226,154,143,73,29,21,168,228,235,238,35,245,51,60,180,247,50,27,57,184,45,104,1,119,225,180,52,92,140,96,75,166,173,179,157,183,244,190,242,246,174,90,55,74,130,55,36,245,42,93,96,125,120,175,169,7,35,73,26,222,197,157,19,128,219,244,61,88,225,125,139,94,8,74,37,96,107,193,90,228,10,154,41,7,222,144,218,95,8,97,139,67,60,118,102,115,139,126,195,204,5,11,76,245,153,173,174,1,119,68,156,26,153,128,211,201,4,236,23,139,150,139,58,204,252,69,102,10,243,240,169,9,114,82,78,177,86,136,107,12,42,89,139,0,54,95,2,71,25,110,245,198,14,141,84,104,253,17,220,235,17,217,157,58,51,186,59,184,195,240,111,224,81,151,5,68,170,169,249,173,80,117,23,25,253,213,49,141,74,117,147,141,81,168,124,232,251,110,230,218,72,30,190,120,161,101,118,21,82,218,118,
134,193,136,240,226,156,94,166,9,233,236,85,8,241,73,184,245,142,143,205,81,128,238,16,80,78,187,185,220,85,20,25,196,139,85,78,187,4,251,17,200,174,158,28,172,133,238,171,204,11,94,23,245,197,5,67,217,88,247,151,89,113,18,254,66,104,247,55,183,229,165,218,217,16,232,126,54,208,209,220,184,152,137,15,234,175,7,123,161,232,239,186,208,191,194,42,247,141,84,146,49,87,40,219,215,156,218,19,103,141,216,142,88,7,176,116,180,116,126,154,240,56,72,179,236,245,115,28,188,9,91,11,65,242,167,0,19,46,38,116,19,222,155,208,182,59,99,25,141,68,31,97,138,88,2,193,84,180,7,211,198,82,227,95,1,3,206,194,109,49,145,111,133,189,22,129,41,5,121,132,117,38,100,148,189,90,97,108,25,134,230,210,185,75,61,186,208,255,57,181,60,35,219,6,64,48,18,158,89,87,200,240,178,162,171,233,228,186,242,108,12,33,99,105,116,0,86,174,245,12,119,212,141,12,103,153,220,89,209,249,28,227,41,83,254,21,81,122,132,34,109,83,97,126,34,226,
52,88,0,170,4,191,116,166,123,254,185,99,152,147,23,204,33,45,104,40,88,244,158,37,157,134,102,146,36,243,154,6,99,65,75,24,190,52,39,230,152,187,31,204,81,21,168,164,16,146,48,217,206,15,21,195,41,57,162,178,146,43,156,211,235,0,183,98,84,149,244,151,189,0,196,55,41,75,76,35,31,174,232,160,248,107,217,230,33,171,179,181,109,198,100,94,221,54,69,160,157,129,242,154,214,184,26,153,205,172,177,124,168,94,207,26,37,172,243,60,192,182,118,136,219,82,199,44,115,113,253,93,142,184,238,171,89,29,202,100,46,88,89,52,203,8,247,224,10,138,250,49,140,118,108,42,239,2,129,183,19,58,138,219,20,78,96,152,97,72,115,83,185,19,213,223,78,234,68,0,180,168,228,206,248,137,250,27,11,46,213,126,67,185,25,23,5,5,190,50,231,27,247,231,184,238,219,9,203,19,171,231,192,73,65,129,63,224,145,156,77,37,150,42,191,157,200,236,80,17,207,14,215,173,117,28,90,159,87,217,198,133,167,72,188,29,12,227,169,238,234,99,60,149,179,1,
20,24,252,118,236,133,115,69,233,35,83,68,148,43,116,76,136,229,249,7,179,17,112,4,131,46,203,149,33,115,215,193,193,21,76,212,8,16,1,116,198,120,164,42,60,219,88,39,167,184,29,105,64,1,159,37,253,143,117,203,10,143,48,126,158,82,251,179,110,194,58,217,9,124,211,46,30,38,199,138,87,174,243,8,96,121,201,233,224,137,238,195,228,2,127,14,126,202,89,125,229,46,203,126,70,64,100,210,33,0,167,108,135,0,243,83,106,60,53,229,81,199,132,115,126,112,20,36,229,71,224,112,31,65,22,93,28,35,155,152,46,88,32,59,186,75,81,153,128,216,179,105,136,84,54,125,230,4,124,175,150,87,197,152,11,158,188,12,207,80,140,40,238,184,10,130,46,53,56,73,126,116,79,162,57,211,95,66,186,252,24,159,227,131,185,44,18,103,248,75,196,106,100,20,248,184,117,203,36,137,52,164,132,83,40,150,137,131,102,202,118,131,245,145,227,250,137,212,169,164,162,121,222,80,161,211,146,55,162,142,56,47,233,37,206,74,230,27,116,102,56,25,147,124,135,239,
135,181,248,44,97,182,149,111,23,59,230,169,196,195,247,188,63,251,238,194,107,233,0,34,46,234,31,134,255,120,56,189,184,25,62,156,31,126,137,251,61,59,99,136,43,42,207,151,87,249,3,209,147,24,154,81,230,89,226,132,152,136,90,122,48,240,153,44,173,155,101,248,44,164,61,178,243,152,44,105,45,152,32,182,233,184,51,231,219,119,95,152,98,29,98,56,48,148,70,44,241,3,208,241,153,28,113,20,180,190,180,251,131,127,10,192,122,94,88,26,58,244,243,162,131,114,144,173,76,238,173,11,169,244,42,216,82,165,161,43,223,88,203,161,102,89,210,255,26,170,93,170,159,88,141,107,91,192,95,67,181,125,253,153,226,232,25,14,189,56,138,161,50,215,30,136,5,157,236,241,87,126,4,13,196,74,43,41,199,28,53,22,175,65,245,103,154,202,173,17,216,51,213,226,6,218,122,185,54,101,28,108,151,71,170,251,196,184,69,6,108,128,26,235,118,116,156,13,141,10,7,170,12,167,93,32,175,202,209,141,12,157,174,222,130,15,43,110,160,196,204,156,221,24,126,169,
135,36,33,255,223,66,54,175,183,196,144,226,13,9,175,215,79,100,229,65,75,76,121,120,253,66,102,167,48,237,66,93,2,138,145,236,14,65,254,31,246,136,69,77,213,50,186,72,102,98,97,220,53,214,82,2,94,251,176,114,32,91,187,59,165,149,69,6,108,36,10,211,213,130,101,25,60,127,65,229,173,152,129,30,33,102,110,128,49,35,152,218,251,186,105,21,184,175,131,125,70,10,247,166,125,126,49,66,212,61,223,243,51,30,178,66,163,66,236,150,21,241,61,91,177,226,154,133,56,143,48,102,177,78,62,152,182,33,93,193,97,194,43,221,30,39,46,180,16,213,101,3,94,156,142,47,187,190,71,222,111,142,160,96,84,210,247,248,164,174,84,89,117,167,79,188,187,10,79,10,220,235,115,238,60,83,60,148,139,15,127,74,81,248,249,65,92,250,35,221,249,99,83,15,167,69,83,106,205,97,18,19,221,152,99,74,139,79,207,156,205,45,115,242,34,50,191,92,79,44,218,50,110,245,33,21,124,40,221,203,99,226,47,137,120,27,252,142,55,244,84,69,150,108,156,30,
205,20,196,24,168,199,123,234,156,161,140,59,117,100,147,123,141,59,102,100,85,193,42,232,130,29,14,76,222,53,178,52,131,238,130,29,255,43,26,28,128,194,164,130,222,163,186,36,251,98,85,174,64,225,40,192,130,108,183,176,106,200,22,45,107,163,27,74,23,150,11,211,254,136,105,164,230,223,5,5,204,220,210,94,91,188,147,181,196,59,89,67,188,71,118,5,192,91,203,199,55,240,11,11,200,55,234,11,74,24,102,29,100,8,19,158,250,202,151,106,27,161,162,237,94,88,118,229,8,183,100,115,29,42,21,22,49,123,159,124,139,110,184,133,196,124,75,113,77,137,195,74,235,73,188,176,251,250,231,202,42,178,237,178,18,186,10,36,177,73,73,164,213,63,163,57,126,165,157,3,211,210,236,100,232,240,210,39,113,98,56,74,109,226,179,16,128,137,197,17,178,17,222,8,193,136,161,239,185,97,234,77,19,4,99,97,191,47,181,167,67,30,195,101,207,96,68,14,205,41,60,172,145,11,197,70,242,158,122,124,201,144,35,107,180,52,224,229,138,245,3,177,139,144,99,247,
230,194,142,240,186,252,70,27,188,69,152,142,10,151,198,249,226,182,238,186,236,139,125,218,34,204,139,162,165,177,158,181,55,187,54,251,124,219,167,16,251,188,104,105,236,47,221,123,90,87,14,182,169,88,68,10,86,176,52,25,114,183,17,215,229,31,183,129,139,176,143,229,74,227,62,181,239,187,182,245,176,93,242,66,198,195,74,150,103,250,242,246,252,186,92,227,54,9,174,252,138,240,29,150,45,137,115,87,144,219,144,115,182,13,80,148,245,168,112,73,188,99,140,126,11,222,17,201,75,219,42,228,230,195,178,101,112,142,11,98,132,125,184,227,0,69,49,250,110,40,67,124,149,87,17,41,226,210,37,105,128,70,4,55,226,255,198,17,123,34,133,23,231,97,141,194,243,101,57,133,63,231,92,16,155,46,176,66,190,110,224,108,135,221,44,117,25,248,243,64,68,221,227,35,194,240,205,51,103,166,165,179,91,67,111,109,243,27,177,112,38,53,155,193,12,123,248,119,15,99,134,80,109,67,52,190,204,172,117,160,128,226,37,227,96,147,111,51,43,130,224,58,12,242,240,7,
209,61,91,224,237,224,87,32,128,133,125,253,177,22,47,156,89,48,100,201,25,20,143,29,151,244,233,55,191,187,16,171,107,170,141,70,183,213,217,107,255,132,241,173,159,91,205,102,207,218,213,246,92,248,231,239,170,205,17,252,59,80,119,120,96,232,31,24,25,194,107,90,187,56,89,226,209,187,110,23,138,183,160,120,11,138,183,160,120,235,64,35,162,5,254,50,73,171,162,182,59,85,65,237,48,154,236,66,73,241,236,202,241,60,19,175,200,251,21,111,5,174,120,213,252,22,144,157,35,226,191,192,64,24,214,199,51,148,40,191,116,201,117,45,60,67,90,19,131,69,141,13,116,53,62,100,15,119,196,152,93,139,167,33,210,51,118,169,224,32,230,14,27,12,76,35,209,222,97,168,167,40,161,134,165,166,216,60,132,192,111,55,94,32,241,184,61,9,182,229,187,37,141,89,184,238,151,233,156,101,175,237,77,155,252,31,252,233,158,159,99,240,246,35,249,244,9,190,118,251,125,209,133,23,40,235,225,250,58,69,89,94,67,175,71,83,186,54,50,65,214,253,250,141,255,77,
69,40,11,198,58,55,138,207,203,30,36,250,94,137,130,243,81,8,57,90,253,126,12,111,120,150,66,237,155,184,171,184,177,101,187,220,50,7,229,230,148,69,87,14,216,252,22,6,233,28,51,115,9,73,251,75,236,151,22,219,238,90,71,216,85,167,12,203,135,225,149,206,20,2,170,190,158,188,105,103,5,154,137,172,12,113,148,112,171,237,152,226,65,126,118,145,9,124,69,215,107,208,201,226,204,71,60,150,97,249,149,201,116,79,248,167,156,45,183,228,116,220,207,34,237,155,49,22,238,5,39,216,229,107,0,78,52,60,62,136,56,45,236,49,17,106,177,255,85,99,97,182,7,72,13,6,255,5,50,163,117,254,
120,156,221,93,13,115,219,54,210,254,43,152,203,181,39,103,100,89,212,135,37,203,189,94,28,199,113,60,231,175,177,236,38,55,30,217,162,68,200,226,153,34,117,4,105,199,237,219,252,246,119,23,0,73,240,75,162,36,186,233,93,218,68,50,9,44,176,207,46,22,139,197,2,190,53,91,173,238,190,222,104,239,63,254,243,98,111,191,65,254,250,87,173,90,127,211,236,104,205,110,187,169,181,26,187,240,143,214,212,26,237,70,179,165,117,27,123,173,110,179,217,173,247,198,150,206,216,224,214,106,116,187,188,82,163,218,120,211,232,180,27,90,167,213,109,117,181,102,167,219,128,186,141,122,189,81,239,52,218,90,171,217,109,180,123,6,101,227,193,109,29,138,55,161,141,189,221,230,94,93,171,215,59,154,86,111,54,58,245,102,187,165,105,205,6,144,104,116,26,90,189,221,163,182,49,184,253,180,187,143,21,90,80,161,222,222,173,215,235,187,64,173,213,170,3,117,172,214,106,106,205,122,163,217,214,246,218,187,189,17,125,48,237,193,109,154,165,246,82,150,58,245,158,233,209,153,
228,72,111,237,191,125,215,222,215,160,234,110,117,247,77,7,154,109,181,161,177,61,228,168,9,213,26,141,221,246,158,214,110,65,151,90,245,70,207,165,255,241,77,151,206,168,237,73,10,166,166,53,180,253,145,214,217,135,46,124,251,246,173,166,181,234,2,169,14,244,69,171,67,191,27,26,60,3,62,58,90,123,175,190,215,238,106,221,122,179,211,106,180,59,192,250,92,119,245,153,228,100,212,106,236,75,62,186,213,238,155,93,109,23,16,173,119,161,255,237,61,32,80,7,38,224,19,128,108,195,255,205,110,207,147,149,177,30,86,218,171,238,189,1,144,154,237,122,103,175,222,105,117,218,45,224,164,161,237,106,0,100,29,249,7,49,244,108,199,157,233,214,224,22,43,212,17,235,37,127,122,31,232,68,247,45,96,247,183,251,223,127,56,58,223,190,233,147,91,242,219,111,26,190,124,87,1,65,214,90,141,90,125,139,220,178,250,62,185,125,251,174,179,223,34,253,143,222,124,48,248,253,247,31,7,183,172,185,255,195,54,193,47,218,126,239,102,62,31,246,134,61,124,141,159,92,
183,122,240,250,246,93,165,94,171,215,128,209,173,38,145,26,215,36,247,131,219,183,77,78,139,224,143,61,248,89,45,55,247,71,150,57,14,10,190,107,238,67,89,54,29,96,83,245,253,55,92,56,228,122,106,50,65,144,80,123,172,207,153,111,233,30,101,68,183,73,191,255,169,1,196,175,47,9,243,71,236,133,129,82,212,200,137,71,116,203,114,158,25,153,56,46,209,137,171,219,15,148,56,19,226,204,169,171,123,166,99,51,226,216,4,52,192,241,40,153,152,22,37,162,42,113,70,255,166,99,143,85,129,218,120,74,116,198,95,238,24,160,44,99,207,113,95,200,216,165,188,126,149,24,212,162,226,155,75,109,125,102,218,15,85,65,201,131,214,216,132,186,64,36,170,103,153,204,131,34,208,127,111,92,19,96,8,126,128,49,131,186,230,19,53,200,196,117,102,228,246,206,115,230,230,24,112,221,25,238,28,58,46,29,238,0,139,195,29,230,142,135,59,8,252,61,160,51,188,127,175,51,58,188,167,246,112,219,103,195,55,129,64,224,77,32,143,59,142,34,25,65,57,209,82,21,
208,50,200,20,88,2,242,143,132,209,153,110,123,230,152,65,111,40,5,184,152,83,180,109,46,247,84,219,82,25,62,152,238,145,237,185,47,106,71,248,171,240,205,160,186,113,67,31,1,231,62,23,216,137,61,113,18,77,197,95,14,4,223,43,180,216,247,64,198,179,204,118,229,171,120,123,226,33,180,35,112,166,172,22,211,93,117,240,4,3,238,99,69,107,116,183,142,249,191,239,180,96,204,145,75,62,20,200,25,245,166,142,65,78,65,101,82,163,175,157,26,125,215,230,140,58,190,55,172,152,182,55,220,226,195,240,254,78,41,35,58,169,142,57,50,252,113,112,15,205,201,154,131,138,250,14,168,224,203,119,77,50,99,131,45,108,178,177,15,26,226,49,226,137,226,228,73,183,124,10,229,200,204,4,173,166,99,199,54,184,18,121,168,224,196,155,210,68,73,207,33,231,190,101,193,64,71,34,240,154,107,191,24,104,216,156,67,70,150,51,126,196,202,51,199,160,130,93,206,108,43,159,235,195,169,111,63,246,205,95,233,26,124,135,117,243,56,103,191,38,56,135,78,143,177,18,
97,80,11,25,186,253,97,91,22,228,22,198,208,61,48,50,84,55,24,87,182,103,23,230,38,192,228,26,234,25,194,238,170,245,97,200,239,182,254,73,174,168,231,187,96,136,134,111,61,52,111,72,103,38,36,63,158,234,166,13,120,212,138,97,113,76,189,79,208,172,5,88,12,183,64,28,204,147,104,156,158,188,71,243,136,106,125,125,57,188,255,116,112,254,225,244,232,142,100,62,142,3,245,150,3,21,18,30,84,182,238,213,247,188,145,129,132,40,224,67,39,115,7,48,164,46,2,132,144,89,230,136,177,105,131,176,9,200,27,198,5,3,107,9,6,8,9,162,245,5,11,59,166,104,151,206,111,78,79,241,193,68,55,45,223,165,181,152,194,47,224,251,98,14,67,180,194,251,66,130,87,158,11,184,13,127,28,86,229,3,227,217,113,141,97,213,114,224,105,134,146,8,246,132,170,72,86,145,113,164,28,87,14,193,241,189,82,155,183,4,53,249,103,134,154,129,122,204,117,111,138,214,46,172,196,123,115,71,248,135,44,51,177,244,7,134,133,20,2,216,219,96,16,194,136,16,
202,88,223,23,246,4,251,38,84,82,157,190,80,9,195,201,70,247,2,5,229,61,32,207,166,7,115,25,71,59,120,33,154,21,166,81,60,225,45,213,20,105,114,186,25,226,194,58,73,145,145,143,81,97,152,90,71,30,40,48,204,104,62,19,38,1,212,91,170,246,204,7,97,141,176,239,22,133,169,41,42,66,201,161,229,48,90,217,10,74,62,79,41,208,135,113,192,166,212,168,73,93,147,31,216,154,156,176,179,216,234,41,165,59,224,218,129,251,185,175,131,107,215,59,244,92,139,91,143,163,243,235,163,171,30,247,243,58,13,0,21,171,31,66,253,171,163,131,15,131,237,255,19,24,115,0,76,155,15,108,14,79,45,151,224,233,209,199,235,144,220,183,56,205,207,87,39,215,71,41,162,220,70,44,161,122,117,114,252,41,151,236,193,229,229,209,121,186,179,250,28,126,92,214,221,235,139,203,60,178,135,0,1,239,238,33,122,58,52,32,60,33,166,71,12,135,50,123,248,55,143,208,175,48,55,197,200,231,80,59,250,114,120,122,211,63,249,133,19,212,125,48,2,68,170,238,
127,124,10,154,0,150,2,85,8,233,227,99,240,163,208,15,194,22,117,11,97,127,17,77,129,45,21,253,226,2,22,74,196,61,22,208,36,54,167,99,115,98,66,61,78,4,45,41,150,129,79,104,206,200,199,224,253,197,245,245,197,89,30,12,215,87,55,231,135,7,73,185,161,234,123,174,15,46,40,34,99,242,254,255,74,93,135,84,192,115,30,189,112,163,127,38,53,28,91,23,35,79,233,186,106,209,23,233,49,31,140,140,84,192,93,157,153,220,112,178,173,44,173,142,122,15,63,69,255,160,55,129,92,156,92,221,244,175,170,228,228,179,248,248,34,62,174,62,127,185,1,190,110,24,152,106,165,129,76,121,70,136,156,92,29,95,93,34,45,241,241,69,124,0,173,99,160,117,236,58,254,92,37,182,140,214,197,245,39,164,37,62,190,136,15,160,117,1,180,46,35,42,124,82,116,64,51,220,229,189,59,56,61,133,202,87,56,86,37,150,220,247,183,172,101,53,63,139,154,159,249,128,92,173,234,23,81,245,232,43,29,251,158,62,2,13,25,189,20,169,7,156,30,160,4,108,
23,6,129,107,142,61,154,217,233,229,83,63,234,38,178,156,55,13,174,54,229,33,165,178,166,189,192,129,18,163,71,78,85,177,89,9,57,197,49,142,142,206,159,121,218,41,38,5,174,62,229,136,129,147,250,99,229,128,179,17,151,3,7,244,217,4,119,29,208,226,139,93,97,88,211,214,255,191,91,100,156,196,176,146,18,136,20,149,2,231,147,99,26,98,217,128,85,64,44,5,196,8,216,10,14,67,248,121,101,225,182,113,180,164,4,100,169,60,84,248,244,129,146,3,102,65,74,248,13,86,209,33,231,44,31,164,8,199,117,208,185,194,136,70,174,54,87,23,41,185,130,220,200,113,44,142,156,32,87,130,70,59,150,17,248,212,155,146,178,233,115,108,124,136,62,134,218,28,243,167,69,96,70,72,44,232,130,178,10,12,72,69,67,2,124,4,117,36,212,72,49,216,63,96,72,105,137,17,201,194,87,212,43,219,98,8,170,138,206,38,150,21,249,236,22,227,182,255,98,143,11,141,192,144,79,172,177,238,0,196,186,83,215,177,97,1,174,176,36,86,172,6,78,219,241,17,
25,172,97,165,193,100,160,7,250,3,174,230,159,204,49,221,152,115,74,31,179,56,15,22,173,208,167,221,214,106,49,13,36,185,42,52,234,202,148,55,121,71,248,71,160,12,14,51,49,192,169,196,66,232,35,83,244,62,44,192,215,29,177,229,104,46,174,181,82,195,30,151,14,203,215,160,92,222,136,168,185,174,38,133,178,199,168,144,239,186,212,246,66,40,72,5,160,224,11,129,45,97,53,176,16,223,230,64,198,48,2,93,20,167,226,158,7,204,8,229,248,29,64,168,84,27,146,142,88,228,134,40,190,151,55,81,130,39,113,166,63,210,5,34,80,67,79,89,54,77,86,47,49,218,180,44,144,132,222,136,92,219,235,185,18,33,131,140,160,81,34,68,180,158,241,187,2,245,127,90,132,216,34,63,66,86,125,173,169,46,28,156,75,21,117,77,230,49,166,207,89,207,55,254,202,70,10,150,94,8,136,36,183,137,225,79,52,119,71,228,151,108,212,112,27,43,68,77,226,194,159,73,115,232,128,53,3,115,8,118,46,5,164,98,234,114,189,224,92,255,233,90,117,104,113,117,
226,42,82,160,79,48,106,249,208,85,102,236,168,97,168,73,103,115,239,165,168,23,22,202,104,113,100,121,61,57,149,30,82,222,64,126,23,79,212,181,28,221,168,21,146,100,49,215,175,28,73,21,221,1,64,227,121,106,218,143,75,101,181,220,182,4,164,202,88,165,184,230,67,92,70,5,42,121,186,251,64,189,12,11,205,94,102,35,7,183,5,45,232,93,224,150,6,139,17,108,201,180,117,190,243,150,222,198,222,220,84,235,70,73,240,6,164,94,101,8,172,14,239,21,101,48,147,164,225,77,238,156,0,220,166,199,96,133,247,53,124,33,41,149,128,173,5,107,145,75,104,166,28,120,3,106,127,34,132,45,1,241,216,153,205,45,250,21,19,37,44,80,213,39,190,186,6,220,17,113,106,100,2,78,39,19,208,95,44,90,46,234,224,249,203,68,24,110,225,83,14,114,156,79,185,86,136,106,12,42,89,139,0,238,47,129,161,12,182,122,35,131,70,42,180,246,0,230,245,144,236,76,157,25,221,25,220,98,248,215,103,212,229,1,145,173,148,127,43,69,221,195,142,254,226,152,
70,101,107,157,141,81,168,124,224,121,110,230,218,72,157,190,68,161,69,122,21,80,218,212,195,224,68,68,113,65,47,83,133,116,254,42,128,248,56,216,122,199,199,230,200,71,115,8,40,167,205,92,238,42,138,12,162,197,170,160,93,130,254,72,100,151,59,7,43,161,251,42,126,193,235,162,158,92,48,148,141,117,127,145,22,199,225,47,132,118,127,125,93,94,40,157,53,129,238,103,3,29,250,198,197,84,124,80,123,61,216,11,69,127,87,133,254,21,86,185,223,73,36,25,190,66,217,182,134,103,183,21,143,237,200,117,0,207,178,75,167,221,73,139,195,147,226,74,94,63,71,193,155,160,181,0,36,111,10,48,225,98,66,55,225,189,9,109,187,51,158,64,73,244,17,166,136,197,16,76,69,123,48,109,44,53,255,21,80,224,44,220,146,249,137,75,244,181,8,76,41,200,67,172,51,33,163,252,213,18,101,203,80,52,151,206,93,202,104,98,252,11,106,121,74,182,9,128,160,36,34,179,174,144,226,101,69,87,211,201,117,229,233,24,66,198,211,232,0,172,92,237,25,110,107,107,
41,206,34,190,179,162,243,57,202,83,38,255,75,162,244,8,69,90,167,130,252,68,196,105,144,0,170,4,187,116,170,51,239,204,49,204,201,11,230,144,22,84,20,44,122,199,147,78,3,53,137,147,121,77,133,177,160,37,12,95,154,19,115,44,204,15,230,168,74,84,82,8,41,152,108,102,135,138,225,20,159,81,121,201,37,198,233,117,128,91,50,171,42,242,203,94,0,226,155,148,38,166,145,15,86,116,80,252,181,116,243,128,215,217,88,55,35,50,175,174,155,50,208,206,65,121,77,109,92,142,204,122,218,88,62,84,175,167,141,10,214,121,22,96,83,61,196,109,169,35,158,185,184,250,46,71,84,247,213,180,14,121,50,19,90,22,122,25,193,30,92,65,86,63,4,209,142,117,249,77,16,248,126,76,135,113,155,194,9,12,51,12,105,174,203,119,172,250,247,227,58,22,0,45,202,185,51,126,164,222,218,140,43,181,191,35,223,188,23,5,25,190,52,231,107,143,231,168,238,247,99,86,36,86,207,161,39,5,25,126,143,71,114,214,229,88,169,252,253,88,230,135,138,68,118,184,
110,173,98,208,250,162,202,38,38,60,69,226,251,193,48,158,234,174,62,198,83,57,107,64,129,193,111,199,78,156,43,74,31,153,34,178,92,161,99,66,60,207,223,159,141,160,71,48,233,242,92,25,50,119,29,156,92,65,69,13,31,17,64,99,140,71,170,130,163,148,53,114,130,219,145,6,20,240,120,210,255,88,183,172,224,196,228,231,41,181,63,235,38,172,147,29,223,51,237,226,97,114,172,120,233,58,15,0,22,139,187,131,199,186,7,206,5,254,59,248,41,103,245,149,187,44,251,25,1,81,73,7,0,156,240,29,2,204,79,169,138,212,148,7,29,19,206,197,57,85,224,84,28,129,195,125,4,149,117,121,140,108,98,186,160,129,252,164,48,69,97,2,98,79,166,33,83,217,244,153,227,139,189,90,81,21,99,46,120,208,51,56,67,49,162,184,227,42,9,186,212,16,36,197,209,61,133,230,76,127,9,232,138,99,124,142,7,234,146,36,206,241,87,136,85,201,200,247,112,235,150,115,18,74,168,30,184,80,60,19,7,213,148,239,6,235,35,199,245,98,169,83,113,65,139,188,
161,66,167,37,175,101,29,121,94,146,197,206,74,230,43,116,102,56,25,147,124,135,111,135,213,232,44,97,182,150,111,22,59,22,169,196,195,183,98,60,123,110,226,181,114,0,17,23,245,247,195,191,223,159,156,95,15,239,207,14,190,68,227,158,159,49,196,21,21,243,212,85,254,64,142,36,142,102,152,121,22,59,33,38,163,150,12,38,62,147,167,117,243,12,159,68,218,35,63,143,201,147,214,252,9,98,155,142,59,139,126,123,238,11,23,172,67,12,7,166,210,176,75,226,188,117,116,38,71,30,5,173,45,28,254,96,159,124,208,158,23,158,134,14,227,188,232,164,236,103,11,83,88,235,66,34,189,244,55,20,105,96,202,215,150,114,32,89,158,244,191,130,104,23,202,39,18,227,202,26,240,231,16,109,95,127,162,56,123,6,83,47,206,98,40,204,149,39,98,73,39,123,254,85,31,65,3,145,208,74,202,49,71,137,69,107,80,253,137,166,114,107,36,246,92,180,184,129,182,90,174,77,25,231,245,213,153,234,46,54,111,145,1,159,160,198,186,29,30,103,67,165,194,137,42,195,
104,23,200,171,114,116,35,67,166,203,183,224,131,138,107,8,49,51,103,55,130,95,25,33,113,200,255,187,144,205,27,45,17,164,120,107,193,235,141,19,85,120,208,18,23,30,94,137,144,57,40,76,187,208,144,128,98,36,123,64,144,255,193,17,145,148,84,53,99,136,100,38,22,70,67,99,37,33,224,181,15,75,39,178,149,135,83,90,88,100,192,103,162,32,93,205,95,148,193,243,39,20,222,18,15,244,16,49,115,125,140,25,129,107,239,233,166,85,224,190,14,254,25,10,156,77,251,226,98,132,112,120,190,21,103,60,84,129,134,133,248,165,46,242,123,182,96,229,53,11,81,30,97,212,197,26,121,111,218,134,114,5,135,9,175,116,123,28,187,208,66,86,87,21,56,233,142,47,186,45,72,221,111,14,161,224,84,210,215,6,165,110,138,89,118,133,80,180,187,10,79,10,92,35,116,230,60,81,60,148,139,15,127,74,81,248,249,94,222,49,164,92,49,100,83,134,110,209,148,90,115,112,98,194,11,122,76,101,241,201,204,217,220,50,39,47,50,243,203,101,114,209,150,113,137,16,
169,224,67,229,26,32,19,127,136,197,219,224,103,188,16,104,75,102,201,70,233,209,92,64,188,3,181,104,79,93,116,40,227,10,31,85,229,94,227,142,25,85,84,176,10,58,231,135,3,227,119,141,44,204,160,59,231,199,255,138,6,7,160,48,169,160,245,216,90,144,125,177,44,87,160,112,20,32,193,219,13,172,26,178,89,203,218,232,134,210,133,249,194,180,63,98,26,41,255,187,32,131,153,91,218,43,179,119,188,18,123,199,43,176,247,192,175,0,248,222,252,137,13,252,194,12,138,141,250,130,28,6,89,7,25,204,4,167,190,242,185,218,132,169,112,187,23,150,93,57,204,45,216,92,135,74,133,89,204,222,39,223,96,24,110,192,177,216,82,92,145,227,160,210,106,28,39,118,95,255,88,94,101,182,93,86,66,87,129,36,54,37,137,116,235,143,104,78,220,160,231,128,91,154,157,12,29,92,250,36,79,12,135,169,77,194,11,1,152,120,28,33,27,225,181,16,12,59,244,45,55,76,189,110,130,96,196,236,183,133,250,116,32,98,184,252,25,204,200,129,58,5,135,53,114,161,
88,139,223,19,38,150,12,57,188,134,75,3,81,174,216,56,144,187,8,57,122,111,38,118,132,87,237,111,184,193,91,164,211,97,225,210,122,158,220,214,93,181,251,114,159,182,72,231,101,209,210,186,158,181,55,187,114,247,197,182,79,161,238,139,162,165,117,127,225,222,211,170,124,240,77,197,34,92,240,130,165,241,144,187,141,184,106,255,113,27,184,72,247,177,92,105,189,79,237,251,174,172,61,124,151,188,144,242,240,146,229,169,190,186,61,191,106,175,113,155,4,87,126,69,250,29,148,45,169,231,174,36,183,102,207,249,54,64,209,174,135,133,75,234,59,198,232,55,232,59,34,121,97,91,133,204,124,80,182,140,158,227,130,24,97,31,110,59,64,81,206,190,107,242,16,93,229,85,132,139,168,116,73,18,160,33,193,181,250,127,237,200,61,145,194,139,243,160,70,97,127,89,77,225,207,57,23,196,221,5,94,200,211,13,244,118,248,205,82,23,190,55,247,101,212,61,58,34,12,223,152,57,51,45,157,223,26,122,99,155,95,137,133,158,212,108,6,30,246,240,111,12,99,134,80,109,
77,52,190,204,172,85,160,128,226,37,227,96,147,175,51,43,132,224,42,8,242,136,7,225,61,91,96,237,224,71,32,128,133,61,253,161,26,45,156,121,48,100,193,25,20,198,143,75,122,244,171,215,75,196,234,90,90,179,217,107,119,119,59,63,97,124,235,231,118,171,181,111,237,52,118,93,248,235,237,104,173,17,252,125,167,109,139,192,208,223,49,50,132,215,180,246,208,89,18,209,187,94,15,138,183,161,120,27,138,183,161,120,251,93,131,200,22,196,203,56,173,138,214,233,110,73,106,7,161,179,11,37,229,179,75,135,49,19,175,200,251,5,111,5,174,176,173,252,22,176,59,135,196,123,129,137,48,168,143,103,40,145,127,229,78,237,106,112,134,180,42,39,139,42,159,232,170,98,202,30,110,203,57,187,26,185,33,202,51,126,169,224,32,234,29,54,232,155,70,172,189,131,64,78,97,66,13,79,77,177,69,8,65,220,110,156,32,241,176,57,9,190,229,187,33,141,89,176,238,87,233,156,102,175,237,77,155,252,11,254,244,206,206,48,120,251,129,124,250,4,95,123,253,190,28,194,
9,202,122,176,190,78,81,86,215,208,171,209,84,174,141,140,145,117,159,191,138,255,83,17,202,130,177,206,181,226,243,170,5,9,191,87,194,224,124,24,66,14,87,191,31,130,27,158,149,80,251,58,230,42,106,108,209,46,183,218,131,114,115,202,194,43,7,108,113,11,131,114,142,153,155,132,184,254,197,246,75,139,109,119,173,194,236,178,83,134,229,195,240,74,103,10,1,85,79,143,223,180,179,4,205,88,86,134,60,74,184,209,118,76,241,32,63,191,200,4,190,162,233,53,232,36,233,249,200,199,42,44,191,112,158,238,136,248,84,179,229,22,156,142,251,89,166,125,243,142,5,123,193,177,238,138,53,128,32,26,28,31,68,156,18,123,76,132,90,252,151,120,36,188,189,85,32,74,252,182,128,69,155,86,57,191,117,160,200,111,190,72,180,82,112,3,43,81,75,34,197,119,170,146,91,84,122,162,48,129,85,200,28,87,222,65,180,141,111,40,201,141,41,245,23,100,168,207,101,234,94,116,115,113,130,166,104,141,167,23,134,249,135,190,109,162,81,15,205,191,3,45,90,6,52,60,
53,169,171,187,99,248,96,226,126,56,156,190,97,6,150,215,29,63,216,14,243,204,49,169,12,255,194,55,94,231,58,58,30,195,191,108,145,103,253,165,248,22,236,202,219,89,105,33,158,97,126,99,44,145,44,251,116,109,188,102,230,239,154,200,8,33,114,234,201,28,179,220,123,252,112,11,22,220,176,208,122,240,218,40,93,152,229,205,240,170,12,94,36,230,14,10,193,81,219,159,97,192,18,51,60,75,185,102,47,13,86,16,17,77,168,6,32,22,77,145,65,153,251,100,153,104,206,188,8,200,48,127,62,199,140,208,73,120,225,102,6,174,100,184,253,115,74,23,29,251,137,186,232,52,20,154,108,211,156,124,52,97,129,81,137,207,59,60,89,176,138,11,60,185,104,32,14,52,226,130,162,199,213,225,192,117,117,48,104,252,67,181,121,89,173,88,84,168,75,242,93,248,74,152,67,236,78,34,139,35,177,64,193,11,216,116,246,152,155,78,56,211,191,14,239,199,92,221,48,117,116,8,255,5,233,163,248,189,154,185,136,197,235,72,108,158,225,75,13,94,77,45,52,209,45,70,
7,89,11,162,251,0,151,192,122,83,28,234,148,133,230,230,193,196,171,158,164,190,242,110,163,17,192,55,178,49,241,91,33,20,29,86,174,0,4,107,129,200,226,186,39,0,41,52,81,201,77,152,208,91,145,85,148,187,1,207,160,217,32,223,3,204,15,223,173,113,163,75,104,112,178,21,52,48,241,89,78,50,184,38,51,198,186,107,48,176,76,111,171,228,31,91,53,158,69,34,186,142,4,49,77,64,146,226,13,87,227,183,237,170,87,94,165,147,205,112,15,24,87,181,169,171,98,106,17,86,161,20,147,185,42,22,44,148,189,68,150,101,152,55,16,0,37,243,197,37,181,72,182,209,173,248,118,120,47,254,170,131,95,120,136,31,185,125,79,13,157,148,187,154,49,128,178,162,40,42,209,165,3,96,173,155,137,160,3,224,154,44,85,227,32,19,4,92,59,20,44,159,203,196,13,216,24,72,165,207,193,196,86,244,26,92,161,91,202,105,108,209,15,18,164,238,6,171,127,24,3,86,48,225,202,236,218,177,40,11,74,197,24,94,59,187,210,105,207,180,220,112,163,219,123,81,
66,90,185,82,81,82,221,121,141,236,112,72,38,108,106,112,68,157,154,24,210,137,223,11,231,42,69,97,157,151,178,140,253,235,127,157,30,13,239,47,47,250,39,95,6,225,182,218,42,89,46,43,175,252,210,160,101,60,173,196,82,180,18,115,255,198,235,193,98,93,200,114,83,178,251,179,166,203,17,203,24,91,219,255,136,45,88,200,96,240,255,245,108,124,193,