diff --git a/scripts/base/protocols/redis/main.zeek b/scripts/base/protocols/redis/main.zeek index f71044b373..42fba5b72c 100644 --- a/scripts/base/protocols/redis/main.zeek +++ b/scripts/base/protocols/redis/main.zeek @@ -11,18 +11,30 @@ export { 6379/tcp, } &redef; - type RESPData: record { - simple_string: string &optional &log; - simple_error: string &optional &log; - i: int &optional &log; - bulk_string: string &optional &log; - #array: - is_null: bool &log; - boolean: bool &optional &log; - double_: double &optional &log; - big_num: string &optional &log; - bulk_error: string &optional &log; - verbatim_string: string &optional &log; + type SetCommand: record { + key: string &log; + value: string &log; + nx: bool; + xx: bool; + get: bool; + ex: count &optional; + px: count &optional; + exat: count &optional; + pxat: count &optional; + keep_ttl: bool; + }; + + type GetCommand: record { + key: string &log; + }; + + type Command: record { + ## The raw command, exactly as parsed + raw: vector of string &log; + ## The key, if this command is known to have a key + key: string &log &optional; + ## The value, if this command is known to have a value + value: string &log &optional; }; ## Record type containing the column fields of the RESP log. @@ -33,7 +45,8 @@ export { uid: string &log; ## The connection's 4-tuple of endpoint addresses/ports. id: conn_id &log; - resp_data: RESPData &log; + ## The Redis command + cmd: Command &log; }; ## A default logging policy hook for the stream. @@ -69,12 +82,12 @@ event zeek_init() &priority=5 } # Initialize logging state. -hook set_session(c: connection) +hook set_session(c: connection, cmd: Command) { if ( c?$redis_resp ) return; - c$redis_resp = Info($ts=network_time(), $uid=c$uid, $id=c$id); + c$redis_resp = Info($ts=network_time(), $uid=c$uid, $id=c$id, $cmd=cmd); } function emit_log(c: connection) @@ -86,12 +99,10 @@ function emit_log(c: connection) delete c$redis_resp; } -# Example event defined in resp.evt. -event RESP::data(c: connection, payload: RESPData) +event RESP::command(c: connection, is_orig: bool, command: Command) { - hook set_session(c); + hook set_session(c, command); local info = c$redis_resp; - info$resp_data = payload; emit_log(c); } diff --git a/src/analyzer/protocol/redis/resp.evt b/src/analyzer/protocol/redis/resp.evt index 25cd1ebdd1..69c63c6a28 100644 --- a/src/analyzer/protocol/redis/resp.evt +++ b/src/analyzer/protocol/redis/resp.evt @@ -5,4 +5,12 @@ protocol analyzer spicy::RESP over TCP: import RESP; import Zeek_RESP; -on RESP::Data -> event RESP::data($conn, Zeek_RESP::create_data(self)); +on RESP::Array if ( Zeek_RESP::is_set(self) ) -> event RESP::set_command($conn, $is_orig, Zeek_RESP::make_set(self)); +on RESP::Array if ( Zeek_RESP::is_get(self) ) -> event RESP::get_command($conn, $is_orig, Zeek_RESP::make_get(self)); + +# Generic catch-all for commands. A command is an array of bulk strings, so we hope that +# this will catch those, but the server can provide that as well. +on RESP::Array if ( Zeek_RESP::is_command(self) ) -> event RESP::command($conn, $is_orig, Zeek_RESP::make_command(self)); + +# These are from commands that weren't serialized +on RESP::Data if ( self?.not_serialized ) -> event RESP::command($conn, $is_orig, Zeek_RESP::unserialized_command(self)); diff --git a/src/analyzer/protocol/redis/resp.spicy b/src/analyzer/protocol/redis/resp.spicy index f661a8e0bb..5c5ccb627d 100644 --- a/src/analyzer/protocol/redis/resp.spicy +++ b/src/analyzer/protocol/redis/resp.spicy @@ -1,10 +1,13 @@ module RESP; +import spicy; + public type Messages = unit { - : Data[]; + : (Data &synchronize)[]; }; public type Data = unit { + %synchronize-after=b"\x0d\x0a"; ty: uint8 &convert=DataType($$); switch ( self.ty ) { DataType::SIMPLE_STRING -> simple_string: SimpleString(False); @@ -26,6 +29,11 @@ public type Data = unit { # "Push events are encoded similarly to arrays, differing only in their # first byte" - TODO: can probably make it more obvious, though DataType::PUSH -> push: Array; + # HACK: If the type isn't recognized, this is just some random unserialized + # string until \r\n - do this by prepending the type to the remaining bytes. + # We will, however, cap this data off at 1024 bytes. This may be encrypted, we + # don't want to accept random gibberish here. + * -> not_serialized: bytes &convert=(pack(cast(self.ty), spicy::ByteOrder::Network) + $$) &until=b"\x0d\x0a" &max-size=1024; }; }; @@ -60,7 +68,7 @@ type BulkString = unit(is_error: bool) { content: bytes &size=uint64( self.length ) if ( self.length >= 0 ); # Consume last CLRF - : bytes &until=b"\x0d\x0a"; + : skip bytes &until=b"\x0d\x0a"; }; type Array = unit { @@ -71,12 +79,12 @@ type Array = unit { type Null_ = unit { # Still must consume CLRF - : bytes &until=b"\x0d\x0a"; + : skip bytes &until=b"\x0d\x0a"; }; type Boolean = unit { val: uint8 &convert=$$ == 't'; - : bytes &until=b"\x0d\x0a"; + : skip bytes &until=b"\x0d\x0a"; }; type Double = unit { diff --git a/src/analyzer/protocol/redis/zeek_resp.spicy b/src/analyzer/protocol/redis/zeek_resp.spicy index 89a163daa9..4cda131096 100644 --- a/src/analyzer/protocol/redis/zeek_resp.spicy +++ b/src/analyzer/protocol/redis/zeek_resp.spicy @@ -15,58 +15,311 @@ on RESP::Data::%error { zeek::reject_protocol("error while parsing RESP data"); } -type ZeekData = tuple< - optional, - optional, - optional, - optional, - #optional>, # TODO: This segfaults because recursive type :( - bool, - optional, - optional, - optional, - optional, - optional, +type KnownCommand = enum { + APPEND, + BITCOUNT, + BITFIELD, + BITFIELD_RO, + BITOP, + BITPOS, + BLMPOP, + BLPOP, + BRPOP, + COPY, + DECR, + DECRBY, + DEL, + DUMP, + EXISTS, + EXPIRE, + EXPIREAT, + EXPIRETIME, + GET, + GETBIT, + GETDEL, + GETEX, + GETRANGE, + GETSET, + HDEL, + HGET, + HSET, + INCR, + INCRBY, + KEYS, + MGET, + MOVE, + MSET, + PERSIST, + RENAME, + SET, + STRLEN, + TTL, + TYPE, +}; + +# Determines whether the structure of the array is a command. A command is just an array +# of bulk strings, so that's what we're looking for. +# +# TODO: Really commands will only go from client->server, so maybe encode that somehow? +public function is_command(arr: RESP::Array): bool { + if (arr.num_elements < 1) + return False; + + return True; +} + +type Command = tuple< + # raw command + vector, + # key + optional, + # value + optional, >; -public function create_data(data: RESP::Data): ZeekData { - local simple_string: optional; - local simple_error: optional; - local i: optional; - local bulk_string: optional; - #local array: optional>; - local null: bool; - local boolean: optional; - local double: optional; - local big_num: optional; - local bulk_error: optional; - local verbatim_string: optional; - if (data?.simple_string) - simple_string = data.simple_string.content; - if (data?.simple_error) - simple_error = data.simple_error.content; - if (data?.integer) - i = data.integer.int; - if (data?.bulk_string) - bulk_string = data.bulk_string.content; - #if (data?.array) { - # for ( data in data.array.elements ) { - # array.push_back(data); - # } - #} - if (data?.null) - null = True; - else - null = False; - if (data?.boolean) - boolean = data.boolean.val; - if (data?.double) - double = data.double.val; - if (data?.big_num) - big_num = data.big_num.val; - if (data?.bulk_error) - bulk_error = data.bulk_error.content; - if (data?.verbatim_string) - verbatim_string = data.verbatim_string.content; - return (simple_string, simple_error, i, bulk_string, null, boolean, double, big_num, bulk_error, verbatim_string); +# This just assumes all elements in the array is a bulk string and puts them in a vector +public function make_command(arr: RESP::Array): Command { + local v: vector; + for ( ele in arr.elements ) { + # TODO: Stringify the other data too. Apparently commands *can* have other stuff + # such as SUBSCRIBE, which will magically put an integer after it. + if ( ele?.bulk_string ) + v.push_back(ele.bulk_string.content); + } + return parse_command(v); +} + +public function unserialized_command(unserialized: RESP::Data): Command { + # Only call this if it's unserialized :) + assert unserialized?.not_serialized; + local content = unserialized.not_serialized; + # TODO: escaping/strings? For example, string "Hi there" should be one element. + return parse_command(content.split()); +} + +# Parses the vector of bytes to get a Command object +function parse_command(raw: vector): Command { + assert |raw| >= 1; + local parsed: Command = (raw, Null, Null); + local cmd = command_from(raw[0]); + if ( ! cmd ) + return parsed; + + if ( |raw| >= 2 ) { + switch ( *cmd ) { + case KnownCommand::KEYS: + parsed[2] = raw[1]; + case KnownCommand::APPEND, KnownCommand::BITCOUNT, KnownCommand::BITFIELD, + KnownCommand::BITFIELD_RO, KnownCommand::BITPOS, KnownCommand::BLPOP, + KnownCommand::BRPOP, KnownCommand::COPY, KnownCommand::DECR, + KnownCommand::DECRBY, KnownCommand::DEL, KnownCommand::DUMP, + KnownCommand::EXISTS, KnownCommand::EXPIRE, KnownCommand::EXPIREAT, + KnownCommand::EXPIRETIME, KnownCommand::GET, KnownCommand::GETBIT, + KnownCommand::GETDEL, KnownCommand::GETEX, KnownCommand::GETRANGE, + KnownCommand::GETSET, KnownCommand::HDEL, KnownCommand::HGET, + KnownCommand::HSET, KnownCommand::INCR, KnownCommand::INCRBY, + KnownCommand::MGET, KnownCommand::MOVE, KnownCommand::MSET, + KnownCommand::PERSIST, KnownCommand::RENAME, KnownCommand::SET, + KnownCommand::STRLEN, KnownCommand::TTL, KnownCommand::TYPE: + parsed[1] = raw[1]; + default: (); + } + } + + if ( |raw| >= 3 ) { + switch ( *cmd ) { + case KnownCommand::SET, KnownCommand::APPEND, KnownCommand::DECRBY, + KnownCommand::EXPIRE, KnownCommand::EXPIREAT, KnownCommand::GETBIT, + KnownCommand::GETSET, KnownCommand::HDEL, KnownCommand::HGET, + KnownCommand::INCRBY, KnownCommand::MOVE, KnownCommand::MSET, + KnownCommand::RENAME: + parsed[2] = raw[2]; + # Op first, destination second, then a list of keys. Just log dest + case KnownCommand::BITOP: parsed[1] = raw[2]; + default: (); + } + } + + if ( |raw| >= 4 ) { + switch ( *cmd ) { + # timeout, numkeys, then key + case KnownCommand::BLMPOP: parsed[1] = raw[3]; + default: (); + } + } + + return parsed; +} + +function command_from(cmd_bytes: bytes): optional { + local cmd: optional = Null; + switch (cmd_bytes.lower()) { + case b"set": cmd = KnownCommand::SET; + case b"append": cmd = KnownCommand::APPEND; + case b"bitcount": cmd = KnownCommand::BITCOUNT; + case b"bitfield": cmd = KnownCommand::BITFIELD; + case b"bitfield_ro": cmd = KnownCommand::BITFIELD_RO; + case b"bitop": cmd = KnownCommand::BITOP; + case b"bitpos": cmd = KnownCommand::BITPOS; + case b"blmpop": cmd = KnownCommand::BLMPOP; + case b"blpop": cmd = KnownCommand::BLPOP; + case b"brpop": cmd = KnownCommand::BRPOP; + case b"copy": cmd = KnownCommand::COPY; + case b"decr": cmd = KnownCommand::DECR; + case b"decrby": cmd = KnownCommand::DECRBY; + case b"del": cmd = KnownCommand::DEL; + case b"dump": cmd = KnownCommand::DUMP; + case b"exists": cmd = KnownCommand::EXISTS; + case b"expire": cmd = KnownCommand::EXPIRE; + case b"expireat": cmd = KnownCommand::EXPIREAT; + case b"expiretime": cmd = KnownCommand::EXPIRETIME; + case b"expiretime": cmd = KnownCommand::EXPIRETIME; + case b"get": cmd = KnownCommand::GET; + case b"getbit": cmd = KnownCommand::GETBIT; + case b"getdel": cmd = KnownCommand::GETDEL; + case b"getex": cmd = KnownCommand::GETEX; + case b"getrange": cmd = KnownCommand::GETRANGE; + case b"getset": cmd = KnownCommand::GETSET; + case b"hdel": cmd = KnownCommand::HDEL; + case b"hget": cmd = KnownCommand::HGET; + case b"hset": cmd = KnownCommand::HSET; + case b"incr": cmd = KnownCommand::INCR; + case b"incrby": cmd = KnownCommand::INCRBY; + case b"keys": cmd = KnownCommand::KEYS; + case b"mget": cmd = KnownCommand::MGET; + case b"move": cmd = KnownCommand::MOVE; + case b"mset": cmd = KnownCommand::MSET; + case b"persist": cmd = KnownCommand::PERSIST; + case b"rename": cmd = KnownCommand::RENAME; + case b"strlen": cmd = KnownCommand::STRLEN; + case b"ttl": cmd = KnownCommand::TTL; + case b"type": cmd = KnownCommand::TYPE; + default: cmd = Null; + } + + return cmd; +} + +type Set = tuple< + # key + bytes, + # value + bytes, + # NX + bool, + # XX + bool, + # GET + bool, + # EX + optional, + # PX + optional, + # EXAT + optional, + # PXAT + optional, + # KEEPTTL + bool, +>; + +public function make_set(arr: RESP::Array): Set { + assert arr.num_elements >= 3 : "Must have at least 3 elements in SET"; + local key = arr.elements[1].bulk_string.content; + local value = arr.elements[2].bulk_string.content; + local nx = False; + local xx = False; + local get = False; + local ex: optional = Null; + local px: optional = Null; + local exat: optional = Null; + local pxat: optional = Null; + local keep_ttl = False; + local i = 3; + local elements = cast(arr.num_elements); + while ( i < elements ) { + # All array elements in a command will be a bulk string by default + if ( ! arr.elements[i]?.bulk_string ) { + ++i; + continue; + } + + local content = arr.elements[i].bulk_string.content; + switch (content.lower()) { + case b"nx": nx = True; + case b"xx": xx = True; + case b"get": get = True; + case b"ex": { + ++i; + if ( i >= elements || ! arr.elements[i]?.bulk_string ) + break; + local inner = arr.elements[i].bulk_string.content; + ex = inner.to_uint(); + } + case b"px": { + ++i; + if ( i >= elements || ! arr.elements[i]?.bulk_string ) + break; + local inner = arr.elements[i].bulk_string.content; + px = inner.to_uint(); + } + case b"exat": { + ++i; + if ( i >= elements || ! arr.elements[i]?.bulk_string ) + break; + local inner = arr.elements[i].bulk_string.content; + exat = inner.to_uint(); + } + case b"pxat": { + ++i; + if ( i >= elements || ! arr.elements[i]?.bulk_string ) + break; + local inner = arr.elements[i].bulk_string.content; + pxat = inner.to_uint(); + } + case b"keepttl": keep_ttl = True; + default: (); + } + + ++i; + } + return (key, value, nx, xx, get, ex, px, exat, pxat, keep_ttl); +} + +# Convenience method to avoid comparison with an optional in the evt +public function is_set(arr: RESP::Array): bool { + # SET key value + if (arr.num_elements < 3) + return False; + + local first = arr.elements[0]; + if (!first?.bulk_string) + return False; + + local cmd_bytes = first.bulk_string.content; + + local cmd = command_from(cmd_bytes); + return cmd && (*cmd == KnownCommand::SET); +} + +type Get = tuple; + +public function make_get(arr: RESP::Array): Get { + return (arr.elements[1].bulk_string.content, ); +} + +# Convenience method to avoid comparison with an optional in the evt +public function is_get(arr: RESP::Array): bool { + # GET key + if (arr.num_elements != 2) + return False; + + local first = arr.elements[0]; + if (!first?.bulk_string) + return False; + + local cmd_bytes = first.bulk_string.content; + + local cmd = command_from(cmd_bytes); + return cmd && (*cmd == KnownCommand::GET); } diff --git a/testing/btest/Baseline/scripts.base.protocols.redis.bulk/output b/testing/btest/Baseline/scripts.base.protocols.redis.bulk/output new file mode 100644 index 0000000000..1ffdbd717b --- /dev/null +++ b/testing/btest/Baseline/scripts.base.protocols.redis.bulk/output @@ -0,0 +1,1001 @@ +### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63. +SET: Key0 Value0 +SET: Key1 Value1 +SET: Key2 Value2 +SET: Key3 Value3 +SET: Key4 Value4 +SET: Key5 Value5 +SET: Key6 Value6 +SET: Key7 Value7 +SET: Key8 Value8 +SET: Key9 Value9 +SET: Key10 Value10 +SET: Key11 Value11 +SET: Key12 Value12 +SET: Key13 Value13 +SET: Key14 Value14 +SET: Key15 Value15 +SET: Key16 Value16 +SET: Key17 Value17 +SET: Key18 Value18 +SET: Key19 Value19 +SET: Key20 Value20 +SET: Key21 Value21 +SET: Key22 Value22 +SET: Key23 Value23 +SET: Key24 Value24 +SET: Key25 Value25 +SET: Key26 Value26 +SET: Key27 Value27 +SET: Key28 Value28 +SET: Key29 Value29 +SET: Key30 Value30 +SET: Key31 Value31 +SET: Key32 Value32 +SET: Key33 Value33 +SET: Key34 Value34 +SET: Key35 Value35 +SET: Key36 Value36 +SET: Key37 Value37 +SET: Key38 Value38 +SET: Key39 Value39 +SET: Key40 Value40 +SET: Key41 Value41 +SET: Key42 Value42 +SET: Key43 Value43 +SET: Key44 Value44 +SET: Key45 Value45 +SET: Key46 Value46 +SET: Key47 Value47 +SET: Key48 Value48 +SET: Key49 Value49 +SET: Key50 Value50 +SET: Key51 Value51 +SET: Key52 Value52 +SET: Key53 Value53 +SET: Key54 Value54 +SET: Key55 Value55 +SET: Key56 Value56 +SET: Key57 Value57 +SET: Key58 Value58 +SET: Key59 Value59 +SET: Key60 Value60 +SET: Key61 Value61 +SET: Key62 Value62 +SET: Key63 Value63 +SET: Key64 Value64 +SET: Key65 Value65 +SET: Key66 Value66 +SET: Key67 Value67 +SET: Key68 Value68 +SET: Key69 Value69 +SET: Key70 Value70 +SET: Key71 Value71 +SET: Key72 Value72 +SET: Key73 Value73 +SET: Key74 Value74 +SET: Key75 Value75 +SET: Key76 Value76 +SET: Key77 Value77 +SET: Key78 Value78 +SET: Key79 Value79 +SET: Key80 Value80 +SET: Key81 Value81 +SET: Key82 Value82 +SET: Key83 Value83 +SET: Key84 Value84 +SET: Key85 Value85 +SET: Key86 Value86 +SET: Key87 Value87 +SET: Key88 Value88 +SET: Key89 Value89 +SET: Key90 Value90 +SET: Key91 Value91 +SET: Key92 Value92 +SET: Key93 Value93 +SET: Key94 Value94 +SET: Key95 Value95 +SET: Key96 Value96 +SET: Key97 Value97 +SET: Key98 Value98 +SET: Key99 Value99 +SET: Key100 Value100 +SET: Key101 Value101 +SET: Key102 Value102 +SET: Key103 Value103 +SET: Key104 Value104 +SET: Key105 Value105 +SET: Key106 Value106 +SET: Key107 Value107 +SET: Key108 Value108 +SET: Key109 Value109 +SET: Key110 Value110 +SET: Key111 Value111 +SET: Key112 Value112 +SET: Key113 Value113 +SET: Key114 Value114 +SET: Key115 Value115 +SET: Key116 Value116 +SET: Key117 Value117 +SET: Key118 Value118 +SET: Key119 Value119 +SET: Key120 Value120 +SET: Key121 Value121 +SET: Key122 Value122 +SET: Key123 Value123 +SET: Key124 Value124 +SET: Key125 Value125 +SET: Key126 Value126 +SET: Key127 Value127 +SET: Key128 Value128 +SET: Key129 Value129 +SET: Key130 Value130 +SET: Key131 Value131 +SET: Key132 Value132 +SET: Key133 Value133 +SET: Key134 Value134 +SET: Key135 Value135 +SET: Key136 Value136 +SET: Key137 Value137 +SET: Key138 Value138 +SET: Key139 Value139 +SET: Key140 Value140 +SET: Key141 Value141 +SET: Key142 Value142 +SET: Key143 Value143 +SET: Key144 Value144 +SET: Key145 Value145 +SET: Key146 Value146 +SET: Key147 Value147 +SET: Key148 Value148 +SET: Key149 Value149 +SET: Key150 Value150 +SET: Key151 Value151 +SET: Key152 Value152 +SET: Key153 Value153 +SET: Key154 Value154 +SET: Key155 Value155 +SET: Key156 Value156 +SET: Key157 Value157 +SET: Key158 Value158 +SET: Key159 Value159 +SET: Key160 Value160 +SET: Key161 Value161 +SET: Key162 Value162 +SET: Key163 Value163 +SET: Key164 Value164 +SET: Key165 Value165 +SET: Key166 Value166 +SET: Key167 Value167 +SET: Key168 Value168 +SET: Key169 Value169 +SET: Key170 Value170 +SET: Key171 Value171 +SET: Key172 Value172 +SET: Key173 Value173 +SET: Key174 Value174 +SET: Key175 Value175 +SET: Key176 Value176 +SET: Key177 Value177 +SET: Key178 Value178 +SET: Key179 Value179 +SET: Key180 Value180 +SET: Key181 Value181 +SET: Key182 Value182 +SET: Key183 Value183 +SET: Key184 Value184 +SET: Key185 Value185 +SET: Key186 Value186 +SET: Key187 Value187 +SET: Key188 Value188 +SET: Key189 Value189 +SET: Key190 Value190 +SET: Key191 Value191 +SET: Key192 Value192 +SET: Key193 Value193 +SET: Key194 Value194 +SET: Key195 Value195 +SET: Key196 Value196 +SET: Key197 Value197 +SET: Key198 Value198 +SET: Key199 Value199 +SET: Key200 Value200 +SET: Key201 Value201 +SET: Key202 Value202 +SET: Key203 Value203 +SET: Key204 Value204 +SET: Key205 Value205 +SET: Key206 Value206 +SET: Key207 Value207 +SET: Key208 Value208 +SET: Key209 Value209 +SET: Key210 Value210 +SET: Key211 Value211 +SET: Key212 Value212 +SET: Key213 Value213 +SET: Key214 Value214 +SET: Key215 Value215 +SET: Key216 Value216 +SET: Key217 Value217 +SET: Key218 Value218 +SET: Key219 Value219 +SET: Key220 Value220 +SET: Key221 Value221 +SET: Key222 Value222 +SET: Key223 Value223 +SET: Key224 Value224 +SET: Key225 Value225 +SET: Key226 Value226 +SET: Key227 Value227 +SET: Key228 Value228 +SET: Key229 Value229 +SET: Key230 Value230 +SET: Key231 Value231 +SET: Key232 Value232 +SET: Key233 Value233 +SET: Key234 Value234 +SET: Key235 Value235 +SET: Key236 Value236 +SET: Key237 Value237 +SET: Key238 Value238 +SET: Key239 Value239 +SET: Key240 Value240 +SET: Key241 Value241 +SET: Key242 Value242 +SET: Key243 Value243 +SET: Key244 Value244 +SET: Key245 Value245 +SET: Key246 Value246 +SET: Key247 Value247 +SET: Key248 Value248 +SET: Key249 Value249 +SET: Key250 Value250 +SET: Key251 Value251 +SET: Key252 Value252 +SET: Key253 Value253 +SET: Key254 Value254 +SET: Key255 Value255 +SET: Key256 Value256 +SET: Key257 Value257 +SET: Key258 Value258 +SET: Key259 Value259 +SET: Key260 Value260 +SET: Key261 Value261 +SET: Key262 Value262 +SET: Key263 Value263 +SET: Key264 Value264 +SET: Key265 Value265 +SET: Key266 Value266 +SET: Key267 Value267 +SET: Key268 Value268 +SET: Key269 Value269 +SET: Key270 Value270 +SET: Key271 Value271 +SET: Key272 Value272 +SET: Key273 Value273 +SET: Key274 Value274 +SET: Key275 Value275 +SET: Key276 Value276 +SET: Key277 Value277 +SET: Key278 Value278 +SET: Key279 Value279 +SET: Key280 Value280 +SET: Key281 Value281 +SET: Key282 Value282 +SET: Key283 Value283 +SET: Key284 Value284 +SET: Key285 Value285 +SET: Key286 Value286 +SET: Key287 Value287 +SET: Key288 Value288 +SET: Key289 Value289 +SET: Key290 Value290 +SET: Key291 Value291 +SET: Key292 Value292 +SET: Key293 Value293 +SET: Key294 Value294 +SET: Key295 Value295 +SET: Key296 Value296 +SET: Key297 Value297 +SET: Key298 Value298 +SET: Key299 Value299 +SET: Key300 Value300 +SET: Key301 Value301 +SET: Key302 Value302 +SET: Key303 Value303 +SET: Key304 Value304 +SET: Key305 Value305 +SET: Key306 Value306 +SET: Key307 Value307 +SET: Key308 Value308 +SET: Key309 Value309 +SET: Key310 Value310 +SET: Key311 Value311 +SET: Key312 Value312 +SET: Key313 Value313 +SET: Key314 Value314 +SET: Key315 Value315 +SET: Key316 Value316 +SET: Key317 Value317 +SET: Key318 Value318 +SET: Key319 Value319 +SET: Key320 Value320 +SET: Key321 Value321 +SET: Key322 Value322 +SET: Key323 Value323 +SET: Key324 Value324 +SET: Key325 Value325 +SET: Key326 Value326 +SET: Key327 Value327 +SET: Key328 Value328 +SET: Key329 Value329 +SET: Key330 Value330 +SET: Key331 Value331 +SET: Key332 Value332 +SET: Key333 Value333 +SET: Key334 Value334 +SET: Key335 Value335 +SET: Key336 Value336 +SET: Key337 Value337 +SET: Key338 Value338 +SET: Key339 Value339 +SET: Key340 Value340 +SET: Key341 Value341 +SET: Key342 Value342 +SET: Key343 Value343 +SET: Key344 Value344 +SET: Key345 Value345 +SET: Key346 Value346 +SET: Key347 Value347 +SET: Key348 Value348 +SET: Key349 Value349 +SET: Key350 Value350 +SET: Key351 Value351 +SET: Key352 Value352 +SET: Key353 Value353 +SET: Key354 Value354 +SET: Key355 Value355 +SET: Key356 Value356 +SET: Key357 Value357 +SET: Key358 Value358 +SET: Key359 Value359 +SET: Key360 Value360 +SET: Key361 Value361 +SET: Key362 Value362 +SET: Key363 Value363 +SET: Key364 Value364 +SET: Key365 Value365 +SET: Key366 Value366 +SET: Key367 Value367 +SET: Key368 Value368 +SET: Key369 Value369 +SET: Key370 Value370 +SET: Key371 Value371 +SET: Key372 Value372 +SET: Key373 Value373 +SET: Key374 Value374 +SET: Key375 Value375 +SET: Key376 Value376 +SET: Key377 Value377 +SET: Key378 Value378 +SET: Key379 Value379 +SET: Key380 Value380 +SET: Key381 Value381 +SET: Key382 Value382 +SET: Key383 Value383 +SET: Key384 Value384 +SET: Key385 Value385 +SET: Key386 Value386 +SET: Key387 Value387 +SET: Key388 Value388 +SET: Key389 Value389 +SET: Key390 Value390 +SET: Key391 Value391 +SET: Key392 Value392 +SET: Key393 Value393 +SET: Key394 Value394 +SET: Key395 Value395 +SET: Key396 Value396 +SET: Key397 Value397 +SET: Key398 Value398 +SET: Key399 Value399 +SET: Key400 Value400 +SET: Key401 Value401 +SET: Key402 Value402 +SET: Key403 Value403 +SET: Key404 Value404 +SET: Key405 Value405 +SET: Key406 Value406 +SET: Key407 Value407 +SET: Key408 Value408 +SET: Key409 Value409 +SET: Key410 Value410 +SET: Key411 Value411 +SET: Key412 Value412 +SET: Key413 Value413 +SET: Key414 Value414 +SET: Key415 Value415 +SET: Key416 Value416 +SET: Key417 Value417 +SET: Key418 Value418 +SET: Key419 Value419 +SET: Key420 Value420 +SET: Key421 Value421 +SET: Key422 Value422 +SET: Key423 Value423 +SET: Key424 Value424 +SET: Key425 Value425 +SET: Key426 Value426 +SET: Key427 Value427 +SET: Key428 Value428 +SET: Key429 Value429 +SET: Key430 Value430 +SET: Key431 Value431 +SET: Key432 Value432 +SET: Key433 Value433 +SET: Key434 Value434 +SET: Key435 Value435 +SET: Key436 Value436 +SET: Key437 Value437 +SET: Key438 Value438 +SET: Key439 Value439 +SET: Key440 Value440 +SET: Key441 Value441 +SET: Key442 Value442 +SET: Key443 Value443 +SET: Key444 Value444 +SET: Key445 Value445 +SET: Key446 Value446 +SET: Key447 Value447 +SET: Key448 Value448 +SET: Key449 Value449 +SET: Key450 Value450 +SET: Key451 Value451 +SET: Key452 Value452 +SET: Key453 Value453 +SET: Key454 Value454 +SET: Key455 Value455 +SET: Key456 Value456 +SET: Key457 Value457 +SET: Key458 Value458 +SET: Key459 Value459 +SET: Key460 Value460 +SET: Key461 Value461 +SET: Key462 Value462 +SET: Key463 Value463 +SET: Key464 Value464 +SET: Key465 Value465 +SET: Key466 Value466 +SET: Key467 Value467 +SET: Key468 Value468 +SET: Key469 Value469 +SET: Key470 Value470 +SET: Key471 Value471 +SET: Key472 Value472 +SET: Key473 Value473 +SET: Key474 Value474 +SET: Key475 Value475 +SET: Key476 Value476 +SET: Key477 Value477 +SET: Key478 Value478 +SET: Key479 Value479 +SET: Key480 Value480 +SET: Key481 Value481 +SET: Key482 Value482 +SET: Key483 Value483 +SET: Key484 Value484 +SET: Key485 Value485 +SET: Key486 Value486 +SET: Key487 Value487 +SET: Key488 Value488 +SET: Key489 Value489 +SET: Key490 Value490 +SET: Key491 Value491 +SET: Key492 Value492 +SET: Key493 Value493 +SET: Key494 Value494 +SET: Key495 Value495 +SET: Key496 Value496 +SET: Key497 Value497 +SET: Key498 Value498 +SET: Key499 Value499 +SET: Key500 Value500 +SET: Key501 Value501 +SET: Key502 Value502 +SET: Key503 Value503 +SET: Key504 Value504 +SET: Key505 Value505 +SET: Key506 Value506 +SET: Key507 Value507 +SET: Key508 Value508 +SET: Key509 Value509 +SET: Key510 Value510 +SET: Key511 Value511 +SET: Key512 Value512 +SET: Key513 Value513 +SET: Key514 Value514 +SET: Key515 Value515 +SET: Key516 Value516 +SET: Key517 Value517 +SET: Key518 Value518 +SET: Key519 Value519 +SET: Key520 Value520 +SET: Key521 Value521 +SET: Key522 Value522 +SET: Key523 Value523 +SET: Key524 Value524 +SET: Key525 Value525 +SET: Key526 Value526 +SET: Key527 Value527 +SET: Key528 Value528 +SET: Key529 Value529 +SET: Key530 Value530 +SET: Key531 Value531 +SET: Key532 Value532 +SET: Key533 Value533 +SET: Key534 Value534 +SET: Key535 Value535 +SET: Key536 Value536 +SET: Key537 Value537 +SET: Key538 Value538 +SET: Key539 Value539 +SET: Key540 Value540 +SET: Key541 Value541 +SET: Key542 Value542 +SET: Key543 Value543 +SET: Key544 Value544 +SET: Key545 Value545 +SET: Key546 Value546 +SET: Key547 Value547 +SET: Key548 Value548 +SET: Key549 Value549 +SET: Key550 Value550 +SET: Key551 Value551 +SET: Key552 Value552 +SET: Key553 Value553 +SET: Key554 Value554 +SET: Key555 Value555 +SET: Key556 Value556 +SET: Key557 Value557 +SET: Key558 Value558 +SET: Key559 Value559 +SET: Key560 Value560 +SET: Key561 Value561 +SET: Key562 Value562 +SET: Key563 Value563 +SET: Key564 Value564 +SET: Key565 Value565 +SET: Key566 Value566 +SET: Key567 Value567 +SET: Key568 Value568 +SET: Key569 Value569 +SET: Key570 Value570 +SET: Key571 Value571 +SET: Key572 Value572 +SET: Key573 Value573 +SET: Key574 Value574 +SET: Key575 Value575 +SET: Key576 Value576 +SET: Key577 Value577 +SET: Key578 Value578 +SET: Key579 Value579 +SET: Key580 Value580 +SET: Key581 Value581 +SET: Key582 Value582 +SET: Key583 Value583 +SET: Key584 Value584 +SET: Key585 Value585 +SET: Key586 Value586 +SET: Key587 Value587 +SET: Key588 Value588 +SET: Key589 Value589 +SET: Key590 Value590 +SET: Key591 Value591 +SET: Key592 Value592 +SET: Key593 Value593 +SET: Key594 Value594 +SET: Key595 Value595 +SET: Key596 Value596 +SET: Key597 Value597 +SET: Key598 Value598 +SET: Key599 Value599 +SET: Key600 Value600 +SET: Key601 Value601 +SET: Key602 Value602 +SET: Key603 Value603 +SET: Key604 Value604 +SET: Key605 Value605 +SET: Key606 Value606 +SET: Key607 Value607 +SET: Key608 Value608 +SET: Key609 Value609 +SET: Key610 Value610 +SET: Key611 Value611 +SET: Key612 Value612 +SET: Key613 Value613 +SET: Key614 Value614 +SET: Key615 Value615 +SET: Key616 Value616 +SET: Key617 Value617 +SET: Key618 Value618 +SET: Key619 Value619 +SET: Key620 Value620 +SET: Key621 Value621 +SET: Key622 Value622 +SET: Key623 Value623 +SET: Key624 Value624 +SET: Key625 Value625 +SET: Key626 Value626 +SET: Key627 Value627 +SET: Key628 Value628 +SET: Key629 Value629 +SET: Key630 Value630 +SET: Key631 Value631 +SET: Key632 Value632 +SET: Key633 Value633 +SET: Key634 Value634 +SET: Key635 Value635 +SET: Key636 Value636 +SET: Key637 Value637 +SET: Key638 Value638 +SET: Key639 Value639 +SET: Key640 Value640 +SET: Key641 Value641 +SET: Key642 Value642 +SET: Key643 Value643 +SET: Key644 Value644 +SET: Key645 Value645 +SET: Key646 Value646 +SET: Key647 Value647 +SET: Key648 Value648 +SET: Key649 Value649 +SET: Key650 Value650 +SET: Key651 Value651 +SET: Key652 Value652 +SET: Key653 Value653 +SET: Key654 Value654 +SET: Key655 Value655 +SET: Key656 Value656 +SET: Key657 Value657 +SET: Key658 Value658 +SET: Key659 Value659 +SET: Key660 Value660 +SET: Key661 Value661 +SET: Key662 Value662 +SET: Key663 Value663 +SET: Key664 Value664 +SET: Key665 Value665 +SET: Key666 Value666 +SET: Key667 Value667 +SET: Key668 Value668 +SET: Key669 Value669 +SET: Key670 Value670 +SET: Key671 Value671 +SET: Key672 Value672 +SET: Key673 Value673 +SET: Key674 Value674 +SET: Key675 Value675 +SET: Key676 Value676 +SET: Key677 Value677 +SET: Key678 Value678 +SET: Key679 Value679 +SET: Key680 Value680 +SET: Key681 Value681 +SET: Key682 Value682 +SET: Key683 Value683 +SET: Key684 Value684 +SET: Key685 Value685 +SET: Key686 Value686 +SET: Key687 Value687 +SET: Key688 Value688 +SET: Key689 Value689 +SET: Key690 Value690 +SET: Key691 Value691 +SET: Key692 Value692 +SET: Key693 Value693 +SET: Key694 Value694 +SET: Key695 Value695 +SET: Key696 Value696 +SET: Key697 Value697 +SET: Key698 Value698 +SET: Key699 Value699 +SET: Key700 Value700 +SET: Key701 Value701 +SET: Key702 Value702 +SET: Key703 Value703 +SET: Key704 Value704 +SET: Key705 Value705 +SET: Key706 Value706 +SET: Key707 Value707 +SET: Key708 Value708 +SET: Key709 Value709 +SET: Key710 Value710 +SET: Key711 Value711 +SET: Key712 Value712 +SET: Key713 Value713 +SET: Key714 Value714 +SET: Key715 Value715 +SET: Key716 Value716 +SET: Key717 Value717 +SET: Key718 Value718 +SET: Key719 Value719 +SET: Key720 Value720 +SET: Key721 Value721 +SET: Key722 Value722 +SET: Key723 Value723 +SET: Key724 Value724 +SET: Key725 Value725 +SET: Key726 Value726 +SET: Key727 Value727 +SET: Key728 Value728 +SET: Key729 Value729 +SET: Key730 Value730 +SET: Key731 Value731 +SET: Key732 Value732 +SET: Key733 Value733 +SET: Key734 Value734 +SET: Key735 Value735 +SET: Key736 Value736 +SET: Key737 Value737 +SET: Key738 Value738 +SET: Key739 Value739 +SET: Key740 Value740 +SET: Key741 Value741 +SET: Key742 Value742 +SET: Key743 Value743 +SET: Key744 Value744 +SET: Key745 Value745 +SET: Key746 Value746 +SET: Key747 Value747 +SET: Key748 Value748 +SET: Key749 Value749 +SET: Key750 Value750 +SET: Key751 Value751 +SET: Key752 Value752 +SET: Key753 Value753 +SET: Key754 Value754 +SET: Key755 Value755 +SET: Key756 Value756 +SET: Key757 Value757 +SET: Key758 Value758 +SET: Key759 Value759 +SET: Key760 Value760 +SET: Key761 Value761 +SET: Key762 Value762 +SET: Key763 Value763 +SET: Key764 Value764 +SET: Key765 Value765 +SET: Key766 Value766 +SET: Key767 Value767 +SET: Key768 Value768 +SET: Key769 Value769 +SET: Key770 Value770 +SET: Key771 Value771 +SET: Key772 Value772 +SET: Key773 Value773 +SET: Key774 Value774 +SET: Key775 Value775 +SET: Key776 Value776 +SET: Key777 Value777 +SET: Key778 Value778 +SET: Key779 Value779 +SET: Key780 Value780 +SET: Key781 Value781 +SET: Key782 Value782 +SET: Key783 Value783 +SET: Key784 Value784 +SET: Key785 Value785 +SET: Key786 Value786 +SET: Key787 Value787 +SET: Key788 Value788 +SET: Key789 Value789 +SET: Key790 Value790 +SET: Key791 Value791 +SET: Key792 Value792 +SET: Key793 Value793 +SET: Key794 Value794 +SET: Key795 Value795 +SET: Key796 Value796 +SET: Key797 Value797 +SET: Key798 Value798 +SET: Key799 Value799 +SET: Key800 Value800 +SET: Key801 Value801 +SET: Key802 Value802 +SET: Key803 Value803 +SET: Key804 Value804 +SET: Key805 Value805 +SET: Key806 Value806 +SET: Key807 Value807 +SET: Key808 Value808 +SET: Key809 Value809 +SET: Key810 Value810 +SET: Key811 Value811 +SET: Key812 Value812 +SET: Key813 Value813 +SET: Key814 Value814 +SET: Key815 Value815 +SET: Key816 Value816 +SET: Key817 Value817 +SET: Key818 Value818 +SET: Key819 Value819 +SET: Key820 Value820 +SET: Key821 Value821 +SET: Key822 Value822 +SET: Key823 Value823 +SET: Key824 Value824 +SET: Key825 Value825 +SET: Key826 Value826 +SET: Key827 Value827 +SET: Key828 Value828 +SET: Key829 Value829 +SET: Key830 Value830 +SET: Key831 Value831 +SET: Key832 Value832 +SET: Key833 Value833 +SET: Key834 Value834 +SET: Key835 Value835 +SET: Key836 Value836 +SET: Key837 Value837 +SET: Key838 Value838 +SET: Key839 Value839 +SET: Key840 Value840 +SET: Key841 Value841 +SET: Key842 Value842 +SET: Key843 Value843 +SET: Key844 Value844 +SET: Key845 Value845 +SET: Key846 Value846 +SET: Key847 Value847 +SET: Key848 Value848 +SET: Key849 Value849 +SET: Key850 Value850 +SET: Key851 Value851 +SET: Key852 Value852 +SET: Key853 Value853 +SET: Key854 Value854 +SET: Key855 Value855 +SET: Key856 Value856 +SET: Key857 Value857 +SET: Key858 Value858 +SET: Key859 Value859 +SET: Key860 Value860 +SET: Key861 Value861 +SET: Key862 Value862 +SET: Key863 Value863 +SET: Key864 Value864 +SET: Key865 Value865 +SET: Key866 Value866 +SET: Key867 Value867 +SET: Key868 Value868 +SET: Key869 Value869 +SET: Key870 Value870 +SET: Key871 Value871 +SET: Key872 Value872 +SET: Key873 Value873 +SET: Key874 Value874 +SET: Key875 Value875 +SET: Key876 Value876 +SET: Key877 Value877 +SET: Key878 Value878 +SET: Key879 Value879 +SET: Key880 Value880 +SET: Key881 Value881 +SET: Key882 Value882 +SET: Key883 Value883 +SET: Key884 Value884 +SET: Key885 Value885 +SET: Key886 Value886 +SET: Key887 Value887 +SET: Key888 Value888 +SET: Key889 Value889 +SET: Key890 Value890 +SET: Key891 Value891 +SET: Key892 Value892 +SET: Key893 Value893 +SET: Key894 Value894 +SET: Key895 Value895 +SET: Key896 Value896 +SET: Key897 Value897 +SET: Key898 Value898 +SET: Key899 Value899 +SET: Key900 Value900 +SET: Key901 Value901 +SET: Key902 Value902 +SET: Key903 Value903 +SET: Key904 Value904 +SET: Key905 Value905 +SET: Key906 Value906 +SET: Key907 Value907 +SET: Key908 Value908 +SET: Key909 Value909 +SET: Key910 Value910 +SET: Key911 Value911 +SET: Key912 Value912 +SET: Key913 Value913 +SET: Key914 Value914 +SET: Key915 Value915 +SET: Key916 Value916 +SET: Key917 Value917 +SET: Key918 Value918 +SET: Key919 Value919 +SET: Key920 Value920 +SET: Key921 Value921 +SET: Key922 Value922 +SET: Key923 Value923 +SET: Key924 Value924 +SET: Key925 Value925 +SET: Key926 Value926 +SET: Key927 Value927 +SET: Key928 Value928 +SET: Key929 Value929 +SET: Key930 Value930 +SET: Key931 Value931 +SET: Key932 Value932 +SET: Key933 Value933 +SET: Key934 Value934 +SET: Key935 Value935 +SET: Key936 Value936 +SET: Key937 Value937 +SET: Key938 Value938 +SET: Key939 Value939 +SET: Key940 Value940 +SET: Key941 Value941 +SET: Key942 Value942 +SET: Key943 Value943 +SET: Key944 Value944 +SET: Key945 Value945 +SET: Key946 Value946 +SET: Key947 Value947 +SET: Key948 Value948 +SET: Key949 Value949 +SET: Key950 Value950 +SET: Key951 Value951 +SET: Key952 Value952 +SET: Key953 Value953 +SET: Key954 Value954 +SET: Key955 Value955 +SET: Key956 Value956 +SET: Key957 Value957 +SET: Key958 Value958 +SET: Key959 Value959 +SET: Key960 Value960 +SET: Key961 Value961 +SET: Key962 Value962 +SET: Key963 Value963 +SET: Key964 Value964 +SET: Key965 Value965 +SET: Key966 Value966 +SET: Key967 Value967 +SET: Key968 Value968 +SET: Key969 Value969 +SET: Key970 Value970 +SET: Key971 Value971 +SET: Key972 Value972 +SET: Key973 Value973 +SET: Key974 Value974 +SET: Key975 Value975 +SET: Key976 Value976 +SET: Key977 Value977 +SET: Key978 Value978 +SET: Key979 Value979 +SET: Key980 Value980 +SET: Key981 Value981 +SET: Key982 Value982 +SET: Key983 Value983 +SET: Key984 Value984 +SET: Key985 Value985 +SET: Key986 Value986 +SET: Key987 Value987 +SET: Key988 Value988 +SET: Key989 Value989 +SET: Key990 Value990 +SET: Key991 Value991 +SET: Key992 Value992 +SET: Key993 Value993 +SET: Key994 Value994 +SET: Key995 Value995 +SET: Key996 Value996 +SET: Key997 Value997 +SET: Key998 Value998 +SET: Key999 Value999 diff --git a/testing/btest/Baseline/scripts.base.protocols.redis.django-cloud/output b/testing/btest/Baseline/scripts.base.protocols.redis.django-cloud/output new file mode 100644 index 0000000000..db76ce0f00 --- /dev/null +++ b/testing/btest/Baseline/scripts.base.protocols.redis.django-cloud/output @@ -0,0 +1,153 @@ +### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63. +SET: :1:factorial_1 1 expires in 60000 milliseconds +SET: :1:factorial_2 2 expires in 60000 milliseconds +SET: :1:factorial_3 6 expires in 60000 milliseconds +SET: :1:factorial_4 24 expires in 60000 milliseconds +SET: :1:factorial_5 120 expires in 60000 milliseconds +SET: :1:factorial_6 720 expires in 60000 milliseconds +SET: :1:factorial_7 5040 expires in 60000 milliseconds +SET: :1:factorial_8 40320 expires in 60000 milliseconds +SET: :1:factorial_9 362880 expires in 60000 milliseconds +SET: :1:factorial_10 3628800 expires in 60000 milliseconds +SET: :1:factorial_11 39916800 expires in 60000 milliseconds +SET: :1:factorial_12 479001600 expires in 60000 milliseconds +SET: :1:factorial_13 6227020800 expires in 60000 milliseconds +SET: :1:factorial_14 87178291200 expires in 60000 milliseconds +SET: :1:factorial_15 1307674368000 expires in 60000 milliseconds +SET: :1:factorial_16 20922789888000 expires in 60000 milliseconds +SET: :1:factorial_17 355687428096000 expires in 60000 milliseconds +SET: :1:factorial_18 6402373705728000 expires in 60000 milliseconds +SET: :1:factorial_19 121645100408832000 expires in 60000 milliseconds +SET: :1:factorial_20 2432902008176640000 expires in 60000 milliseconds +SET: :1:factorial_21 51090942171709440000 expires in 60000 milliseconds +SET: :1:factorial_22 1124000727777607680000 expires in 60000 milliseconds +SET: :1:factorial_23 25852016738884976640000 expires in 60000 milliseconds +SET: :1:factorial_24 620448401733239439360000 expires in 60000 milliseconds +SET: :1:factorial_25 15511210043330985984000000 expires in 60000 milliseconds +SET: :1:factorial_26 403291461126605635584000000 expires in 60000 milliseconds +SET: :1:factorial_27 10888869450418352160768000000 expires in 60000 milliseconds +SET: :1:factorial_28 304888344611713860501504000000 expires in 60000 milliseconds +SET: :1:factorial_29 8841761993739701954543616000000 expires in 60000 milliseconds +SET: :1:factorial_30 265252859812191058636308480000000 expires in 60000 milliseconds +SET: :1:factorial_31 8222838654177922817725562880000000 expires in 60000 milliseconds +SET: :1:factorial_32 263130836933693530167218012160000000 expires in 60000 milliseconds +SET: :1:factorial_33 8683317618811886495518194401280000000 expires in 60000 milliseconds +SET: :1:factorial_34 295232799039604140847618609643520000000 expires in 60000 milliseconds +SET: :1:factorial_35 10333147966386144929666651337523200000000 expires in 60000 milliseconds +SET: :1:factorial_36 371993326789901217467999448150835200000000 expires in 60000 milliseconds +SET: :1:factorial_37 13763753091226345046315979581580902400000000 expires in 60000 milliseconds +SET: :1:factorial_38 523022617466601111760007224100074291200000000 expires in 60000 milliseconds +SET: :1:factorial_39 20397882081197443358640281739902897356800000000 expires in 60000 milliseconds +SET: :1:factorial_40 815915283247897734345611269596115894272000000000 expires in 60000 milliseconds +SET: :1:factorial_41 33452526613163807108170062053440751665152000000000 expires in 60000 milliseconds +SET: :1:factorial_42 1405006117752879898543142606244511569936384000000000 expires in 60000 milliseconds +SET: :1:factorial_43 60415263063373835637355132068513997507264512000000000 expires in 60000 milliseconds +SET: :1:factorial_44 2658271574788448768043625811014615890319638528000000000 expires in 60000 milliseconds +SET: :1:factorial_45 119622220865480194561963161495657715064383733760000000000 expires in 60000 milliseconds +SET: :1:factorial_46 5502622159812088949850305428800254892961651752960000000000 expires in 60000 milliseconds +SET: :1:factorial_47 258623241511168180642964355153611979969197632389120000000000 expires in 60000 milliseconds +SET: :1:factorial_48 12413915592536072670862289047373375038521486354677760000000000 expires in 60000 milliseconds +SET: :1:factorial_49 608281864034267560872252163321295376887552831379210240000000000 expires in 60000 milliseconds +SET: :1:factorial_50 30414093201713378043612608166064768844377641568960512000000000000 expires in 60000 milliseconds +SET: :1:factorial_50 30414093201713378043612608166064768844377641568960512000000000000 expires in 60000 milliseconds +SET: :1:factorial_1 1 expires in 60000 milliseconds +SET: :1:factorial_2 2 expires in 60000 milliseconds +SET: :1:factorial_3 6 expires in 60000 milliseconds +SET: :1:factorial_4 24 expires in 60000 milliseconds +SET: :1:factorial_5 120 expires in 60000 milliseconds +SET: :1:factorial_6 720 expires in 60000 milliseconds +SET: :1:factorial_7 5040 expires in 60000 milliseconds +SET: :1:factorial_8 40320 expires in 60000 milliseconds +SET: :1:factorial_9 362880 expires in 60000 milliseconds +SET: :1:factorial_10 3628800 expires in 60000 milliseconds +SET: :1:factorial_11 39916800 expires in 60000 milliseconds +SET: :1:factorial_12 479001600 expires in 60000 milliseconds +SET: :1:factorial_13 6227020800 expires in 60000 milliseconds +SET: :1:factorial_14 87178291200 expires in 60000 milliseconds +SET: :1:factorial_15 1307674368000 expires in 60000 milliseconds +SET: :1:factorial_16 20922789888000 expires in 60000 milliseconds +SET: :1:factorial_17 355687428096000 expires in 60000 milliseconds +SET: :1:factorial_18 6402373705728000 expires in 60000 milliseconds +SET: :1:factorial_19 121645100408832000 expires in 60000 milliseconds +SET: :1:factorial_20 2432902008176640000 expires in 60000 milliseconds +SET: :1:factorial_21 51090942171709440000 expires in 60000 milliseconds +SET: :1:factorial_22 1124000727777607680000 expires in 60000 milliseconds +SET: :1:factorial_23 25852016738884976640000 expires in 60000 milliseconds +SET: :1:factorial_24 620448401733239439360000 expires in 60000 milliseconds +SET: :1:factorial_25 15511210043330985984000000 expires in 60000 milliseconds +SET: :1:factorial_26 403291461126605635584000000 expires in 60000 milliseconds +SET: :1:factorial_27 10888869450418352160768000000 expires in 60000 milliseconds +SET: :1:factorial_28 304888344611713860501504000000 expires in 60000 milliseconds +SET: :1:factorial_29 8841761993739701954543616000000 expires in 60000 milliseconds +SET: :1:factorial_30 265252859812191058636308480000000 expires in 60000 milliseconds +SET: :1:factorial_31 8222838654177922817725562880000000 expires in 60000 milliseconds +SET: :1:factorial_32 263130836933693530167218012160000000 expires in 60000 milliseconds +SET: :1:factorial_33 8683317618811886495518194401280000000 expires in 60000 milliseconds +SET: :1:factorial_34 295232799039604140847618609643520000000 expires in 60000 milliseconds +SET: :1:factorial_35 10333147966386144929666651337523200000000 expires in 60000 milliseconds +SET: :1:factorial_36 371993326789901217467999448150835200000000 expires in 60000 milliseconds +SET: :1:factorial_37 13763753091226345046315979581580902400000000 expires in 60000 milliseconds +SET: :1:factorial_38 523022617466601111760007224100074291200000000 expires in 60000 milliseconds +SET: :1:factorial_39 20397882081197443358640281739902897356800000000 expires in 60000 milliseconds +SET: :1:factorial_40 815915283247897734345611269596115894272000000000 expires in 60000 milliseconds +SET: :1:factorial_41 33452526613163807108170062053440751665152000000000 expires in 60000 milliseconds +SET: :1:factorial_42 1405006117752879898543142606244511569936384000000000 expires in 60000 milliseconds +SET: :1:factorial_43 60415263063373835637355132068513997507264512000000000 expires in 60000 milliseconds +SET: :1:factorial_44 2658271574788448768043625811014615890319638528000000000 expires in 60000 milliseconds +SET: :1:factorial_45 119622220865480194561963161495657715064383733760000000000 expires in 60000 milliseconds +SET: :1:factorial_46 5502622159812088949850305428800254892961651752960000000000 expires in 60000 milliseconds +SET: :1:factorial_47 258623241511168180642964355153611979969197632389120000000000 expires in 60000 milliseconds +SET: :1:factorial_48 12413915592536072670862289047373375038521486354677760000000000 expires in 60000 milliseconds +SET: :1:factorial_49 608281864034267560872252163321295376887552831379210240000000000 expires in 60000 milliseconds +SET: :1:factorial_50 30414093201713378043612608166064768844377641568960512000000000000 expires in 60000 milliseconds +SET: :1:factorial_51 1551118753287382280224243016469303211063259720016986112000000000000 expires in 60000 milliseconds +SET: :1:factorial_52 80658175170943878571660636856403766975289505440883277824000000000000 expires in 60000 milliseconds +SET: :1:factorial_53 4274883284060025564298013753389399649690343788366813724672000000000000 expires in 60000 milliseconds +SET: :1:factorial_54 230843697339241380472092742683027581083278564571807941132288000000000000 expires in 60000 milliseconds +SET: :1:factorial_55 12696403353658275925965100847566516959580321051449436762275840000000000000 expires in 60000 milliseconds +SET: :1:factorial_56 710998587804863451854045647463724949736497978881168458687447040000000000000 expires in 60000 milliseconds +SET: :1:factorial_57 40526919504877216755680601905432322134980384796226602145184481280000000000000 expires in 60000 milliseconds +SET: :1:factorial_58 2350561331282878571829474910515074683828862318181142924420699914240000000000000 expires in 60000 milliseconds +SET: :1:factorial_59 138683118545689835737939019720389406345902876772687432540821294940160000000000000 expires in 60000 milliseconds +SET: :1:factorial_60 8320987112741390144276341183223364380754172606361245952449277696409600000000000000 expires in 60000 milliseconds +SET: :1:factorial_61 507580213877224798800856812176625227226004528988036003099405939480985600000000000000 expires in 60000 milliseconds +SET: :1:factorial_62 31469973260387937525653122354950764088012280797258232192163168247821107200000000000000 expires in 60000 milliseconds +SET: :1:factorial_63 1982608315404440064116146708361898137544773690227268628106279599612729753600000000000000 expires in 60000 milliseconds +SET: :1:factorial_64 126886932185884164103433389335161480802865516174545192198801894375214704230400000000000000 expires in 60000 milliseconds +SET: :1:factorial_65 8247650592082470666723170306785496252186258551345437492922123134388955774976000000000000000 expires in 60000 milliseconds +SET: :1:factorial_66 544344939077443064003729240247842752644293064388798874532860126869671081148416000000000000000 expires in 60000 milliseconds +SET: :1:factorial_67 36471110918188685288249859096605464427167635314049524593701628500267962436943872000000000000000 expires in 60000 milliseconds +SET: :1:factorial_68 2480035542436830599600990418569171581047399201355367672371710738018221445712183296000000000000000 expires in 60000 milliseconds +SET: :1:factorial_69 171122452428141311372468338881272839092270544893520369393648040923257279754140647424000000000000000 expires in 60000 milliseconds +SET: :1:factorial_70 11978571669969891796072783721689098736458938142546425857555362864628009582789845319680000000000000000 expires in 60000 milliseconds +SET: :1:factorial_71 850478588567862317521167644239926010288584608120796235886430763388588680378079017697280000000000000000 expires in 60000 milliseconds +SET: :1:factorial_72 61234458376886086861524070385274672740778091784697328983823014963978384987221689274204160000000000000000 expires in 60000 milliseconds +SET: :1:factorial_73 4470115461512684340891257138125051110076800700282905015819080092370422104067183317016903680000000000000000 expires in 60000 milliseconds +SET: :1:factorial_74 330788544151938641225953028221253782145683251820934971170611926835411235700971565459250872320000000000000000 expires in 60000 milliseconds +SET: :1:factorial_75 24809140811395398091946477116594033660926243886570122837795894512655842677572867409443815424000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_76 1885494701666050254987932260861146558230394535379329335672487982961844043495537923117729972224000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_77 145183092028285869634070784086308284983740379224208358846781574688061991349156420080065207861248000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_78 11324281178206297831457521158732046228731749579488251990048962825668835325234200766245086213177344000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_79 894618213078297528685144171539831652069808216779571907213868063227837990693501860533361810841010176000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_80 71569457046263802294811533723186532165584657342365752577109445058227039255480148842668944867280814080000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_81 5797126020747367985879734231578109105412357244731625958745865049716390179693892056256184534249745940480000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_82 475364333701284174842138206989404946643813294067993328617160934076743994734899148613007131808479167119360000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_83 39455239697206586511897471180120610571436503407643446275224357528369751562996629334879591940103770870906880000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_84 3314240134565353266999387579130131288000666286242049487118846032383059131291716864129885722968716753156177920000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_85 281710411438055027694947944226061159480056634330574206405101912752560026159795933451040286452340924018275123200000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_86 24227095383672732381765523203441259715284870552429381750838764496720162249742450276789464634901319465571660595200000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_87 2107757298379527717213600518699389595229783738061356212322972511214654115727593174080683423236414793504734471782400000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_88 185482642257398439114796845645546284380220968949399346684421580986889562184028199319100141244804501828416633516851200000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_89 16507955160908461081216919262453619309839666236496541854913520707833171034378509739399912570787600662729080382999756800000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_90 1485715964481761497309522733620825737885569961284688766942216863704985393094065876545992131370884059645617234469978112000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_91 135200152767840296255166568759495142147586866476906677791741734597153670771559994765685283954750449427751168336768008192000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_92 12438414054641307255475324325873553077577991715875414356840239582938137710983519518443046123837041347353107486982656753664000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_93 1156772507081641574759205162306240436214753229576413535186142281213246807121467315215203289516844845303838996289387078090752000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_94 108736615665674308027365285256786601004186803580182872307497374434045199869417927630229109214583415458560865651202385340530688000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_95 10329978488239059262599702099394727095397746340117372869212250571234293987594703124871765375385424468563282236864226607350415360000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_96 991677934870949689209571401541893801158183648651267795444376054838492222809091499987689476037000748982075094738965754305639874560000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_97 96192759682482119853328425949563698712343813919172976158104477319333745612481875498805879175589072651261284189679678167647067832320000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_98 9426890448883247745626185743057242473809693764078951663494238777294707070023223798882976159207729119823605850588608460429412647567360000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_99 933262154439441526816992388562667004907159682643816214685929638952175999932299156089414639761565182862536979208272237582511852109168640000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_100 93326215443944152681699238856266700490715968264381621468592963895217599993229915608941463976156518286253697920827223758251185210916864000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_100 93326215443944152681699238856266700490715968264381621468592963895217599993229915608941463976156518286253697920827223758251185210916864000000000000000000000000 expires in 60000 milliseconds diff --git a/testing/btest/Baseline/scripts.base.protocols.redis.django-cloud/resp.log b/testing/btest/Baseline/scripts.base.protocols.redis.django-cloud/resp.log new file mode 100644 index 0000000000..94f2795b5b --- /dev/null +++ b/testing/btest/Baseline/scripts.base.protocols.redis.django-cloud/resp.log @@ -0,0 +1,168 @@ +### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63. +#separator \x09 +#set_separator , +#empty_field (empty) +#unset_field - +#path resp +#open XXXX-XX-XX-XX-XX-XX +#fields ts uid id.orig_h id.orig_p id.resp_h id.resp_p cmd.raw cmd.key cmd.value +#types time string addr port addr port vector[string] string string +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 GET,:1:factorial_3 :1:factorial_3 - +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 GET,:1:factorial_3 :1:factorial_3 - +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 GET,:1:factorial_50 :1:factorial_50 - +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_1,1,PX,60000 :1:factorial_1 1 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_2,2,PX,60000 :1:factorial_2 2 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_3,6,PX,60000 :1:factorial_3 6 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_4,24,PX,60000 :1:factorial_4 24 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_5,120,PX,60000 :1:factorial_5 120 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_6,720,PX,60000 :1:factorial_6 720 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_7,5040,PX,60000 :1:factorial_7 5040 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_8,40320,PX,60000 :1:factorial_8 40320 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_9,362880,PX,60000 :1:factorial_9 362880 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_10,3628800,PX,60000 :1:factorial_10 3628800 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_11,39916800,PX,60000 :1:factorial_11 39916800 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_12,479001600,PX,60000 :1:factorial_12 479001600 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_13,6227020800,PX,60000 :1:factorial_13 6227020800 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_14,87178291200,PX,60000 :1:factorial_14 87178291200 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_15,1307674368000,PX,60000 :1:factorial_15 1307674368000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_16,20922789888000,PX,60000 :1:factorial_16 20922789888000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_17,355687428096000,PX,60000 :1:factorial_17 355687428096000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_18,6402373705728000,PX,60000 :1:factorial_18 6402373705728000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_19,121645100408832000,PX,60000 :1:factorial_19 121645100408832000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_20,2432902008176640000,PX,60000 :1:factorial_20 2432902008176640000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_21,51090942171709440000,PX,60000 :1:factorial_21 51090942171709440000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_22,1124000727777607680000,PX,60000 :1:factorial_22 1124000727777607680000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_23,25852016738884976640000,PX,60000 :1:factorial_23 25852016738884976640000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_24,620448401733239439360000,PX,60000 :1:factorial_24 620448401733239439360000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_25,15511210043330985984000000,PX,60000 :1:factorial_25 15511210043330985984000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_26,403291461126605635584000000,PX,60000 :1:factorial_26 403291461126605635584000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_27,10888869450418352160768000000,PX,60000 :1:factorial_27 10888869450418352160768000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_28,304888344611713860501504000000,PX,60000 :1:factorial_28 304888344611713860501504000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_29,8841761993739701954543616000000,PX,60000 :1:factorial_29 8841761993739701954543616000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_30,265252859812191058636308480000000,PX,60000 :1:factorial_30 265252859812191058636308480000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_31,8222838654177922817725562880000000,PX,60000 :1:factorial_31 8222838654177922817725562880000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_32,263130836933693530167218012160000000,PX,60000 :1:factorial_32 263130836933693530167218012160000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_33,8683317618811886495518194401280000000,PX,60000 :1:factorial_33 8683317618811886495518194401280000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_34,295232799039604140847618609643520000000,PX,60000 :1:factorial_34 295232799039604140847618609643520000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_35,10333147966386144929666651337523200000000,PX,60000 :1:factorial_35 10333147966386144929666651337523200000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_36,371993326789901217467999448150835200000000,PX,60000 :1:factorial_36 371993326789901217467999448150835200000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_37,13763753091226345046315979581580902400000000,PX,60000 :1:factorial_37 13763753091226345046315979581580902400000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_38,523022617466601111760007224100074291200000000,PX,60000 :1:factorial_38 523022617466601111760007224100074291200000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_39,20397882081197443358640281739902897356800000000,PX,60000 :1:factorial_39 20397882081197443358640281739902897356800000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_40,815915283247897734345611269596115894272000000000,PX,60000 :1:factorial_40 815915283247897734345611269596115894272000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_41,33452526613163807108170062053440751665152000000000,PX,60000 :1:factorial_41 33452526613163807108170062053440751665152000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_42,1405006117752879898543142606244511569936384000000000,PX,60000 :1:factorial_42 1405006117752879898543142606244511569936384000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_43,60415263063373835637355132068513997507264512000000000,PX,60000 :1:factorial_43 60415263063373835637355132068513997507264512000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_44,2658271574788448768043625811014615890319638528000000000,PX,60000 :1:factorial_44 2658271574788448768043625811014615890319638528000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_45,119622220865480194561963161495657715064383733760000000000,PX,60000 :1:factorial_45 119622220865480194561963161495657715064383733760000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_46,5502622159812088949850305428800254892961651752960000000000,PX,60000 :1:factorial_46 5502622159812088949850305428800254892961651752960000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_47,258623241511168180642964355153611979969197632389120000000000,PX,60000 :1:factorial_47 258623241511168180642964355153611979969197632389120000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_48,12413915592536072670862289047373375038521486354677760000000000,PX,60000 :1:factorial_48 12413915592536072670862289047373375038521486354677760000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_49,608281864034267560872252163321295376887552831379210240000000000,PX,60000 :1:factorial_49 608281864034267560872252163321295376887552831379210240000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_50,30414093201713378043612608166064768844377641568960512000000000000,PX,60000 :1:factorial_50 30414093201713378043612608166064768844377641568960512000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_50,30414093201713378043612608166064768844377641568960512000000000000,PX,60000 :1:factorial_50 30414093201713378043612608166064768844377641568960512000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 GET,:1:factorial_50 :1:factorial_50 - +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 GET,:1:factorial_50 :1:factorial_50 - +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 GET,:1:factorial_100 :1:factorial_100 - +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_1,1,PX,60000 :1:factorial_1 1 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_2,2,PX,60000 :1:factorial_2 2 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_3,6,PX,60000 :1:factorial_3 6 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_4,24,PX,60000 :1:factorial_4 24 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_5,120,PX,60000 :1:factorial_5 120 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_6,720,PX,60000 :1:factorial_6 720 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_7,5040,PX,60000 :1:factorial_7 5040 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_8,40320,PX,60000 :1:factorial_8 40320 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_9,362880,PX,60000 :1:factorial_9 362880 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_10,3628800,PX,60000 :1:factorial_10 3628800 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_11,39916800,PX,60000 :1:factorial_11 39916800 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_12,479001600,PX,60000 :1:factorial_12 479001600 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_13,6227020800,PX,60000 :1:factorial_13 6227020800 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_14,87178291200,PX,60000 :1:factorial_14 87178291200 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_15,1307674368000,PX,60000 :1:factorial_15 1307674368000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_16,20922789888000,PX,60000 :1:factorial_16 20922789888000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_17,355687428096000,PX,60000 :1:factorial_17 355687428096000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_18,6402373705728000,PX,60000 :1:factorial_18 6402373705728000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_19,121645100408832000,PX,60000 :1:factorial_19 121645100408832000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_20,2432902008176640000,PX,60000 :1:factorial_20 2432902008176640000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_21,51090942171709440000,PX,60000 :1:factorial_21 51090942171709440000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_22,1124000727777607680000,PX,60000 :1:factorial_22 1124000727777607680000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_23,25852016738884976640000,PX,60000 :1:factorial_23 25852016738884976640000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_24,620448401733239439360000,PX,60000 :1:factorial_24 620448401733239439360000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_25,15511210043330985984000000,PX,60000 :1:factorial_25 15511210043330985984000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_26,403291461126605635584000000,PX,60000 :1:factorial_26 403291461126605635584000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_27,10888869450418352160768000000,PX,60000 :1:factorial_27 10888869450418352160768000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_28,304888344611713860501504000000,PX,60000 :1:factorial_28 304888344611713860501504000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_29,8841761993739701954543616000000,PX,60000 :1:factorial_29 8841761993739701954543616000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_30,265252859812191058636308480000000,PX,60000 :1:factorial_30 265252859812191058636308480000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_31,8222838654177922817725562880000000,PX,60000 :1:factorial_31 8222838654177922817725562880000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_32,263130836933693530167218012160000000,PX,60000 :1:factorial_32 263130836933693530167218012160000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_33,8683317618811886495518194401280000000,PX,60000 :1:factorial_33 8683317618811886495518194401280000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_34,295232799039604140847618609643520000000,PX,60000 :1:factorial_34 295232799039604140847618609643520000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_35,10333147966386144929666651337523200000000,PX,60000 :1:factorial_35 10333147966386144929666651337523200000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_36,371993326789901217467999448150835200000000,PX,60000 :1:factorial_36 371993326789901217467999448150835200000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_37,13763753091226345046315979581580902400000000,PX,60000 :1:factorial_37 13763753091226345046315979581580902400000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_38,523022617466601111760007224100074291200000000,PX,60000 :1:factorial_38 523022617466601111760007224100074291200000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_39,20397882081197443358640281739902897356800000000,PX,60000 :1:factorial_39 20397882081197443358640281739902897356800000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_40,815915283247897734345611269596115894272000000000,PX,60000 :1:factorial_40 815915283247897734345611269596115894272000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_41,33452526613163807108170062053440751665152000000000,PX,60000 :1:factorial_41 33452526613163807108170062053440751665152000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_42,1405006117752879898543142606244511569936384000000000,PX,60000 :1:factorial_42 1405006117752879898543142606244511569936384000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_43,60415263063373835637355132068513997507264512000000000,PX,60000 :1:factorial_43 60415263063373835637355132068513997507264512000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_44,2658271574788448768043625811014615890319638528000000000,PX,60000 :1:factorial_44 2658271574788448768043625811014615890319638528000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_45,119622220865480194561963161495657715064383733760000000000,PX,60000 :1:factorial_45 119622220865480194561963161495657715064383733760000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_46,5502622159812088949850305428800254892961651752960000000000,PX,60000 :1:factorial_46 5502622159812088949850305428800254892961651752960000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_47,258623241511168180642964355153611979969197632389120000000000,PX,60000 :1:factorial_47 258623241511168180642964355153611979969197632389120000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_48,12413915592536072670862289047373375038521486354677760000000000,PX,60000 :1:factorial_48 12413915592536072670862289047373375038521486354677760000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_49,608281864034267560872252163321295376887552831379210240000000000,PX,60000 :1:factorial_49 608281864034267560872252163321295376887552831379210240000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_50,30414093201713378043612608166064768844377641568960512000000000000,PX,60000 :1:factorial_50 30414093201713378043612608166064768844377641568960512000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_51,1551118753287382280224243016469303211063259720016986112000000000000,PX,60000 :1:factorial_51 1551118753287382280224243016469303211063259720016986112000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_52,80658175170943878571660636856403766975289505440883277824000000000000,PX,60000 :1:factorial_52 80658175170943878571660636856403766975289505440883277824000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_53,4274883284060025564298013753389399649690343788366813724672000000000000,PX,60000 :1:factorial_53 4274883284060025564298013753389399649690343788366813724672000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_54,230843697339241380472092742683027581083278564571807941132288000000000000,PX,60000 :1:factorial_54 230843697339241380472092742683027581083278564571807941132288000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_55,12696403353658275925965100847566516959580321051449436762275840000000000000,PX,60000 :1:factorial_55 12696403353658275925965100847566516959580321051449436762275840000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_56,710998587804863451854045647463724949736497978881168458687447040000000000000,PX,60000 :1:factorial_56 710998587804863451854045647463724949736497978881168458687447040000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_57,40526919504877216755680601905432322134980384796226602145184481280000000000000,PX,60000 :1:factorial_57 40526919504877216755680601905432322134980384796226602145184481280000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_58,2350561331282878571829474910515074683828862318181142924420699914240000000000000,PX,60000 :1:factorial_58 2350561331282878571829474910515074683828862318181142924420699914240000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_59,138683118545689835737939019720389406345902876772687432540821294940160000000000000,PX,60000 :1:factorial_59 138683118545689835737939019720389406345902876772687432540821294940160000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_60,8320987112741390144276341183223364380754172606361245952449277696409600000000000000,PX,60000 :1:factorial_60 8320987112741390144276341183223364380754172606361245952449277696409600000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_61,507580213877224798800856812176625227226004528988036003099405939480985600000000000000,PX,60000 :1:factorial_61 507580213877224798800856812176625227226004528988036003099405939480985600000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_62,31469973260387937525653122354950764088012280797258232192163168247821107200000000000000,PX,60000 :1:factorial_62 31469973260387937525653122354950764088012280797258232192163168247821107200000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_63,1982608315404440064116146708361898137544773690227268628106279599612729753600000000000000,PX,60000 :1:factorial_63 1982608315404440064116146708361898137544773690227268628106279599612729753600000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_64,126886932185884164103433389335161480802865516174545192198801894375214704230400000000000000,PX,60000 :1:factorial_64 126886932185884164103433389335161480802865516174545192198801894375214704230400000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_65,8247650592082470666723170306785496252186258551345437492922123134388955774976000000000000000,PX,60000 :1:factorial_65 8247650592082470666723170306785496252186258551345437492922123134388955774976000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_66,544344939077443064003729240247842752644293064388798874532860126869671081148416000000000000000,PX,60000 :1:factorial_66 544344939077443064003729240247842752644293064388798874532860126869671081148416000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_67,36471110918188685288249859096605464427167635314049524593701628500267962436943872000000000000000,PX,60000 :1:factorial_67 36471110918188685288249859096605464427167635314049524593701628500267962436943872000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_68,2480035542436830599600990418569171581047399201355367672371710738018221445712183296000000000000000,PX,60000 :1:factorial_68 2480035542436830599600990418569171581047399201355367672371710738018221445712183296000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_69,171122452428141311372468338881272839092270544893520369393648040923257279754140647424000000000000000,PX,60000 :1:factorial_69 171122452428141311372468338881272839092270544893520369393648040923257279754140647424000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_70,11978571669969891796072783721689098736458938142546425857555362864628009582789845319680000000000000000,PX,60000 :1:factorial_70 11978571669969891796072783721689098736458938142546425857555362864628009582789845319680000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_71,850478588567862317521167644239926010288584608120796235886430763388588680378079017697280000000000000000,PX,60000 :1:factorial_71 850478588567862317521167644239926010288584608120796235886430763388588680378079017697280000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_72,61234458376886086861524070385274672740778091784697328983823014963978384987221689274204160000000000000000,PX,60000 :1:factorial_72 61234458376886086861524070385274672740778091784697328983823014963978384987221689274204160000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_73,4470115461512684340891257138125051110076800700282905015819080092370422104067183317016903680000000000000000,PX,60000 :1:factorial_73 4470115461512684340891257138125051110076800700282905015819080092370422104067183317016903680000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_74,330788544151938641225953028221253782145683251820934971170611926835411235700971565459250872320000000000000000,PX,60000 :1:factorial_74 330788544151938641225953028221253782145683251820934971170611926835411235700971565459250872320000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_75,24809140811395398091946477116594033660926243886570122837795894512655842677572867409443815424000000000000000000,PX,60000 :1:factorial_75 24809140811395398091946477116594033660926243886570122837795894512655842677572867409443815424000000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_76,1885494701666050254987932260861146558230394535379329335672487982961844043495537923117729972224000000000000000000,PX,60000 :1:factorial_76 1885494701666050254987932260861146558230394535379329335672487982961844043495537923117729972224000000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_77,145183092028285869634070784086308284983740379224208358846781574688061991349156420080065207861248000000000000000000,PX,60000 :1:factorial_77 145183092028285869634070784086308284983740379224208358846781574688061991349156420080065207861248000000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_78,11324281178206297831457521158732046228731749579488251990048962825668835325234200766245086213177344000000000000000000,PX,60000 :1:factorial_78 11324281178206297831457521158732046228731749579488251990048962825668835325234200766245086213177344000000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_79,894618213078297528685144171539831652069808216779571907213868063227837990693501860533361810841010176000000000000000000,PX,60000 :1:factorial_79 894618213078297528685144171539831652069808216779571907213868063227837990693501860533361810841010176000000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_80,71569457046263802294811533723186532165584657342365752577109445058227039255480148842668944867280814080000000000000000000,PX,60000 :1:factorial_80 71569457046263802294811533723186532165584657342365752577109445058227039255480148842668944867280814080000000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_81,5797126020747367985879734231578109105412357244731625958745865049716390179693892056256184534249745940480000000000000000000,PX,60000 :1:factorial_81 5797126020747367985879734231578109105412357244731625958745865049716390179693892056256184534249745940480000000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_82,475364333701284174842138206989404946643813294067993328617160934076743994734899148613007131808479167119360000000000000000000,PX,60000 :1:factorial_82 475364333701284174842138206989404946643813294067993328617160934076743994734899148613007131808479167119360000000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_83,39455239697206586511897471180120610571436503407643446275224357528369751562996629334879591940103770870906880000000000000000000,PX,60000 :1:factorial_83 39455239697206586511897471180120610571436503407643446275224357528369751562996629334879591940103770870906880000000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_84,3314240134565353266999387579130131288000666286242049487118846032383059131291716864129885722968716753156177920000000000000000000,PX,60000 :1:factorial_84 3314240134565353266999387579130131288000666286242049487118846032383059131291716864129885722968716753156177920000000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_85,281710411438055027694947944226061159480056634330574206405101912752560026159795933451040286452340924018275123200000000000000000000,PX,60000 :1:factorial_85 281710411438055027694947944226061159480056634330574206405101912752560026159795933451040286452340924018275123200000000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_86,24227095383672732381765523203441259715284870552429381750838764496720162249742450276789464634901319465571660595200000000000000000000,PX,60000 :1:factorial_86 24227095383672732381765523203441259715284870552429381750838764496720162249742450276789464634901319465571660595200000000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_87,2107757298379527717213600518699389595229783738061356212322972511214654115727593174080683423236414793504734471782400000000000000000000,PX,60000 :1:factorial_87 2107757298379527717213600518699389595229783738061356212322972511214654115727593174080683423236414793504734471782400000000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_88,185482642257398439114796845645546284380220968949399346684421580986889562184028199319100141244804501828416633516851200000000000000000000,PX,60000 :1:factorial_88 185482642257398439114796845645546284380220968949399346684421580986889562184028199319100141244804501828416633516851200000000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_89,16507955160908461081216919262453619309839666236496541854913520707833171034378509739399912570787600662729080382999756800000000000000000000,PX,60000 :1:factorial_89 16507955160908461081216919262453619309839666236496541854913520707833171034378509739399912570787600662729080382999756800000000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_90,1485715964481761497309522733620825737885569961284688766942216863704985393094065876545992131370884059645617234469978112000000000000000000000,PX,60000 :1:factorial_90 1485715964481761497309522733620825737885569961284688766942216863704985393094065876545992131370884059645617234469978112000000000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_91,135200152767840296255166568759495142147586866476906677791741734597153670771559994765685283954750449427751168336768008192000000000000000000000,PX,60000 :1:factorial_91 135200152767840296255166568759495142147586866476906677791741734597153670771559994765685283954750449427751168336768008192000000000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_92,12438414054641307255475324325873553077577991715875414356840239582938137710983519518443046123837041347353107486982656753664000000000000000000000,PX,60000 :1:factorial_92 12438414054641307255475324325873553077577991715875414356840239582938137710983519518443046123837041347353107486982656753664000000000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_93,1156772507081641574759205162306240436214753229576413535186142281213246807121467315215203289516844845303838996289387078090752000000000000000000000,PX,60000 :1:factorial_93 1156772507081641574759205162306240436214753229576413535186142281213246807121467315215203289516844845303838996289387078090752000000000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_94,108736615665674308027365285256786601004186803580182872307497374434045199869417927630229109214583415458560865651202385340530688000000000000000000000,PX,60000 :1:factorial_94 108736615665674308027365285256786601004186803580182872307497374434045199869417927630229109214583415458560865651202385340530688000000000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_95,10329978488239059262599702099394727095397746340117372869212250571234293987594703124871765375385424468563282236864226607350415360000000000000000000000,PX,60000 :1:factorial_95 10329978488239059262599702099394727095397746340117372869212250571234293987594703124871765375385424468563282236864226607350415360000000000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_96,991677934870949689209571401541893801158183648651267795444376054838492222809091499987689476037000748982075094738965754305639874560000000000000000000000,PX,60000 :1:factorial_96 991677934870949689209571401541893801158183648651267795444376054838492222809091499987689476037000748982075094738965754305639874560000000000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_97,96192759682482119853328425949563698712343813919172976158104477319333745612481875498805879175589072651261284189679678167647067832320000000000000000000000,PX,60000 :1:factorial_97 96192759682482119853328425949563698712343813919172976158104477319333745612481875498805879175589072651261284189679678167647067832320000000000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_98,9426890448883247745626185743057242473809693764078951663494238777294707070023223798882976159207729119823605850588608460429412647567360000000000000000000000,PX,60000 :1:factorial_98 9426890448883247745626185743057242473809693764078951663494238777294707070023223798882976159207729119823605850588608460429412647567360000000000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_99,933262154439441526816992388562667004907159682643816214685929638952175999932299156089414639761565182862536979208272237582511852109168640000000000000000000000,PX,60000 :1:factorial_99 933262154439441526816992388562667004907159682643816214685929638952175999932299156089414639761565182862536979208272237582511852109168640000000000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_100,93326215443944152681699238856266700490715968264381621468592963895217599993229915608941463976156518286253697920827223758251185210916864000000000000000000000000,PX,60000 :1:factorial_100 93326215443944152681699238856266700490715968264381621468592963895217599993229915608941463976156518286253697920827223758251185210916864000000000000000000000000 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 192.168.1.4 50044 18.234.186.95 10625 SET,:1:factorial_100,93326215443944152681699238856266700490715968264381621468592963895217599993229915608941463976156518286253697920827223758251185210916864000000000000000000000000,PX,60000 :1:factorial_100 93326215443944152681699238856266700490715968264381621468592963895217599993229915608941463976156518286253697920827223758251185210916864000000000000000000000000 +#close XXXX-XX-XX-XX-XX-XX diff --git a/testing/btest/Baseline/scripts.base.protocols.redis.django/output b/testing/btest/Baseline/scripts.base.protocols.redis.django/output new file mode 100644 index 0000000000..e2782e7aef --- /dev/null +++ b/testing/btest/Baseline/scripts.base.protocols.redis.django/output @@ -0,0 +1,309 @@ +### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63. +SET: :1:factorial_1 1 expires in 60000 milliseconds +SET: :1:factorial_2 2 expires in 60000 milliseconds +SET: :1:factorial_3 6 expires in 60000 milliseconds +SET: :1:factorial_4 24 expires in 60000 milliseconds +SET: :1:factorial_5 120 expires in 60000 milliseconds +SET: :1:factorial_6 720 expires in 60000 milliseconds +SET: :1:factorial_7 5040 expires in 60000 milliseconds +SET: :1:factorial_8 40320 expires in 60000 milliseconds +SET: :1:factorial_9 362880 expires in 60000 milliseconds +SET: :1:factorial_10 3628800 expires in 60000 milliseconds +SET: :1:factorial_11 39916800 expires in 60000 milliseconds +SET: :1:factorial_12 479001600 expires in 60000 milliseconds +SET: :1:factorial_13 6227020800 expires in 60000 milliseconds +SET: :1:factorial_14 87178291200 expires in 60000 milliseconds +SET: :1:factorial_15 1307674368000 expires in 60000 milliseconds +SET: :1:factorial_16 20922789888000 expires in 60000 milliseconds +SET: :1:factorial_17 355687428096000 expires in 60000 milliseconds +SET: :1:factorial_18 6402373705728000 expires in 60000 milliseconds +SET: :1:factorial_19 121645100408832000 expires in 60000 milliseconds +SET: :1:factorial_20 2432902008176640000 expires in 60000 milliseconds +SET: :1:factorial_21 51090942171709440000 expires in 60000 milliseconds +SET: :1:factorial_22 1124000727777607680000 expires in 60000 milliseconds +SET: :1:factorial_23 25852016738884976640000 expires in 60000 milliseconds +SET: :1:factorial_24 620448401733239439360000 expires in 60000 milliseconds +SET: :1:factorial_25 15511210043330985984000000 expires in 60000 milliseconds +SET: :1:factorial_26 403291461126605635584000000 expires in 60000 milliseconds +SET: :1:factorial_27 10888869450418352160768000000 expires in 60000 milliseconds +SET: :1:factorial_28 304888344611713860501504000000 expires in 60000 milliseconds +SET: :1:factorial_29 8841761993739701954543616000000 expires in 60000 milliseconds +SET: :1:factorial_30 265252859812191058636308480000000 expires in 60000 milliseconds +SET: :1:factorial_31 8222838654177922817725562880000000 expires in 60000 milliseconds +SET: :1:factorial_32 263130836933693530167218012160000000 expires in 60000 milliseconds +SET: :1:factorial_33 8683317618811886495518194401280000000 expires in 60000 milliseconds +SET: :1:factorial_34 295232799039604140847618609643520000000 expires in 60000 milliseconds +SET: :1:factorial_35 10333147966386144929666651337523200000000 expires in 60000 milliseconds +SET: :1:factorial_36 371993326789901217467999448150835200000000 expires in 60000 milliseconds +SET: :1:factorial_37 13763753091226345046315979581580902400000000 expires in 60000 milliseconds +SET: :1:factorial_38 523022617466601111760007224100074291200000000 expires in 60000 milliseconds +SET: :1:factorial_39 20397882081197443358640281739902897356800000000 expires in 60000 milliseconds +SET: :1:factorial_40 815915283247897734345611269596115894272000000000 expires in 60000 milliseconds +SET: :1:factorial_41 33452526613163807108170062053440751665152000000000 expires in 60000 milliseconds +SET: :1:factorial_42 1405006117752879898543142606244511569936384000000000 expires in 60000 milliseconds +SET: :1:factorial_43 60415263063373835637355132068513997507264512000000000 expires in 60000 milliseconds +SET: :1:factorial_44 2658271574788448768043625811014615890319638528000000000 expires in 60000 milliseconds +SET: :1:factorial_45 119622220865480194561963161495657715064383733760000000000 expires in 60000 milliseconds +SET: :1:factorial_46 5502622159812088949850305428800254892961651752960000000000 expires in 60000 milliseconds +SET: :1:factorial_47 258623241511168180642964355153611979969197632389120000000000 expires in 60000 milliseconds +SET: :1:factorial_48 12413915592536072670862289047373375038521486354677760000000000 expires in 60000 milliseconds +SET: :1:factorial_49 608281864034267560872252163321295376887552831379210240000000000 expires in 60000 milliseconds +SET: :1:factorial_50 30414093201713378043612608166064768844377641568960512000000000000 expires in 60000 milliseconds +SET: :1:factorial_50 30414093201713378043612608166064768844377641568960512000000000000 expires in 60000 milliseconds +SET: :1:factorial_1 1 expires in 60000 milliseconds +SET: :1:factorial_2 2 expires in 60000 milliseconds +SET: :1:factorial_3 6 expires in 60000 milliseconds +SET: :1:factorial_4 24 expires in 60000 milliseconds +SET: :1:factorial_5 120 expires in 60000 milliseconds +SET: :1:factorial_6 720 expires in 60000 milliseconds +SET: :1:factorial_7 5040 expires in 60000 milliseconds +SET: :1:factorial_8 40320 expires in 60000 milliseconds +SET: :1:factorial_9 362880 expires in 60000 milliseconds +SET: :1:factorial_10 3628800 expires in 60000 milliseconds +SET: :1:factorial_11 39916800 expires in 60000 milliseconds +SET: :1:factorial_12 479001600 expires in 60000 milliseconds +SET: :1:factorial_13 6227020800 expires in 60000 milliseconds +SET: :1:factorial_14 87178291200 expires in 60000 milliseconds +SET: :1:factorial_15 1307674368000 expires in 60000 milliseconds +SET: :1:factorial_16 20922789888000 expires in 60000 milliseconds +SET: :1:factorial_17 355687428096000 expires in 60000 milliseconds +SET: :1:factorial_18 6402373705728000 expires in 60000 milliseconds +SET: :1:factorial_19 121645100408832000 expires in 60000 milliseconds +SET: :1:factorial_20 2432902008176640000 expires in 60000 milliseconds +SET: :1:factorial_21 51090942171709440000 expires in 60000 milliseconds +SET: :1:factorial_22 1124000727777607680000 expires in 60000 milliseconds +SET: :1:factorial_23 25852016738884976640000 expires in 60000 milliseconds +SET: :1:factorial_24 620448401733239439360000 expires in 60000 milliseconds +SET: :1:factorial_25 15511210043330985984000000 expires in 60000 milliseconds +SET: :1:factorial_26 403291461126605635584000000 expires in 60000 milliseconds +SET: :1:factorial_27 10888869450418352160768000000 expires in 60000 milliseconds +SET: :1:factorial_28 304888344611713860501504000000 expires in 60000 milliseconds +SET: :1:factorial_29 8841761993739701954543616000000 expires in 60000 milliseconds +SET: :1:factorial_30 265252859812191058636308480000000 expires in 60000 milliseconds +SET: :1:factorial_31 8222838654177922817725562880000000 expires in 60000 milliseconds +SET: :1:factorial_32 263130836933693530167218012160000000 expires in 60000 milliseconds +SET: :1:factorial_33 8683317618811886495518194401280000000 expires in 60000 milliseconds +SET: :1:factorial_34 295232799039604140847618609643520000000 expires in 60000 milliseconds +SET: :1:factorial_35 10333147966386144929666651337523200000000 expires in 60000 milliseconds +SET: :1:factorial_36 371993326789901217467999448150835200000000 expires in 60000 milliseconds +SET: :1:factorial_37 13763753091226345046315979581580902400000000 expires in 60000 milliseconds +SET: :1:factorial_38 523022617466601111760007224100074291200000000 expires in 60000 milliseconds +SET: :1:factorial_39 20397882081197443358640281739902897356800000000 expires in 60000 milliseconds +SET: :1:factorial_40 815915283247897734345611269596115894272000000000 expires in 60000 milliseconds +SET: :1:factorial_41 33452526613163807108170062053440751665152000000000 expires in 60000 milliseconds +SET: :1:factorial_42 1405006117752879898543142606244511569936384000000000 expires in 60000 milliseconds +SET: :1:factorial_43 60415263063373835637355132068513997507264512000000000 expires in 60000 milliseconds +SET: :1:factorial_44 2658271574788448768043625811014615890319638528000000000 expires in 60000 milliseconds +SET: :1:factorial_45 119622220865480194561963161495657715064383733760000000000 expires in 60000 milliseconds +SET: :1:factorial_46 5502622159812088949850305428800254892961651752960000000000 expires in 60000 milliseconds +SET: :1:factorial_47 258623241511168180642964355153611979969197632389120000000000 expires in 60000 milliseconds +SET: :1:factorial_48 12413915592536072670862289047373375038521486354677760000000000 expires in 60000 milliseconds +SET: :1:factorial_49 608281864034267560872252163321295376887552831379210240000000000 expires in 60000 milliseconds +SET: :1:factorial_50 30414093201713378043612608166064768844377641568960512000000000000 expires in 60000 milliseconds +SET: :1:factorial_51 1551118753287382280224243016469303211063259720016986112000000000000 expires in 60000 milliseconds +SET: :1:factorial_52 80658175170943878571660636856403766975289505440883277824000000000000 expires in 60000 milliseconds +SET: :1:factorial_53 4274883284060025564298013753389399649690343788366813724672000000000000 expires in 60000 milliseconds +SET: :1:factorial_54 230843697339241380472092742683027581083278564571807941132288000000000000 expires in 60000 milliseconds +SET: :1:factorial_55 12696403353658275925965100847566516959580321051449436762275840000000000000 expires in 60000 milliseconds +SET: :1:factorial_56 710998587804863451854045647463724949736497978881168458687447040000000000000 expires in 60000 milliseconds +SET: :1:factorial_57 40526919504877216755680601905432322134980384796226602145184481280000000000000 expires in 60000 milliseconds +SET: :1:factorial_58 2350561331282878571829474910515074683828862318181142924420699914240000000000000 expires in 60000 milliseconds +SET: :1:factorial_59 138683118545689835737939019720389406345902876772687432540821294940160000000000000 expires in 60000 milliseconds +SET: :1:factorial_60 8320987112741390144276341183223364380754172606361245952449277696409600000000000000 expires in 60000 milliseconds +SET: :1:factorial_61 507580213877224798800856812176625227226004528988036003099405939480985600000000000000 expires in 60000 milliseconds +SET: :1:factorial_62 31469973260387937525653122354950764088012280797258232192163168247821107200000000000000 expires in 60000 milliseconds +SET: :1:factorial_63 1982608315404440064116146708361898137544773690227268628106279599612729753600000000000000 expires in 60000 milliseconds +SET: :1:factorial_64 126886932185884164103433389335161480802865516174545192198801894375214704230400000000000000 expires in 60000 milliseconds +SET: :1:factorial_65 8247650592082470666723170306785496252186258551345437492922123134388955774976000000000000000 expires in 60000 milliseconds +SET: :1:factorial_66 544344939077443064003729240247842752644293064388798874532860126869671081148416000000000000000 expires in 60000 milliseconds +SET: :1:factorial_67 36471110918188685288249859096605464427167635314049524593701628500267962436943872000000000000000 expires in 60000 milliseconds +SET: :1:factorial_68 2480035542436830599600990418569171581047399201355367672371710738018221445712183296000000000000000 expires in 60000 milliseconds +SET: :1:factorial_69 171122452428141311372468338881272839092270544893520369393648040923257279754140647424000000000000000 expires in 60000 milliseconds +SET: :1:factorial_70 11978571669969891796072783721689098736458938142546425857555362864628009582789845319680000000000000000 expires in 60000 milliseconds +SET: :1:factorial_71 850478588567862317521167644239926010288584608120796235886430763388588680378079017697280000000000000000 expires in 60000 milliseconds +SET: :1:factorial_72 61234458376886086861524070385274672740778091784697328983823014963978384987221689274204160000000000000000 expires in 60000 milliseconds +SET: :1:factorial_73 4470115461512684340891257138125051110076800700282905015819080092370422104067183317016903680000000000000000 expires in 60000 milliseconds +SET: :1:factorial_74 330788544151938641225953028221253782145683251820934971170611926835411235700971565459250872320000000000000000 expires in 60000 milliseconds +SET: :1:factorial_75 24809140811395398091946477116594033660926243886570122837795894512655842677572867409443815424000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_76 1885494701666050254987932260861146558230394535379329335672487982961844043495537923117729972224000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_77 145183092028285869634070784086308284983740379224208358846781574688061991349156420080065207861248000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_78 11324281178206297831457521158732046228731749579488251990048962825668835325234200766245086213177344000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_79 894618213078297528685144171539831652069808216779571907213868063227837990693501860533361810841010176000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_80 71569457046263802294811533723186532165584657342365752577109445058227039255480148842668944867280814080000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_81 5797126020747367985879734231578109105412357244731625958745865049716390179693892056256184534249745940480000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_82 475364333701284174842138206989404946643813294067993328617160934076743994734899148613007131808479167119360000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_83 39455239697206586511897471180120610571436503407643446275224357528369751562996629334879591940103770870906880000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_84 3314240134565353266999387579130131288000666286242049487118846032383059131291716864129885722968716753156177920000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_85 281710411438055027694947944226061159480056634330574206405101912752560026159795933451040286452340924018275123200000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_86 24227095383672732381765523203441259715284870552429381750838764496720162249742450276789464634901319465571660595200000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_87 2107757298379527717213600518699389595229783738061356212322972511214654115727593174080683423236414793504734471782400000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_88 185482642257398439114796845645546284380220968949399346684421580986889562184028199319100141244804501828416633516851200000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_89 16507955160908461081216919262453619309839666236496541854913520707833171034378509739399912570787600662729080382999756800000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_90 1485715964481761497309522733620825737885569961284688766942216863704985393094065876545992131370884059645617234469978112000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_91 135200152767840296255166568759495142147586866476906677791741734597153670771559994765685283954750449427751168336768008192000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_92 12438414054641307255475324325873553077577991715875414356840239582938137710983519518443046123837041347353107486982656753664000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_93 1156772507081641574759205162306240436214753229576413535186142281213246807121467315215203289516844845303838996289387078090752000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_94 108736615665674308027365285256786601004186803580182872307497374434045199869417927630229109214583415458560865651202385340530688000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_95 10329978488239059262599702099394727095397746340117372869212250571234293987594703124871765375385424468563282236864226607350415360000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_96 991677934870949689209571401541893801158183648651267795444376054838492222809091499987689476037000748982075094738965754305639874560000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_97 96192759682482119853328425949563698712343813919172976158104477319333745612481875498805879175589072651261284189679678167647067832320000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_98 9426890448883247745626185743057242473809693764078951663494238777294707070023223798882976159207729119823605850588608460429412647567360000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_99 933262154439441526816992388562667004907159682643816214685929638952175999932299156089414639761565182862536979208272237582511852109168640000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_100 93326215443944152681699238856266700490715968264381621468592963895217599993229915608941463976156518286253697920827223758251185210916864000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_101 9425947759838359420851623124482936749562312794702543768327889353416977599316221476503087861591808346911623490003549599583369706302603264000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_102 961446671503512660926865558697259548455355905059659464369444714048531715130254590603314961882364451384985595980362059157503710042865532928000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_103 99029007164861804075467152545817733490901658221144924830052805546998766658416222832141441073883538492653516385977292093222882134415149891584000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_104 10299016745145627623848583864765044283053772454999072182325491776887871732475287174542709871683888003235965704141638377695179741979175588724736000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_105 1081396758240290900504101305800329649720646107774902579144176636573226531909905153326984536526808240339776398934872029657993872907813436816097280000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_106 114628056373470835453434738414834942870388487424139673389282723476762012382449946252660360871841673476016298287096435143747350528228224302506311680000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_107 12265202031961379393517517010387338887131568154382945052653251412013535324922144249034658613287059061933743916719318560380966506520420000368175349760000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_108 1324641819451828974499891837121832599810209360673358065686551152497461815091591578895743130235002378688844343005686404521144382704205360039762937774080000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_109 144385958320249358220488210246279753379312820313396029159834075622223337844983482099636001195615259277084033387619818092804737714758384244334160217374720000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_110 15882455415227429404253703127090772871724410234473563207581748318444567162948183030959960131517678520479243672638179990208521148623422266876757623911219200000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_111 1762952551090244663872161047107075788761409536026565516041574063347346955087248316436555574598462315773196047662837978913145847497199871623320096254145331200000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_112 197450685722107402353682037275992488341277868034975337796656295094902858969771811440894224355027779366597957338237853638272334919686385621811850780464277094400000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_113 22311927486598136465966070212187151182564399087952213171022161345724023063584214692821047352118139068425569179220877461124773845924561575264739138192463311667200000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_114 2543559733472187557120132004189335234812341496026552301496526393412538629248600474981599398141467853800514886431180030568224218435400019580180261753940817530060800000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_115 292509369349301569068815180481773552003419272043053514672100535242441942363589054622883930786268803187059211939585703515345785120071002251720730101703194015956992000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_116 33931086844518982011982560935885732032396635556994207701963662088123265314176330336254535971207181169698868584991941607780111073928236261199604691797570505851011072000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_117 3969937160808720895401959629498630647790406360168322301129748464310422041758630649341780708631240196854767624444057168110272995649603642560353748940315749184568295424000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_118 468452584975429065657431236280838416439267950499862031533310318788629800927518416622330123618486343228862579684398745837012213486653229822121742374957258403779058860032000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_119 55745857612076058813234317117419771556272886109483581752463927935846946310374691578057284710599874844234646982443450754604453404911734348832487342619913750049708004343808000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_120 6689502913449127057588118054090372586752746333138029810295671352301633557244962989366874165271984981308157637893214090552534408589408121859898481114389650005964960521256960000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_121 809429852527344373968162284544935082997082306309701607045776233628497660426640521713391773997910182738287074185078904956856663439318382745047716214841147650721760223072092160000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_122 98750442008336013624115798714482080125644041369783596059584700502676714572050143649033796427745042294071023050579626404736512939596842694895821378210620013388054747214795243520000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_123 12146304367025329675766243241881295855454217088483382315328918161829235892362167668831156960612640202170735835221294047782591091570411651472186029519906261646730733907419814952960000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_124 1506141741511140879795014161993280686076322918971939407100785852066825250652908790935063463115967385069171243567440461925041295354731044782551067660468376444194611004520057054167040000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_125 188267717688892609974376770249160085759540364871492425887598231508353156331613598866882932889495923133646405445930057740630161919341380597818883457558547055524326375565007131770880000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_126 23721732428800468856771473051394170805702085973808045661837377170052497697783313457227249544076486314839447086187187275319400401837013955325179315652376928996065123321190898603130880000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_127 3012660018457659544809977077527059692324164918673621799053346900596667207618480809067860692097713761984609779945772783965563851033300772326297773087851869982500270661791244122597621760000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_128 385620482362580421735677065923463640617493109590223590278828403276373402575165543560686168588507361534030051833058916347592172932262498857766114955245039357760034644709279247692495585280000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_129 49745042224772874403902341504126809639656611137138843145968864022652168932196355119328515747917449637889876686464600208839390308261862352651828829226610077151044469167497022952331930501120000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_130 6466855489220473672507304395536485253155359447828049608975952322944781961185526165512707047229268452925683969240398027149120740074042105844737747799459310029635780991774612983803150965145600000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_131 847158069087882051098456875815279568163352087665474498775849754305766436915303927682164623187034167333264599970492141556534816949699515865660644961729169613882287309922474300878212776434073600000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_132 111824865119600430744996307607616902997562475571842633838412167568361169672820118454045730260688510087990927196104962685462595837360336094267205134948250389032461924909766607715924086489297715200000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_133 14872707060906857289084508911813048098675809251055070300508818286592035566485075754388082124671571841702793317081960037166525246368924700537538282948117301741317436012998958826217903503076596121600000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_134 1992942746161518876737324194182948445222558439641379420268181650403332765909000151088003004705990626788174304488982644980314383013435909872030129915047718433336536425741860482713199069412263880294400000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_135 269047270731805048359538766214698040105045389351586221736204522804449923397715020396880405635308734616403531106012657072342441706813847832724067538531441988500432417475151165166281874370655623839744000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_136 36590428819525486576897272205198933454286172951815726156123815101405189582089242773975735166401987907830880230417721361838572072126683305250473185240276110436058808776620558462614334914409164842205184000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_137 5012888748274991661034926292112253883237205694398754483388962668892510972746226260034675717797072343372830591567227826571884373881355612819314826377917827129740056802397016509378163883274055583382110208000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_138 691778647261948849222819828311491035886734385827028118707676848307166514238979223884785249055995983385450621636277440066920043595627074569065446040152660143904127838730788278294186615891819670506731208704000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_139 96157231969410890041971956135297253988256079629956908500367081914696145479218112119985149618783441690577636407442564169301886059792163365100096999581219760002673769583579570682891939608962934200435638009856000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_140 13462012475717524605876073858941615558355851148193967190051391468057460367090535696797920946629681836680869097041958983702264048370902871114013579941370766400374327741701139895604871545254810788060989321379840000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_141 1898143759076170969428526414110767793728175011895349373797246196996101911759765533248506853474785138972002542682916216702019230820297304827075914771733278062452780211579860725280286887880928321116599494314557440000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_142 269536413788816277658850750803729026709400851689139611079208959973446471469886705721287973193419489734024361060974102771686730776482217285444779897586125484868294790044340222989800738079091821598557128192667156480000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_143 38543707171800727705215657364933250819444321791546964384326881276202845420193798918144180166658987031965483631719296696351202501036957071818603525354815944336166154976340651887541505545310130488593669331551403376640000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_144 5550293832739304789551054660550388117999982337982762871343070903773209740507907044212761943998894132603029642967578724274573160149321818341878907651093495984407926316593053871805976798524658790357488383743402086236160000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_145 804792605747199194484902925779806277109997439007500616344745281047115412373646521410850481879839649227439298230298915019813108221651663659572441609408556917739149315905992811411866635786075524601835815642793302504243200000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_146 117499720439091082394795827163851716458059626095095089986332811032878850206552392125984170354456588787206137541623641592892713800361142894297576474973649309989915800122274950466132528824767026591868029083847822165619507200000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_147 17272458904546389112034986593086202319334765035978978227990923221833190980363201642519673042105118551719302218618675314155228928653088005461743741821126448568517622617974417718521481737240752909004600275325629858346067558400000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_148 2556323917872865588581178015776757943261545225324888777742656636831312265093753843092911610231557545654456728355563946494973881440657024808338073789526714388140608147460213822341179297111631430532680840748193219035217998643200000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_149 380892263763056972698595524350736933545970238573408427883655838887865527498969322620843829924502074302514052524979028027751108334657896696442372994639480443832950613971571859528835715269633083149369445271480789636247481797836800000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_150 57133839564458545904789328652610540031895535786011264182548375833179829124845398393126574488675311145377107878746854204162666250198684504466355949195922066574942592095735778929325357290444962472405416790722118445437122269675520000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_151 8627209774233240431623188626544191544816225903687700891564804750810154197851655157362112747789971982951943289690774984828562603780001360174419748328584232052816331406456102618328128950857189333333217935399039885261005462721003520000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_152 1311335885683452545606724671234717114812066337360530535517850322123143438073451583919041137664075741408695380032997797693941515774560206746511801745944803272028082373781327597985875600530292778666649126180654062559672830333592535040000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_153 200634390509568239477828874698911718566246149616161171934231099284840946025238092339613294062603588435530393145048663047173051913507711632216305667129554900620296603188543122491838966881134795135997316305640071571629943041039657861120000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_154 30897696138473508879585646703632404659201907040888820477871589289865505687886666220300447285640952619071680544337494109264649994680187591361311072737951454695525676891035640863743200899694758450943586711068571022031011228320107310612480000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_155 4789142901463393876335775239063022722176295591337767174070096339929153381622433264146569329274347655956110484372311586936020749175429076661003216274382475477806479918110524333880196139452687559896255940215628508414806740389616633144934400000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_156 747106292628289444708380937293831544659502112248691679154935029028947927533099589206864815366798234329153235562080607562019236871366935959116501738803666174537810867225241796085310597754619259343815926673638047312709851500780194770609766400000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_157 117295687942641442819215807155131552511541831623044593627324799557544824622696635505477776012587322789677057983246655387237020188804608945581290772992175589402436306154362961985393763847475223716979100487761173428095446685622490578985733324800000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_158 18532718694937347965436097530510785296823609396441045793117318330092082290386068409865488609988797000768975161352971551183449189831128213401843942132763743125584936372389347993692214687901085347282697877066265401639080576328353511479745865318400000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_159 2946702272495038326504339507351214862194953894034126281105653614484641084171384877168612688988218723122267050655122476638168421183149385930893186799109435156968004883209906330997062135376272570217948962453536198860613811636208208325279592585625600000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_160 471472363599206132240694321176194377951192623045460204976904578317542573467421580346978030238114995699562728104819596262106947389303901748942909887857509625114880781313585012959529941660203611234871833992565791817698209861793313332044734813700096000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_161 75907050539472187290751785709367294850142012310319093001281637109124354328254874435863462868336514307629599224875954998199218529677928181579808491945059049643495805791487187086484320607292781408814365272803092482649411787748723446459202305005715456000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_162 12296942187394494341101789284917501765723005994271693066207625211678145401177289658609880984670515317835995074429904709708273401807824365415928975695099566042246320538220924308010459938381430588227927174194100982189204709615293198326390773410925903872000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_163 2004401576545302577599591653441552787812849977066285969791842909503537700391898214353410600501293996807267197132074467682448564494675371562796423038301229264886150247730010662205704969956173185881152129393638460096840367667292791327201696065980922331136000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_164 328721858553429622726333031164414657201307396238870899045862237158580182864271307153959338482212215476391820329660212699921564577126760936298613378281401599441328640627721748601735615072812402484508949220556707455881820297436017777661078154820871262306304000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_165 54239106661315887749844950142128418438215720379413698342567269131165730172604765680403290849565015553604650354393935095487058155225915554489271207416431263907819225703574088519286376487014046409943976621391856730220500349076942933314077895545443758280540160000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_166 9003691705778437366474261723593317460743809582982673924866166675773511208652391102946946281027792581898371958829393225850851653767501982045219020431127589808697991466793298694201538496844331704050700119151048217216603057946772526930136930660543663874569666560000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_167 1503616514864999040201201707840084015944216200358106545452649834854176371844949314192140028931641361177028117124508668717092226179172831001551576411998307498052564574954480881931656928973003394576466919898225052275172710677111011997332867420310791867053134315520000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_168 252607574497319838753801886917134114678628321660161899636045172255501630469951484784279524860515748677740723676917456344471493998101035608260664837215715659672830848592352788164518364067464570288846442542901808782229015393754650015551921726612213033664926565007360000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_169 42690680090047052749392518888995665380688186360567361038491634111179775549421800928543239701427161526538182301399050122215682485679075017796052357489455946484708413412107621199803603527401512378815048789750405684196703601544535852628274771797464002689372589486243840000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_170 7257415615307998967396728211129263114716991681296451376543577798900561843401706157852350749242617459511490991237838520776666022565442753025328900773207510902400430280058295603966612599658257104398558294257568966313439612262571094946806711205568880457193340212661452800000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_171 1241018070217667823424840524103103992616605577501693185388951803611996075221691752992751978120487585576464959501670387052809889858690710767331242032218484364310473577889968548278290754541561964852153468318044293239598173696899657235903947616152278558180061176365108428800000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_172 213455108077438865629072570145733886730056159330291227886899710221263324938130981514753340236723864719151973034287306573083301055694802251980973629541579310661401455397074590303866009781148657954570396550703618437210885875866741044575478989978191912006970522334798649753600000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_173 36927733697396923753829554635211962404299715564140382424433649868278555214296659802052327860953228596413291334931704037143411082635200789592708437910693220744422451783693904122568819692138717826140678603271725989637483256524946200711557865266227200777205900363920166407372800000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_174 6425425663347064733166342506526881458348150508160426541851455077080468607287618805557105047805861775775912692278116502462953528378524937389131268196460620409529506610362739317326974626432136901748478076969280322196922086635340638923811068556323532935233826663322108954882867200000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_175 1124449491085736328304109938642204255210926338928074644824004638489082006275333290972493383366025810760784721148670387931016867466241864043097971934380608571667663656813479380532220559625623957805983663469624056384461365161184611811666936997356618263665919666081369067104501760000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_176 197903110431089593781523349201027948917123035651341137489024816374078433104458659211158835472420542693898110922165988275858968674058568071585243060450987108613508803599172370973670818494109816573853124770653833923665200268368491678853380911534764814405201861230320955810392309760000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_177 35028850546302858099329632808581946958330777310287381335557392498211882659489182680375113878618436056819965633223379924827037455308366548670588021699824718224591058237053509662339734873457437533572003084405728604488740447501223027157048421341653372149720729437766809178439438827520000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_178 6235135397241908741680674639927586558582878361231153877729215864681715113389074517106770270394081618113953882713761626619212667044889245663364667862568799843977208366195524719896472807475423880975816549024219691598995799655217698833954618998814300242650289839922492033762220111298560000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_179 1116089236106301664760840760547037993986335226660376544113529639778027005296644338562111878400540609642397745005763331164839067401035174973742275547399815172071920297548998924861468632538100874694671162275335324796220248138283968091277876800787759743434401881346126074043437399922442240000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_180 200896062499134299656951336898466838917540340798867777940435335160044860953395980941180138112097309735631594101037399609671032132186331495273609598531966730972945653558819806475064353856858157445040809209560358463319644664891114256430017824141796753818192338642302693327818731986039603200000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_181 36362187312343308237908191978622497844074801684595067807218795663968119832564672550353604998289613062149318532287769329350456815925726000644523337334285978306103163294146384971986648048091326497552386466930424881860855684345291680413833226169665212441092813294256787492335190489473168179200000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_182 6617918090846482099299290940109294607621613906596302340913820810842197809526770404164356109688709577311175972876374017941783140498482132117303247394840048051710775719534642064901569944752621422554534336981337328498675734550843085835317647162879068664278892019554735323605004669084116608614400000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_183 1211079010624906224171770242040000913194755344907123328387229208384122199143398983962077168073033852647945203036376445283346314711222230177466494273255728793463071956674839497876987299889729720327479783667584731115257659422804284707863129430806869565563037239578516564219715854442393339376435200000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_184 222838537954982745247605724535360168027834983462910692423250174342678484642385413049022198925438228887221917358693265932135721906864890352653834946279054097997205240028170467609365663179710268540256280194835590525207409333795988386246815815268464000063598852082447047816427717217400374445264076800000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_185 41225129521671807870807059039041631085149471940638478098301282253395519658841301414069106801206072344136054711358254197445108552770004715240959465061625008129482969405211536507732647688246399679947411836044584247163370726752257851455660925824665840011765787635252703846039127685219069272373854208000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_186 7667874091030956263970112981261743381837801780958756926284038499131566656544482063016853865024329456009306176312635280724790190815220877034818460501462251512083832309369345790438272470013830340470218601504292669972386955175919960370752932203387846242188436500157002915363277749450746884661536882688000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_187 1433892455022788821362411127495946012403668933039287545215115199337602964773818145784151672759549608273740254970462797495535765682446304005511052113773441032759676641852067662811956951892586273667930878481302729284836360617897032589330798322033527247289237625529359545172932939147289667431707397062656000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_188 269571781544284298416133291969237850331889759411386058500441657475469357377477811407420514478795326355463167934447005929160723948299905153036077797389406914158819208668188720608647906955806219449571005154484913105549235796164642126794190084542303122490376673599519594492511392559690457477160990647779328000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_189 50949066711869732400649192182185953712727164528751965056583473262863708544343306356002477236492316681182538739610484120611376826228682073923818703706597906776016830438287668195034454414647375475968919974197648576948805565475117361964101925978495290150681191310309203359084653193781496463183427232430292992000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_190 9680322675255249156123346514615331205418161260462873360750859919944104623425228207640470674933540169424682360525991982916161596983449594045525553704253602287443197783274656957056546338783001340434094795097553229620273057440272298773179365935914105128629426348958748638226084106818484328004851174161755668480000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_191 1848941630973752588819559184291528260234868800748408811903414244709323983074218587659329898912306172360114330860464468736986865023838872462695380757512438036901650776605459478797800350707553256022912105863632666857472153971092009065677258893759594079568220432651120989901182064402330506648926574264895332679680000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_192 354996793146960497053355363383973425965094809743694491885455534984190204750249968830591340591162785093141951525209177997501478084577063512837513105442388103085116949108248219929177667335850225156399124325817472036634653562449665740610033707601842063277098323069015230061026956365247457276593902258859903874498560000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_193 68514381077363375931297585133106871211263298280533036933892918251948709516798243984304128734094417522976396644365371353517785270323373257977640029350380903895427571177891906446331289795819093455185030994882772103070488137552785487937736505567155518212479976352319939401778202578492759254382623135959961447778222080000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_194 13291789929008494930671731515822733014985079866423409165175226140878049646258859332955000974414316999457420949006882042582450342442734412047662165693973895355712948808511029850588270220388904130305896013007257787995674698685240384659920882080028170533221115412350068243944971300227595295350228888376232520868975083520000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_195 2591899036156656511480987645585432937922090573952564787209169097471219681020477569926225190010791814894197085056341998303577816776333210349294122310324909594364025017659650820864712692975836305409649722536415268659156566243621875008684572005605493253978117505408263307569269403544381082593294633233365341569450141286400000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_196 508012211086704676250273578534744855832729752494702698292997143104359057480013603705540137242115195719262628671043031667501252088161309228461647972823682280495348903461291560889483687823263915860291345617137392657194686983749887501702176113098676677779711031060019608283576803094698692188285748113739606947612227692134400000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_197 100078405584080821221303894971344736599047761241456431563720437191558734323562679929991407036696693556694737848195477238497746661367777918006944650646265409257583733981874437495228286501182991424477395086576066353467353335798727837835328694280439305522603073118823862831864630209655642361092292378406702568679608855350476800000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_198 19815524305648002601818171204326257846611456725808373449616646563928629396065410626138298593265945324225558093942704493222553838950820027765375040827960551033001579328411138624055200727234232302046524227142061137986535960488148111891395081467526982493475408477527124840709196781511817187496273890924527108598562553359394406400000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_199 3943289336823952517761816069660925311475679888435866316473712666221797249817016714601521420059923119520886060694598194151288213951213185525309633124764149655567314286353816586186984944719612228107258321201270166459320656137141474266387621212037869516201606287027897843301130159520851620311758504293980894611113948118519486873600000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_200 788657867364790503552363213932185062295135977687173263294742533244359449963403342920304284011984623904177212138919638830257642790242637105061926624952829931113462857270763317237396988943922445621451664240254033291864131227428294853277524242407573903240321257405579568660226031904170324062351700858796178922222789623703897374720000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_201 158520231340322891214025006000369197521322331515121825922243249182116249442644071926981161086408909404739619639922847404881786200838770058117447251615518816153806034311423426764716794777728411569911784512291060691664690376713087265508782372723922354551304572738521493300705432412738235136532691872618031963366780714364483372318720000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_202 32021086730745224025233051212074577899307110966054608836293136334787482387414102529250194539454599699757403167264415175786120812569431551739724344826334800863068818930907532206472792545101139137122180471482794259716267456096043627632774039290232315619363523693181341646742497347373123497579603758268842456600089704301625641208381440000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_203 6500280606341280477122309396051139313559343526109085593767506675961858924645062813437789491509283739050752842954676280684582524951594605003164041999745964575202970242974229037913976886655531244835802635711007234722402293587496856409453129975917160070730795309715812354288726961516744070008659562928575018689818209973230005165301432320000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_204 1326057243693621217332951116794432419966106079326253461128571361896219220627592813941309056267893882766353579962753961259654835090125299420645464567948176773341405929566742723734451284877728373946503737685045475883370067891849358707528438515087100654429082243182025720274900300149415790281766550837429303812722914834538921053721492193280000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_205 271841734957192349553254978942858646093051746261881959531357129188724940228656526857968356534918245967102483892364562058229241193475686381232320236429376238534988215561182258365562513399934316659033266225434322556090863917829118535043329895592855634157961859852315272656354561530630237007762142921673007281608197541080478816012905899622400000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_206 55999397401181624007970525662228881095168659729947683663459568612877337687103244532741481446193158669223111681827099783995223685855991394533857968704451505138207572405603545223305877760386469231760852842439470446554717967072798418218925958492128260636540143129576946167209039675309828823599001441864639500011288693462578636098658615322214400000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_207 11591875262044596169649898812081378386699912564099170518336130702865608901230371618277486659361983844529184118138209655287011302972190218668508599521821461563608967487959933861224316696399999130974496538384970382436826619184069272571317673407870549951763809627822427856612271212789134566484993298465980376502336759546753777672422333371698380800000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_208 2411110054505276003287178952912926704433581813332627467813915186196046651455917296601717225147292639662070296572747608299698351018215565483049788700538864005230665237495666243134657872851199819242695279984073839546859936790286408694834076068837074389966872402587064994175352412260139989828878606080923918312486045985724785755863845341313263206400000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_209 503922001391602684687020401158801681226618598986519140773108273914973750154286714989758900055784161689372691983704250134636955362807053185957405838412622577093209034636594244815143495425900762221723313516671432465293726789169859417220321898386948547503076332140696583782648654162369257874235628670913098927309583611016480222975543676334472010137600000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_210 105823620292236563784274284243348353057589905787169019562352737522144487532400210147849369011714673954768265316577892528273760626189481169051055226066650741189573897273684791411180134039439160066561895838501000817711682625725670477616267598661259194975646029749546282594356217374097544153589482020891750774735012558313460846824864172030239122128896000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_211 22328783881661914958481873975346502495151470121092663127656427617172486869336444341196216861471796204456103981797935323465763492125980526669772652700063306391000092324747490987759008282321662774044560021923711172537165034028116470777032463317525690139861312277154265627409161865934581816407380706408159413469087649804140238680046340298380454769197056000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_212 4733702182912325971198157282773458528972111665671644583063162654840567216299326200333597974632020795344694044141162288574741860330707871653991802372413420954892019572846468089404909755852192508097446724647826768577878987213960691804730882223315446309650598202756704313010742315578131345078364709758529795655446581758477730600169824143256656411069775872000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_213 1008278564960325431865207501230746666671059784788060296192453645481040817071756480671056368596620429408419831402067567466420016250440776662300253905324058663392000169016297703043245777996517004224756152349987101707088224276573627354407677913566190063955577417187178018671288113218141976501691683178566846474610121914555756617836172542513667815557862260736000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_214 215771612901509642419154405263379786667606793944644903385185080132942734853355886863606062879676771893401843920042459437813883477594326205732254335739348553965888036169487708451254596491254638904097816602897239765316879995186756253843243073503164673686493567278056095995655656228682382971362020200213305145566566089714931916216940924097924912529382523797504000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_215 46390896773824573120118197131626654133535460698098654227814792228582687993471515675675303519130505957081396442809128779129984947682780134232434682183959939102665927776439857317019738245619747364381030569622906549543129198965152594576297260803180404842596116964782060639065966089166712338842834343045860606296811709288710361986642298681053856193817242616463360000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_216 10020433703146107793945530580431357292843659510789309313207995121373860606589847385945865560132189286729581631646771816292076748699480508994205891351735346846175840399711009180476263461053865430706302603038547814701315906976472960428480208333486967446000761264392925098038248675260009865190052218097905890960111329206361438189114736515107632937864524405156085760000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_217 2174434113582705391286180135953604532547074113841280120966134941338127751629996882750252826548685075220319214067349484135380654467787270451742678423326570265620157366737288992163349171048688798463267664859364875790185551813894632412980205208366671935782165194373264746274299962531422140746241331327245578338344158437780432087037897823778356347516601795918870609920000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_218 474026636761029775300387269637885788095262156817399066370617417211711849855339320439555116187613346398029588666682187541512982673977624958479903896285192317905194305948729000291610119288614158064992350939341542922260450295429029866029684735423934482000512012373371714687797391831850026682680610229339536077759026539436134194974261725583681683758619191510313792962560000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_219 103811833450665520790784812050696987592862412343010395535165214369364895118319311176262570445087322861168479918003399071591343205601099865907098953286457117621237553002771651063862616124206500616233324855715797899975038614698957540660500957057841651558112130709768405516627628811175155843507053640225358401029226812136513388699363317902826288743137602940758720658800640000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_220 22838603359146414573972658651153337270429730715462287017736347161260276926030248458777765497919211029457065581960747795750095505232241970499561769723020565876672261660609763234049775547325430135571331468257475537994508495233770658945310210552725163342784668756149049213658078338458534285571551800849578848226429898670032945513859929938621783523490272646966918544936140800000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_221 5047331342371357620847957561904887536764970488117165430919732722638521200652684909389886175040145637510011493613325262860771106656325475480403151108787545058744569826994757674725000395958920059961264254484902093896786377446663315626913556532152261098755411795108939876218435312799336077111312947987756925458041007606077280958563044516435414158691350254979688998430887116800000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_222 1120507558006441391828246578742885033161823448362010725664180664425751706544896049884554730858912331527222551582158208355091185677704255556649499546150835003041294501592836203788950087902880253311400664495648264845086575793159256069174809550137801963923701418514184652520492639441452609118711474453282037451685103688549156372800995882648661943229479756605490957651656939929600000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_223 249873185435436430377698987059663362395086628984728391823112288166942630559511819124255704981537449930570629002821280463185334406128048989132838398791636205678208673855202473444935869602342296488442348182529563060454306401874514103425982529680729837954985416328663177512069858595443931833472658803081894351725778122546461871134622081830651613340173985723024483556319497604300800000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_224 55971593537537760404604573101364593176499404892579159768377152549395149245330647483833277915864388784447820896631966823753514906972682973565755801329326510071918742943565354051665634790924674413411085992886622125541764634019891159167420086648483483701916733257620551762703648325379440730697875571890344334786574299450407459134155346330065961388198972801957484316615567463363379200000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_225 12593608545945996091036028947807033464712366100830310947884859323613908580199395683862487531069487476500759701742192535344540854068853669052295055299098464766181717162302204661624767827958051743017494348399489978246897042654475510812669519495908783832931264982964624146608320873210374164407022003675327475326979217376341678305184952924264841312344768880440433971238502679256760320000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_226 2846155531383795116574142542204389563024994738787650274221978207136743339125063424552922182021704169689171692593735512987866233019560929205818682497596253037157068078680298253527197529118519693921953722738284735083798731639911465443663311406075385146242465886150005057133480517345544561155986972830624009423897303127053219296971799360883854136589917766979538077499901605512027832320000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_227 646077305624121491462330357080396430806673805704796612248389053020040737981389397373513335318926846519441974218777961448245634895440330929720840926954349439434654453860427703550673839109903970520283495061590634864022312082259902655711571689179112428197039756156051147969300077437438615382409042832551650139224687809841080780412598454920634889005911333104355143592477664451230317936640000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_228 147305625682299700053411321414330386223921627700693627592632704088569288259756782601161040452715321006432770121881375210200004756160395451976351731345591672191101215480177516409553635317058105278624636874042664748997087154755257805502238345132837633628925064403579661737000417655736004307189261765821776231743228820643766417934072447721904754693347783947792972739084907494880512489553920000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_229 33732988281246631312231192603881658445278052743458840718712889236282367011484303215665878263671808510473104357910834923135801089160730558502584546478140492931762178344960651257787782487606306108805041844155770227520332958438954037460012581035419818101023839748419742537773095643163544986346340944373186757069199399927422509706902590528316188824776642524044590757250443816327637360107847680000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_230 7758587304686725201813174298892781442413952130995533365303964524344944412641389739603152000644515957408814002319492032321234250506968028455594445689972313374305301019340949789291189972149450405025159624155827152329676580440959428615802893638146558163235483142136540783687811997927615346859658417205832954125915861983307177232587595821512723429698627780530255874167602077755356592824804966400000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_231 1792233667382633521618843263044232513197622942259968207385215805123682159320161029848328112148883186161436034535802659466205111867109614573242316954383604389464524535467759401326264883566523043560811873179996072188155290081861628010250468430411854935707396605833540921031884571521279145124581094374547412403086564118143957940727734634769439112260383017302489106932716079961487372942529947238400000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_232 415798210832770977015571637026261943061848522604312624113370066788694260962277358924812122018540899189453160012306216996159585953169430580992217533416996218355769692228520181107693452987433346106108354577759088747652027298991897698378108675855550345084116012553381493679397220592936761668902813894894999677516082875409398242248834435266509874044408860014177472808390130551065070522666947759308800000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_233 96880983124035637644628191427119032733410705766804841418415225561765762804210624629481224430320029511142586282867348560105183527088477325371186685286160118876894338289245202198092574546071969642723246616617867678202922360665112163722099321474343230404599030924937888027299552398154265468854355637510534924861247309970389790443978423417096800652347264383303351164354900418398161431781398827918950400000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_234 22670150051024339208842996793945853659618105149432332891909162781453188496185286163298606516694886905607365190190959563064612945338703694136857684356961467817193275159683377314353662443780840896397239708288581036699483832395636246310971241224996315914676173236435465798388095261168098119711919219177465172417531870533071210963890951079600651352649259865692984172459046697905169775036847325733034393600000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_235 5327485261990719714078104246577275610010254710116598229598653253641499296603542248375172531423298422817730819694875497320184042154595368122161555823885944937040419662525593668873110674288497610653351331447816543624378700612974517883078241687874134239948900710562334462621202386374503058132301016506704315518119989575271734576514373503706153067872576068437851280527875974007714897133659121547263082496000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_236 1257286521829809852522432602192237043962420111587517182185282167859393833998435970616540717415898427784984473447990617367563433948484506876830127174437083005141539040356040105854054119132085436114190914221684704295353373344661986220406465038338295680627940567692710933178603763184382721719223039895582218462276317539764129360057392146874652124017927952151332902204578729865820715723543552685154087469056000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_237 297976905673664935047816526719560179419093566446241572177911873782676338657629325036120150027567927385041320207173776316112533845790828129808740140341588672218544752564381505087410826234304248359063246670539274917998749482684890734236332214086176076308821914543172491163329091874698705047455860455252985775559487256924098658333601938809292553392248924659865897822485158978199509626479821986381518730166272000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_238 70918503550332254541380333359255322701744268814205494178343025960276968600515779358596595706561166717639834209307358763234783055298217094894480153401298103988013651110322798210803776643764411109457052707588347430483702376879003994748247066952509906161499615661275052896872323866178291801294494788350210614583157967147935480683397261436611627707355244069048083681751467836811483291102197632758801457779572736000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_239 16949522348529408835389899672862022125716880246595113108623983204506195495523271266704586373868118845515920376024458744413113150216273885679780756662910246853135262615367148772382102617859694255160235597113615035885604868074081954744831049001649867572598408143044737642352485404016611740509384254415700336885374754148356579883331945483350179022057903332502491999938600812997944506573425234229353548409317883904000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_240 4067885363647058120493575921486885310172051259182827146069755969081486918925585104009100729728348522923820890245870098659147156051905732563147381599098459244752463027688115705371704628286326621238456543307267608612545168337779669138759451760395968217423617954330737034164596496963986817722252221059768080852489940995605579171999666916004042965293896799800598079985264195119506681577622056215044851618236292136960000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_241 980360372638941007038951797078339359751464353463061342202811188548638347461066010066193275864531994024640834549254693776854464608509281547718518965382728677985343589672835884994580815417004715718468026937051493675623385569404900262441027874255428340399091926993707625233667755768320823071062785275404107485450075779940944580451919726756974354635829128751944137276448671023801110260206915547825809239994946405007360000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_242 237247210178623723703426334892958125059854373538060844813080307628770480085577974436018772759216742553963081960919635893998780435259246134547881589622620340072453148700826284168688557330915141203869262518766461469500859307795985863510728745569813658376580246332477245306547596895933639183197194036647794011478918338745708588469364573875187793821870649157970481220900578387759868682970073562573845836078777030011781120000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_243 57651072073405564859932599378988824389544612769748785289578514753791226660795447787952561780489668440613028916503471522241703645767996810695135226278296742637606115134300787052991319431412379312540230792060250137088708811794424564833107085173464718985508999858791970609491066045711874321516918150905413944789377156315207186998055591451670633898714567745386826936678840548225648089961727875705444538167142818292862812160000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_244 14066861585910957825823554248473273151048885515818703610657157599925059305234089260260425074439479099509579055626847051426975689567391221809612995211904405203575892092769392040929881941264620552259816313262701033449644950077839593819278128782325391432464195965545240828715820115153697334450128028820921002528608026140910553627525564314207634671286354529874385772549637093767058133950661601672128467312782847663458526167040000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_245 3446381088548184667326770790875951922006976951375582384611003611981639529782351868763804143237672379379846868628577527599609043944010849343355183826916579274876093562728501050027821075609832035303654996749361753195163012769070700485723141551669720900953728011558584003035375928212655846940281367061125645619508966404523085638743763256980870494465156859819224514274661087972929242817912092409671474491631797677547338910924800000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_246 847809747782853428162385614555484172813716330038393266614306888547483324326458559715895819236467405327442329682630071789503824810226668938465375221421478501619519016431211258306843984600018680684699129200342991286010101141191392319487892821710751341634617090843411664746702478340313338347309216297036908822399205735512679067130965761217294141638428587515529230511566627641340593733206374732779182724941422228676645372087500800000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_247 209409007702364796756109246795204590684987933519483136853733801471228381108635264249826267351407449115878255431609627732007444728125987227800947679691105189900021197058509180801790464196204614129120684912484718847644494981874273902913509526962555581383750421438322681192435512150057394571785376425368116479132603816671631729581348543020671652984691861116335719936356957027411126652101974558996458133060531290483131406905612697600000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_248 51933433910186469595515093205210738489877007512831817939725982764864638514941545533956914303149047380737807347039187677537846292575244832494635024563394087095205256870510276838844035120658744304021929858296210274215834755504819927922550362686713784183170104516704024935724007013214233853802773353491292886824885746534564668936174438669126569940203581556851258544216525342797959409721289690631121616999011760039816588912591949004800000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_249 12931425043636430929283258208097473883979374870695122666991769708451294990220444837955271661484112797803714029412757731706923726851235963291164121116285127686706108960757058932872164745044027331701460534715756358279742854120700162052715040308991732261609356024659302208995277746290344229596890565019331928819396550887106602565107435228612515915110691807655963377509914810356691893020601132967149282632753928249914330639235395302195200000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_250 3232856260909107732320814552024368470994843717673780666747942427112823747555111209488817915371028199450928507353189432926730931712808990822791030279071281921676527240189264733218041186261006832925365133678939089569935713530175040513178760077247933065402339006164825552248819436572586057399222641254832982204849137721776650641276858807153128978777672951913990844377478702589172973255150283241787320658188482062478582659808848825548800000000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_251 811446921488186040812524452558116486219705773136118947353733549205318760636332913581693296758128078062183055345650547664609463859915056696520548600046891762340808337287505448037728337751512715064266648553413711482053864096073935168807868779389231199415987090547371213614453678579719100407204882954963078533417133568165939310960491560595435373673195910930411701938747154349882416287042721093688617485205308997682124247612021055212748800000000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_252 204484624215022882284756162044645354527365854830301974733140854399740327680355894222586710783048275671670129947103938011481584892698594287523178247211816724109883700996451372905507541113381204196195195435460255293477573752210631662539582932406086262252828746817937545830842327002089213302615630504650695790421117659177816706362043873270049714165645369554463748888564282896170368904334765715609531606271737867415895310398229305913612697600000000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_253 51734609926400789218043308997295274695423561272066399607484636163134302903130041238314437828111213744932542876617296316904840977852744354743364096544589631199800576352102197345093407901685444661637384445171444589249826159309289810622514481898739824349965672944938199095203108731528570965561754517676626034976542767771987626709597099937322577683908278497279328468806763572731103332796695726049211496386749680456221513530752014396144012492800000000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_254 13140590921305800461383000485312999772637584563104865500301097585436112937395030474531867208340248291212865890660793264493829608374597066104814480522325766324749346393433958125653725607028102944055895649073546925669455844464559611898118678402279915384891280928014302570181589617808257025252685647489863012884041863014084857184237663384079934731712702738308949431076917947473700246530360714416499720082234418835880264436811011656620579173171200000000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_255 3350850684932979117652665123754814942022584063591740702576779884286208799035732771005626138126763314259280802118502282445926550135522251856727692533193070412811083330325659322041700029792166250734253390513754466045711240338462701034020262992581378423147276636643647155396305352541105541439434840109915068285430675068591638581980604162940383356586739198268782104924614076605793562865241982176207428620969776803149467431386807972438247689158656000000000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_256 857817775342842654119082271681232625157781520279485619859655650377269452553147589377440291360451408450375885342336584306157196834693696475322289288497426025679637332563368786442675207626794560187968867971521143307702077526646451464709187326100832876325702818980773671781454170250523018608495319068138257481070252817559459476987034665712738139286205234756808218860701203611083152093501947437109101726968262861606263662435022840944191408424615936000000000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds +SET: :1:factorial_256 857817775342842654119082271681232625157781520279485619859655650377269452553147589377440291360451408450375885342336584306157196834693696475322289288497426025679637332563368786442675207626794560187968867971521143307702077526646451464709187326100832876325702818980773671781454170250523018608495319068138257481070252817559459476987034665712738139286205234756808218860701203611083152093501947437109101726968262861606263662435022840944191408424615936000000000000000000000000000000000000000000000000000000000000000 expires in 60000 milliseconds diff --git a/testing/btest/Baseline/scripts.base.protocols.redis.django/resp.log b/testing/btest/Baseline/scripts.base.protocols.redis.django/resp.log new file mode 100644 index 0000000000..4b9dbf2ff1 --- /dev/null +++ b/testing/btest/Baseline/scripts.base.protocols.redis.django/resp.log @@ -0,0 +1,326 @@ +### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63. +#separator \x09 +#set_separator , +#empty_field (empty) +#unset_field - +#path resp +#open XXXX-XX-XX-XX-XX-XX +#fields ts uid id.orig_h id.orig_p id.resp_h id.resp_p cmd.raw cmd.key cmd.value +#types time string addr port addr port vector[string] string string +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 CLIENT,SETINFO,LIB-NAME,redis-py - - +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 CLIENT,SETINFO,LIB-VER,5.1.1 - - +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 GET,:1:factorial_50 :1:factorial_50 - +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_1,1,PX,60000 :1:factorial_1 1 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_2,2,PX,60000 :1:factorial_2 2 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_3,6,PX,60000 :1:factorial_3 6 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_4,24,PX,60000 :1:factorial_4 24 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_5,120,PX,60000 :1:factorial_5 120 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_6,720,PX,60000 :1:factorial_6 720 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_7,5040,PX,60000 :1:factorial_7 5040 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_8,40320,PX,60000 :1:factorial_8 40320 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_9,362880,PX,60000 :1:factorial_9 362880 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_10,3628800,PX,60000 :1:factorial_10 3628800 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_11,39916800,PX,60000 :1:factorial_11 39916800 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_12,479001600,PX,60000 :1:factorial_12 479001600 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_13,6227020800,PX,60000 :1:factorial_13 6227020800 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_14,87178291200,PX,60000 :1:factorial_14 87178291200 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_15,1307674368000,PX,60000 :1:factorial_15 1307674368000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_16,20922789888000,PX,60000 :1:factorial_16 20922789888000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_17,355687428096000,PX,60000 :1:factorial_17 355687428096000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_18,6402373705728000,PX,60000 :1:factorial_18 6402373705728000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_19,121645100408832000,PX,60000 :1:factorial_19 121645100408832000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_20,2432902008176640000,PX,60000 :1:factorial_20 2432902008176640000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_21,51090942171709440000,PX,60000 :1:factorial_21 51090942171709440000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_22,1124000727777607680000,PX,60000 :1:factorial_22 1124000727777607680000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_23,25852016738884976640000,PX,60000 :1:factorial_23 25852016738884976640000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_24,620448401733239439360000,PX,60000 :1:factorial_24 620448401733239439360000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_25,15511210043330985984000000,PX,60000 :1:factorial_25 15511210043330985984000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_26,403291461126605635584000000,PX,60000 :1:factorial_26 403291461126605635584000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_27,10888869450418352160768000000,PX,60000 :1:factorial_27 10888869450418352160768000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_28,304888344611713860501504000000,PX,60000 :1:factorial_28 304888344611713860501504000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_29,8841761993739701954543616000000,PX,60000 :1:factorial_29 8841761993739701954543616000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_30,265252859812191058636308480000000,PX,60000 :1:factorial_30 265252859812191058636308480000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_31,8222838654177922817725562880000000,PX,60000 :1:factorial_31 8222838654177922817725562880000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_32,263130836933693530167218012160000000,PX,60000 :1:factorial_32 263130836933693530167218012160000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_33,8683317618811886495518194401280000000,PX,60000 :1:factorial_33 8683317618811886495518194401280000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_34,295232799039604140847618609643520000000,PX,60000 :1:factorial_34 295232799039604140847618609643520000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_35,10333147966386144929666651337523200000000,PX,60000 :1:factorial_35 10333147966386144929666651337523200000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_36,371993326789901217467999448150835200000000,PX,60000 :1:factorial_36 371993326789901217467999448150835200000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_37,13763753091226345046315979581580902400000000,PX,60000 :1:factorial_37 13763753091226345046315979581580902400000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_38,523022617466601111760007224100074291200000000,PX,60000 :1:factorial_38 523022617466601111760007224100074291200000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_39,20397882081197443358640281739902897356800000000,PX,60000 :1:factorial_39 20397882081197443358640281739902897356800000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_40,815915283247897734345611269596115894272000000000,PX,60000 :1:factorial_40 815915283247897734345611269596115894272000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_41,33452526613163807108170062053440751665152000000000,PX,60000 :1:factorial_41 33452526613163807108170062053440751665152000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_42,1405006117752879898543142606244511569936384000000000,PX,60000 :1:factorial_42 1405006117752879898543142606244511569936384000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_43,60415263063373835637355132068513997507264512000000000,PX,60000 :1:factorial_43 60415263063373835637355132068513997507264512000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_44,2658271574788448768043625811014615890319638528000000000,PX,60000 :1:factorial_44 2658271574788448768043625811014615890319638528000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_45,119622220865480194561963161495657715064383733760000000000,PX,60000 :1:factorial_45 119622220865480194561963161495657715064383733760000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_46,5502622159812088949850305428800254892961651752960000000000,PX,60000 :1:factorial_46 5502622159812088949850305428800254892961651752960000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_47,258623241511168180642964355153611979969197632389120000000000,PX,60000 :1:factorial_47 258623241511168180642964355153611979969197632389120000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_48,12413915592536072670862289047373375038521486354677760000000000,PX,60000 :1:factorial_48 12413915592536072670862289047373375038521486354677760000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_49,608281864034267560872252163321295376887552831379210240000000000,PX,60000 :1:factorial_49 608281864034267560872252163321295376887552831379210240000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_50,30414093201713378043612608166064768844377641568960512000000000000,PX,60000 :1:factorial_50 30414093201713378043612608166064768844377641568960512000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_50,30414093201713378043612608166064768844377641568960512000000000000,PX,60000 :1:factorial_50 30414093201713378043612608166064768844377641568960512000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 GET,:1:factorial_50 :1:factorial_50 - +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 GET,:1:factorial_10 :1:factorial_10 - +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 GET,:1:factorial_25 :1:factorial_25 - +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 GET,:1:factorial_256 :1:factorial_256 - +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_1,1,PX,60000 :1:factorial_1 1 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_2,2,PX,60000 :1:factorial_2 2 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_3,6,PX,60000 :1:factorial_3 6 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_4,24,PX,60000 :1:factorial_4 24 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_5,120,PX,60000 :1:factorial_5 120 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_6,720,PX,60000 :1:factorial_6 720 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_7,5040,PX,60000 :1:factorial_7 5040 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_8,40320,PX,60000 :1:factorial_8 40320 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_9,362880,PX,60000 :1:factorial_9 362880 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_10,3628800,PX,60000 :1:factorial_10 3628800 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_11,39916800,PX,60000 :1:factorial_11 39916800 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_12,479001600,PX,60000 :1:factorial_12 479001600 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_13,6227020800,PX,60000 :1:factorial_13 6227020800 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_14,87178291200,PX,60000 :1:factorial_14 87178291200 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_15,1307674368000,PX,60000 :1:factorial_15 1307674368000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_16,20922789888000,PX,60000 :1:factorial_16 20922789888000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_17,355687428096000,PX,60000 :1:factorial_17 355687428096000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_18,6402373705728000,PX,60000 :1:factorial_18 6402373705728000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_19,121645100408832000,PX,60000 :1:factorial_19 121645100408832000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_20,2432902008176640000,PX,60000 :1:factorial_20 2432902008176640000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_21,51090942171709440000,PX,60000 :1:factorial_21 51090942171709440000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_22,1124000727777607680000,PX,60000 :1:factorial_22 1124000727777607680000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_23,25852016738884976640000,PX,60000 :1:factorial_23 25852016738884976640000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_24,620448401733239439360000,PX,60000 :1:factorial_24 620448401733239439360000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_25,15511210043330985984000000,PX,60000 :1:factorial_25 15511210043330985984000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_26,403291461126605635584000000,PX,60000 :1:factorial_26 403291461126605635584000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_27,10888869450418352160768000000,PX,60000 :1:factorial_27 10888869450418352160768000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_28,304888344611713860501504000000,PX,60000 :1:factorial_28 304888344611713860501504000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_29,8841761993739701954543616000000,PX,60000 :1:factorial_29 8841761993739701954543616000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_30,265252859812191058636308480000000,PX,60000 :1:factorial_30 265252859812191058636308480000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_31,8222838654177922817725562880000000,PX,60000 :1:factorial_31 8222838654177922817725562880000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_32,263130836933693530167218012160000000,PX,60000 :1:factorial_32 263130836933693530167218012160000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_33,8683317618811886495518194401280000000,PX,60000 :1:factorial_33 8683317618811886495518194401280000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_34,295232799039604140847618609643520000000,PX,60000 :1:factorial_34 295232799039604140847618609643520000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_35,10333147966386144929666651337523200000000,PX,60000 :1:factorial_35 10333147966386144929666651337523200000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_36,371993326789901217467999448150835200000000,PX,60000 :1:factorial_36 371993326789901217467999448150835200000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_37,13763753091226345046315979581580902400000000,PX,60000 :1:factorial_37 13763753091226345046315979581580902400000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_38,523022617466601111760007224100074291200000000,PX,60000 :1:factorial_38 523022617466601111760007224100074291200000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_39,20397882081197443358640281739902897356800000000,PX,60000 :1:factorial_39 20397882081197443358640281739902897356800000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_40,815915283247897734345611269596115894272000000000,PX,60000 :1:factorial_40 815915283247897734345611269596115894272000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_41,33452526613163807108170062053440751665152000000000,PX,60000 :1:factorial_41 33452526613163807108170062053440751665152000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_42,1405006117752879898543142606244511569936384000000000,PX,60000 :1:factorial_42 1405006117752879898543142606244511569936384000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_43,60415263063373835637355132068513997507264512000000000,PX,60000 :1:factorial_43 60415263063373835637355132068513997507264512000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_44,2658271574788448768043625811014615890319638528000000000,PX,60000 :1:factorial_44 2658271574788448768043625811014615890319638528000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_45,119622220865480194561963161495657715064383733760000000000,PX,60000 :1:factorial_45 119622220865480194561963161495657715064383733760000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_46,5502622159812088949850305428800254892961651752960000000000,PX,60000 :1:factorial_46 5502622159812088949850305428800254892961651752960000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_47,258623241511168180642964355153611979969197632389120000000000,PX,60000 :1:factorial_47 258623241511168180642964355153611979969197632389120000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_48,12413915592536072670862289047373375038521486354677760000000000,PX,60000 :1:factorial_48 12413915592536072670862289047373375038521486354677760000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_49,608281864034267560872252163321295376887552831379210240000000000,PX,60000 :1:factorial_49 608281864034267560872252163321295376887552831379210240000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_50,30414093201713378043612608166064768844377641568960512000000000000,PX,60000 :1:factorial_50 30414093201713378043612608166064768844377641568960512000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_51,1551118753287382280224243016469303211063259720016986112000000000000,PX,60000 :1:factorial_51 1551118753287382280224243016469303211063259720016986112000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_52,80658175170943878571660636856403766975289505440883277824000000000000,PX,60000 :1:factorial_52 80658175170943878571660636856403766975289505440883277824000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_53,4274883284060025564298013753389399649690343788366813724672000000000000,PX,60000 :1:factorial_53 4274883284060025564298013753389399649690343788366813724672000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_54,230843697339241380472092742683027581083278564571807941132288000000000000,PX,60000 :1:factorial_54 230843697339241380472092742683027581083278564571807941132288000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_55,12696403353658275925965100847566516959580321051449436762275840000000000000,PX,60000 :1:factorial_55 12696403353658275925965100847566516959580321051449436762275840000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_56,710998587804863451854045647463724949736497978881168458687447040000000000000,PX,60000 :1:factorial_56 710998587804863451854045647463724949736497978881168458687447040000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_57,40526919504877216755680601905432322134980384796226602145184481280000000000000,PX,60000 :1:factorial_57 40526919504877216755680601905432322134980384796226602145184481280000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_58,2350561331282878571829474910515074683828862318181142924420699914240000000000000,PX,60000 :1:factorial_58 2350561331282878571829474910515074683828862318181142924420699914240000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_59,138683118545689835737939019720389406345902876772687432540821294940160000000000000,PX,60000 :1:factorial_59 138683118545689835737939019720389406345902876772687432540821294940160000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_60,8320987112741390144276341183223364380754172606361245952449277696409600000000000000,PX,60000 :1:factorial_60 8320987112741390144276341183223364380754172606361245952449277696409600000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_61,507580213877224798800856812176625227226004528988036003099405939480985600000000000000,PX,60000 :1:factorial_61 507580213877224798800856812176625227226004528988036003099405939480985600000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_62,31469973260387937525653122354950764088012280797258232192163168247821107200000000000000,PX,60000 :1:factorial_62 31469973260387937525653122354950764088012280797258232192163168247821107200000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_63,1982608315404440064116146708361898137544773690227268628106279599612729753600000000000000,PX,60000 :1:factorial_63 1982608315404440064116146708361898137544773690227268628106279599612729753600000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_64,126886932185884164103433389335161480802865516174545192198801894375214704230400000000000000,PX,60000 :1:factorial_64 126886932185884164103433389335161480802865516174545192198801894375214704230400000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_65,8247650592082470666723170306785496252186258551345437492922123134388955774976000000000000000,PX,60000 :1:factorial_65 8247650592082470666723170306785496252186258551345437492922123134388955774976000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_66,544344939077443064003729240247842752644293064388798874532860126869671081148416000000000000000,PX,60000 :1:factorial_66 544344939077443064003729240247842752644293064388798874532860126869671081148416000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_67,36471110918188685288249859096605464427167635314049524593701628500267962436943872000000000000000,PX,60000 :1:factorial_67 36471110918188685288249859096605464427167635314049524593701628500267962436943872000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_68,2480035542436830599600990418569171581047399201355367672371710738018221445712183296000000000000000,PX,60000 :1:factorial_68 2480035542436830599600990418569171581047399201355367672371710738018221445712183296000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_69,171122452428141311372468338881272839092270544893520369393648040923257279754140647424000000000000000,PX,60000 :1:factorial_69 171122452428141311372468338881272839092270544893520369393648040923257279754140647424000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_70,11978571669969891796072783721689098736458938142546425857555362864628009582789845319680000000000000000,PX,60000 :1:factorial_70 11978571669969891796072783721689098736458938142546425857555362864628009582789845319680000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_71,850478588567862317521167644239926010288584608120796235886430763388588680378079017697280000000000000000,PX,60000 :1:factorial_71 850478588567862317521167644239926010288584608120796235886430763388588680378079017697280000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_72,61234458376886086861524070385274672740778091784697328983823014963978384987221689274204160000000000000000,PX,60000 :1:factorial_72 61234458376886086861524070385274672740778091784697328983823014963978384987221689274204160000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_73,4470115461512684340891257138125051110076800700282905015819080092370422104067183317016903680000000000000000,PX,60000 :1:factorial_73 4470115461512684340891257138125051110076800700282905015819080092370422104067183317016903680000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_74,330788544151938641225953028221253782145683251820934971170611926835411235700971565459250872320000000000000000,PX,60000 :1:factorial_74 330788544151938641225953028221253782145683251820934971170611926835411235700971565459250872320000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_75,24809140811395398091946477116594033660926243886570122837795894512655842677572867409443815424000000000000000000,PX,60000 :1:factorial_75 24809140811395398091946477116594033660926243886570122837795894512655842677572867409443815424000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_76,1885494701666050254987932260861146558230394535379329335672487982961844043495537923117729972224000000000000000000,PX,60000 :1:factorial_76 1885494701666050254987932260861146558230394535379329335672487982961844043495537923117729972224000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_77,145183092028285869634070784086308284983740379224208358846781574688061991349156420080065207861248000000000000000000,PX,60000 :1:factorial_77 145183092028285869634070784086308284983740379224208358846781574688061991349156420080065207861248000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_78,11324281178206297831457521158732046228731749579488251990048962825668835325234200766245086213177344000000000000000000,PX,60000 :1:factorial_78 11324281178206297831457521158732046228731749579488251990048962825668835325234200766245086213177344000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_79,894618213078297528685144171539831652069808216779571907213868063227837990693501860533361810841010176000000000000000000,PX,60000 :1:factorial_79 894618213078297528685144171539831652069808216779571907213868063227837990693501860533361810841010176000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_80,71569457046263802294811533723186532165584657342365752577109445058227039255480148842668944867280814080000000000000000000,PX,60000 :1:factorial_80 71569457046263802294811533723186532165584657342365752577109445058227039255480148842668944867280814080000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_81,5797126020747367985879734231578109105412357244731625958745865049716390179693892056256184534249745940480000000000000000000,PX,60000 :1:factorial_81 5797126020747367985879734231578109105412357244731625958745865049716390179693892056256184534249745940480000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_82,475364333701284174842138206989404946643813294067993328617160934076743994734899148613007131808479167119360000000000000000000,PX,60000 :1:factorial_82 475364333701284174842138206989404946643813294067993328617160934076743994734899148613007131808479167119360000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_83,39455239697206586511897471180120610571436503407643446275224357528369751562996629334879591940103770870906880000000000000000000,PX,60000 :1:factorial_83 39455239697206586511897471180120610571436503407643446275224357528369751562996629334879591940103770870906880000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_84,3314240134565353266999387579130131288000666286242049487118846032383059131291716864129885722968716753156177920000000000000000000,PX,60000 :1:factorial_84 3314240134565353266999387579130131288000666286242049487118846032383059131291716864129885722968716753156177920000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_85,281710411438055027694947944226061159480056634330574206405101912752560026159795933451040286452340924018275123200000000000000000000,PX,60000 :1:factorial_85 281710411438055027694947944226061159480056634330574206405101912752560026159795933451040286452340924018275123200000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_86,24227095383672732381765523203441259715284870552429381750838764496720162249742450276789464634901319465571660595200000000000000000000,PX,60000 :1:factorial_86 24227095383672732381765523203441259715284870552429381750838764496720162249742450276789464634901319465571660595200000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_87,2107757298379527717213600518699389595229783738061356212322972511214654115727593174080683423236414793504734471782400000000000000000000,PX,60000 :1:factorial_87 2107757298379527717213600518699389595229783738061356212322972511214654115727593174080683423236414793504734471782400000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_88,185482642257398439114796845645546284380220968949399346684421580986889562184028199319100141244804501828416633516851200000000000000000000,PX,60000 :1:factorial_88 185482642257398439114796845645546284380220968949399346684421580986889562184028199319100141244804501828416633516851200000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_89,16507955160908461081216919262453619309839666236496541854913520707833171034378509739399912570787600662729080382999756800000000000000000000,PX,60000 :1:factorial_89 16507955160908461081216919262453619309839666236496541854913520707833171034378509739399912570787600662729080382999756800000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_90,1485715964481761497309522733620825737885569961284688766942216863704985393094065876545992131370884059645617234469978112000000000000000000000,PX,60000 :1:factorial_90 1485715964481761497309522733620825737885569961284688766942216863704985393094065876545992131370884059645617234469978112000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_91,135200152767840296255166568759495142147586866476906677791741734597153670771559994765685283954750449427751168336768008192000000000000000000000,PX,60000 :1:factorial_91 135200152767840296255166568759495142147586866476906677791741734597153670771559994765685283954750449427751168336768008192000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_92,12438414054641307255475324325873553077577991715875414356840239582938137710983519518443046123837041347353107486982656753664000000000000000000000,PX,60000 :1:factorial_92 12438414054641307255475324325873553077577991715875414356840239582938137710983519518443046123837041347353107486982656753664000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_93,1156772507081641574759205162306240436214753229576413535186142281213246807121467315215203289516844845303838996289387078090752000000000000000000000,PX,60000 :1:factorial_93 1156772507081641574759205162306240436214753229576413535186142281213246807121467315215203289516844845303838996289387078090752000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_94,108736615665674308027365285256786601004186803580182872307497374434045199869417927630229109214583415458560865651202385340530688000000000000000000000,PX,60000 :1:factorial_94 108736615665674308027365285256786601004186803580182872307497374434045199869417927630229109214583415458560865651202385340530688000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_95,10329978488239059262599702099394727095397746340117372869212250571234293987594703124871765375385424468563282236864226607350415360000000000000000000000,PX,60000 :1:factorial_95 10329978488239059262599702099394727095397746340117372869212250571234293987594703124871765375385424468563282236864226607350415360000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_96,991677934870949689209571401541893801158183648651267795444376054838492222809091499987689476037000748982075094738965754305639874560000000000000000000000,PX,60000 :1:factorial_96 991677934870949689209571401541893801158183648651267795444376054838492222809091499987689476037000748982075094738965754305639874560000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_97,96192759682482119853328425949563698712343813919172976158104477319333745612481875498805879175589072651261284189679678167647067832320000000000000000000000,PX,60000 :1:factorial_97 96192759682482119853328425949563698712343813919172976158104477319333745612481875498805879175589072651261284189679678167647067832320000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_98,9426890448883247745626185743057242473809693764078951663494238777294707070023223798882976159207729119823605850588608460429412647567360000000000000000000000,PX,60000 :1:factorial_98 9426890448883247745626185743057242473809693764078951663494238777294707070023223798882976159207729119823605850588608460429412647567360000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_99,933262154439441526816992388562667004907159682643816214685929638952175999932299156089414639761565182862536979208272237582511852109168640000000000000000000000,PX,60000 :1:factorial_99 933262154439441526816992388562667004907159682643816214685929638952175999932299156089414639761565182862536979208272237582511852109168640000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_100,93326215443944152681699238856266700490715968264381621468592963895217599993229915608941463976156518286253697920827223758251185210916864000000000000000000000000,PX,60000 :1:factorial_100 93326215443944152681699238856266700490715968264381621468592963895217599993229915608941463976156518286253697920827223758251185210916864000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_101,9425947759838359420851623124482936749562312794702543768327889353416977599316221476503087861591808346911623490003549599583369706302603264000000000000000000000000,PX,60000 :1:factorial_101 9425947759838359420851623124482936749562312794702543768327889353416977599316221476503087861591808346911623490003549599583369706302603264000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_102,961446671503512660926865558697259548455355905059659464369444714048531715130254590603314961882364451384985595980362059157503710042865532928000000000000000000000000,PX,60000 :1:factorial_102 961446671503512660926865558697259548455355905059659464369444714048531715130254590603314961882364451384985595980362059157503710042865532928000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_103,99029007164861804075467152545817733490901658221144924830052805546998766658416222832141441073883538492653516385977292093222882134415149891584000000000000000000000000,PX,60000 :1:factorial_103 99029007164861804075467152545817733490901658221144924830052805546998766658416222832141441073883538492653516385977292093222882134415149891584000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_104,10299016745145627623848583864765044283053772454999072182325491776887871732475287174542709871683888003235965704141638377695179741979175588724736000000000000000000000000,PX,60000 :1:factorial_104 10299016745145627623848583864765044283053772454999072182325491776887871732475287174542709871683888003235965704141638377695179741979175588724736000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_105,1081396758240290900504101305800329649720646107774902579144176636573226531909905153326984536526808240339776398934872029657993872907813436816097280000000000000000000000000,PX,60000 :1:factorial_105 1081396758240290900504101305800329649720646107774902579144176636573226531909905153326984536526808240339776398934872029657993872907813436816097280000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_106,114628056373470835453434738414834942870388487424139673389282723476762012382449946252660360871841673476016298287096435143747350528228224302506311680000000000000000000000000,PX,60000 :1:factorial_106 114628056373470835453434738414834942870388487424139673389282723476762012382449946252660360871841673476016298287096435143747350528228224302506311680000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_107,12265202031961379393517517010387338887131568154382945052653251412013535324922144249034658613287059061933743916719318560380966506520420000368175349760000000000000000000000000,PX,60000 :1:factorial_107 12265202031961379393517517010387338887131568154382945052653251412013535324922144249034658613287059061933743916719318560380966506520420000368175349760000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_108,1324641819451828974499891837121832599810209360673358065686551152497461815091591578895743130235002378688844343005686404521144382704205360039762937774080000000000000000000000000,PX,60000 :1:factorial_108 1324641819451828974499891837121832599810209360673358065686551152497461815091591578895743130235002378688844343005686404521144382704205360039762937774080000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_109,144385958320249358220488210246279753379312820313396029159834075622223337844983482099636001195615259277084033387619818092804737714758384244334160217374720000000000000000000000000,PX,60000 :1:factorial_109 144385958320249358220488210246279753379312820313396029159834075622223337844983482099636001195615259277084033387619818092804737714758384244334160217374720000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_110,15882455415227429404253703127090772871724410234473563207581748318444567162948183030959960131517678520479243672638179990208521148623422266876757623911219200000000000000000000000000,PX,60000 :1:factorial_110 15882455415227429404253703127090772871724410234473563207581748318444567162948183030959960131517678520479243672638179990208521148623422266876757623911219200000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_111,1762952551090244663872161047107075788761409536026565516041574063347346955087248316436555574598462315773196047662837978913145847497199871623320096254145331200000000000000000000000000,PX,60000 :1:factorial_111 1762952551090244663872161047107075788761409536026565516041574063347346955087248316436555574598462315773196047662837978913145847497199871623320096254145331200000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_112,197450685722107402353682037275992488341277868034975337796656295094902858969771811440894224355027779366597957338237853638272334919686385621811850780464277094400000000000000000000000000,PX,60000 :1:factorial_112 197450685722107402353682037275992488341277868034975337796656295094902858969771811440894224355027779366597957338237853638272334919686385621811850780464277094400000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_113,22311927486598136465966070212187151182564399087952213171022161345724023063584214692821047352118139068425569179220877461124773845924561575264739138192463311667200000000000000000000000000,PX,60000 :1:factorial_113 22311927486598136465966070212187151182564399087952213171022161345724023063584214692821047352118139068425569179220877461124773845924561575264739138192463311667200000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_114,2543559733472187557120132004189335234812341496026552301496526393412538629248600474981599398141467853800514886431180030568224218435400019580180261753940817530060800000000000000000000000000,PX,60000 :1:factorial_114 2543559733472187557120132004189335234812341496026552301496526393412538629248600474981599398141467853800514886431180030568224218435400019580180261753940817530060800000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_115,292509369349301569068815180481773552003419272043053514672100535242441942363589054622883930786268803187059211939585703515345785120071002251720730101703194015956992000000000000000000000000000,PX,60000 :1:factorial_115 292509369349301569068815180481773552003419272043053514672100535242441942363589054622883930786268803187059211939585703515345785120071002251720730101703194015956992000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_116,33931086844518982011982560935885732032396635556994207701963662088123265314176330336254535971207181169698868584991941607780111073928236261199604691797570505851011072000000000000000000000000000,PX,60000 :1:factorial_116 33931086844518982011982560935885732032396635556994207701963662088123265314176330336254535971207181169698868584991941607780111073928236261199604691797570505851011072000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_117,3969937160808720895401959629498630647790406360168322301129748464310422041758630649341780708631240196854767624444057168110272995649603642560353748940315749184568295424000000000000000000000000000,PX,60000 :1:factorial_117 3969937160808720895401959629498630647790406360168322301129748464310422041758630649341780708631240196854767624444057168110272995649603642560353748940315749184568295424000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_118,468452584975429065657431236280838416439267950499862031533310318788629800927518416622330123618486343228862579684398745837012213486653229822121742374957258403779058860032000000000000000000000000000,PX,60000 :1:factorial_118 468452584975429065657431236280838416439267950499862031533310318788629800927518416622330123618486343228862579684398745837012213486653229822121742374957258403779058860032000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_119,55745857612076058813234317117419771556272886109483581752463927935846946310374691578057284710599874844234646982443450754604453404911734348832487342619913750049708004343808000000000000000000000000000,PX,60000 :1:factorial_119 55745857612076058813234317117419771556272886109483581752463927935846946310374691578057284710599874844234646982443450754604453404911734348832487342619913750049708004343808000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_120,6689502913449127057588118054090372586752746333138029810295671352301633557244962989366874165271984981308157637893214090552534408589408121859898481114389650005964960521256960000000000000000000000000000,PX,60000 :1:factorial_120 6689502913449127057588118054090372586752746333138029810295671352301633557244962989366874165271984981308157637893214090552534408589408121859898481114389650005964960521256960000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_121,809429852527344373968162284544935082997082306309701607045776233628497660426640521713391773997910182738287074185078904956856663439318382745047716214841147650721760223072092160000000000000000000000000000,PX,60000 :1:factorial_121 809429852527344373968162284544935082997082306309701607045776233628497660426640521713391773997910182738287074185078904956856663439318382745047716214841147650721760223072092160000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_122,98750442008336013624115798714482080125644041369783596059584700502676714572050143649033796427745042294071023050579626404736512939596842694895821378210620013388054747214795243520000000000000000000000000000,PX,60000 :1:factorial_122 98750442008336013624115798714482080125644041369783596059584700502676714572050143649033796427745042294071023050579626404736512939596842694895821378210620013388054747214795243520000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_123,12146304367025329675766243241881295855454217088483382315328918161829235892362167668831156960612640202170735835221294047782591091570411651472186029519906261646730733907419814952960000000000000000000000000000,PX,60000 :1:factorial_123 12146304367025329675766243241881295855454217088483382315328918161829235892362167668831156960612640202170735835221294047782591091570411651472186029519906261646730733907419814952960000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_124,1506141741511140879795014161993280686076322918971939407100785852066825250652908790935063463115967385069171243567440461925041295354731044782551067660468376444194611004520057054167040000000000000000000000000000,PX,60000 :1:factorial_124 1506141741511140879795014161993280686076322918971939407100785852066825250652908790935063463115967385069171243567440461925041295354731044782551067660468376444194611004520057054167040000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_125,188267717688892609974376770249160085759540364871492425887598231508353156331613598866882932889495923133646405445930057740630161919341380597818883457558547055524326375565007131770880000000000000000000000000000000,PX,60000 :1:factorial_125 188267717688892609974376770249160085759540364871492425887598231508353156331613598866882932889495923133646405445930057740630161919341380597818883457558547055524326375565007131770880000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_126,23721732428800468856771473051394170805702085973808045661837377170052497697783313457227249544076486314839447086187187275319400401837013955325179315652376928996065123321190898603130880000000000000000000000000000000,PX,60000 :1:factorial_126 23721732428800468856771473051394170805702085973808045661837377170052497697783313457227249544076486314839447086187187275319400401837013955325179315652376928996065123321190898603130880000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_127,3012660018457659544809977077527059692324164918673621799053346900596667207618480809067860692097713761984609779945772783965563851033300772326297773087851869982500270661791244122597621760000000000000000000000000000000,PX,60000 :1:factorial_127 3012660018457659544809977077527059692324164918673621799053346900596667207618480809067860692097713761984609779945772783965563851033300772326297773087851869982500270661791244122597621760000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_128,385620482362580421735677065923463640617493109590223590278828403276373402575165543560686168588507361534030051833058916347592172932262498857766114955245039357760034644709279247692495585280000000000000000000000000000000,PX,60000 :1:factorial_128 385620482362580421735677065923463640617493109590223590278828403276373402575165543560686168588507361534030051833058916347592172932262498857766114955245039357760034644709279247692495585280000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_129,49745042224772874403902341504126809639656611137138843145968864022652168932196355119328515747917449637889876686464600208839390308261862352651828829226610077151044469167497022952331930501120000000000000000000000000000000,PX,60000 :1:factorial_129 49745042224772874403902341504126809639656611137138843145968864022652168932196355119328515747917449637889876686464600208839390308261862352651828829226610077151044469167497022952331930501120000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_130,6466855489220473672507304395536485253155359447828049608975952322944781961185526165512707047229268452925683969240398027149120740074042105844737747799459310029635780991774612983803150965145600000000000000000000000000000000,PX,60000 :1:factorial_130 6466855489220473672507304395536485253155359447828049608975952322944781961185526165512707047229268452925683969240398027149120740074042105844737747799459310029635780991774612983803150965145600000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_131,847158069087882051098456875815279568163352087665474498775849754305766436915303927682164623187034167333264599970492141556534816949699515865660644961729169613882287309922474300878212776434073600000000000000000000000000000000,PX,60000 :1:factorial_131 847158069087882051098456875815279568163352087665474498775849754305766436915303927682164623187034167333264599970492141556534816949699515865660644961729169613882287309922474300878212776434073600000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_132,111824865119600430744996307607616902997562475571842633838412167568361169672820118454045730260688510087990927196104962685462595837360336094267205134948250389032461924909766607715924086489297715200000000000000000000000000000000,PX,60000 :1:factorial_132 111824865119600430744996307607616902997562475571842633838412167568361169672820118454045730260688510087990927196104962685462595837360336094267205134948250389032461924909766607715924086489297715200000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_133,14872707060906857289084508911813048098675809251055070300508818286592035566485075754388082124671571841702793317081960037166525246368924700537538282948117301741317436012998958826217903503076596121600000000000000000000000000000000,PX,60000 :1:factorial_133 14872707060906857289084508911813048098675809251055070300508818286592035566485075754388082124671571841702793317081960037166525246368924700537538282948117301741317436012998958826217903503076596121600000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_134,1992942746161518876737324194182948445222558439641379420268181650403332765909000151088003004705990626788174304488982644980314383013435909872030129915047718433336536425741860482713199069412263880294400000000000000000000000000000000,PX,60000 :1:factorial_134 1992942746161518876737324194182948445222558439641379420268181650403332765909000151088003004705990626788174304488982644980314383013435909872030129915047718433336536425741860482713199069412263880294400000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_135,269047270731805048359538766214698040105045389351586221736204522804449923397715020396880405635308734616403531106012657072342441706813847832724067538531441988500432417475151165166281874370655623839744000000000000000000000000000000000,PX,60000 :1:factorial_135 269047270731805048359538766214698040105045389351586221736204522804449923397715020396880405635308734616403531106012657072342441706813847832724067538531441988500432417475151165166281874370655623839744000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_136,36590428819525486576897272205198933454286172951815726156123815101405189582089242773975735166401987907830880230417721361838572072126683305250473185240276110436058808776620558462614334914409164842205184000000000000000000000000000000000,PX,60000 :1:factorial_136 36590428819525486576897272205198933454286172951815726156123815101405189582089242773975735166401987907830880230417721361838572072126683305250473185240276110436058808776620558462614334914409164842205184000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_137,5012888748274991661034926292112253883237205694398754483388962668892510972746226260034675717797072343372830591567227826571884373881355612819314826377917827129740056802397016509378163883274055583382110208000000000000000000000000000000000,PX,60000 :1:factorial_137 5012888748274991661034926292112253883237205694398754483388962668892510972746226260034675717797072343372830591567227826571884373881355612819314826377917827129740056802397016509378163883274055583382110208000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_138,691778647261948849222819828311491035886734385827028118707676848307166514238979223884785249055995983385450621636277440066920043595627074569065446040152660143904127838730788278294186615891819670506731208704000000000000000000000000000000000,PX,60000 :1:factorial_138 691778647261948849222819828311491035886734385827028118707676848307166514238979223884785249055995983385450621636277440066920043595627074569065446040152660143904127838730788278294186615891819670506731208704000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_139,96157231969410890041971956135297253988256079629956908500367081914696145479218112119985149618783441690577636407442564169301886059792163365100096999581219760002673769583579570682891939608962934200435638009856000000000000000000000000000000000,PX,60000 :1:factorial_139 96157231969410890041971956135297253988256079629956908500367081914696145479218112119985149618783441690577636407442564169301886059792163365100096999581219760002673769583579570682891939608962934200435638009856000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_140,13462012475717524605876073858941615558355851148193967190051391468057460367090535696797920946629681836680869097041958983702264048370902871114013579941370766400374327741701139895604871545254810788060989321379840000000000000000000000000000000000,PX,60000 :1:factorial_140 13462012475717524605876073858941615558355851148193967190051391468057460367090535696797920946629681836680869097041958983702264048370902871114013579941370766400374327741701139895604871545254810788060989321379840000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_141,1898143759076170969428526414110767793728175011895349373797246196996101911759765533248506853474785138972002542682916216702019230820297304827075914771733278062452780211579860725280286887880928321116599494314557440000000000000000000000000000000000,PX,60000 :1:factorial_141 1898143759076170969428526414110767793728175011895349373797246196996101911759765533248506853474785138972002542682916216702019230820297304827075914771733278062452780211579860725280286887880928321116599494314557440000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_142,269536413788816277658850750803729026709400851689139611079208959973446471469886705721287973193419489734024361060974102771686730776482217285444779897586125484868294790044340222989800738079091821598557128192667156480000000000000000000000000000000000,PX,60000 :1:factorial_142 269536413788816277658850750803729026709400851689139611079208959973446471469886705721287973193419489734024361060974102771686730776482217285444779897586125484868294790044340222989800738079091821598557128192667156480000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_143,38543707171800727705215657364933250819444321791546964384326881276202845420193798918144180166658987031965483631719296696351202501036957071818603525354815944336166154976340651887541505545310130488593669331551403376640000000000000000000000000000000000,PX,60000 :1:factorial_143 38543707171800727705215657364933250819444321791546964384326881276202845420193798918144180166658987031965483631719296696351202501036957071818603525354815944336166154976340651887541505545310130488593669331551403376640000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_144,5550293832739304789551054660550388117999982337982762871343070903773209740507907044212761943998894132603029642967578724274573160149321818341878907651093495984407926316593053871805976798524658790357488383743402086236160000000000000000000000000000000000,PX,60000 :1:factorial_144 5550293832739304789551054660550388117999982337982762871343070903773209740507907044212761943998894132603029642967578724274573160149321818341878907651093495984407926316593053871805976798524658790357488383743402086236160000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_145,804792605747199194484902925779806277109997439007500616344745281047115412373646521410850481879839649227439298230298915019813108221651663659572441609408556917739149315905992811411866635786075524601835815642793302504243200000000000000000000000000000000000,PX,60000 :1:factorial_145 804792605747199194484902925779806277109997439007500616344745281047115412373646521410850481879839649227439298230298915019813108221651663659572441609408556917739149315905992811411866635786075524601835815642793302504243200000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_146,117499720439091082394795827163851716458059626095095089986332811032878850206552392125984170354456588787206137541623641592892713800361142894297576474973649309989915800122274950466132528824767026591868029083847822165619507200000000000000000000000000000000000,PX,60000 :1:factorial_146 117499720439091082394795827163851716458059626095095089986332811032878850206552392125984170354456588787206137541623641592892713800361142894297576474973649309989915800122274950466132528824767026591868029083847822165619507200000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_147,17272458904546389112034986593086202319334765035978978227990923221833190980363201642519673042105118551719302218618675314155228928653088005461743741821126448568517622617974417718521481737240752909004600275325629858346067558400000000000000000000000000000000000,PX,60000 :1:factorial_147 17272458904546389112034986593086202319334765035978978227990923221833190980363201642519673042105118551719302218618675314155228928653088005461743741821126448568517622617974417718521481737240752909004600275325629858346067558400000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_148,2556323917872865588581178015776757943261545225324888777742656636831312265093753843092911610231557545654456728355563946494973881440657024808338073789526714388140608147460213822341179297111631430532680840748193219035217998643200000000000000000000000000000000000,PX,60000 :1:factorial_148 2556323917872865588581178015776757943261545225324888777742656636831312265093753843092911610231557545654456728355563946494973881440657024808338073789526714388140608147460213822341179297111631430532680840748193219035217998643200000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_149,380892263763056972698595524350736933545970238573408427883655838887865527498969322620843829924502074302514052524979028027751108334657896696442372994639480443832950613971571859528835715269633083149369445271480789636247481797836800000000000000000000000000000000000,PX,60000 :1:factorial_149 380892263763056972698595524350736933545970238573408427883655838887865527498969322620843829924502074302514052524979028027751108334657896696442372994639480443832950613971571859528835715269633083149369445271480789636247481797836800000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_150,57133839564458545904789328652610540031895535786011264182548375833179829124845398393126574488675311145377107878746854204162666250198684504466355949195922066574942592095735778929325357290444962472405416790722118445437122269675520000000000000000000000000000000000000,PX,60000 :1:factorial_150 57133839564458545904789328652610540031895535786011264182548375833179829124845398393126574488675311145377107878746854204162666250198684504466355949195922066574942592095735778929325357290444962472405416790722118445437122269675520000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_151,8627209774233240431623188626544191544816225903687700891564804750810154197851655157362112747789971982951943289690774984828562603780001360174419748328584232052816331406456102618328128950857189333333217935399039885261005462721003520000000000000000000000000000000000000,PX,60000 :1:factorial_151 8627209774233240431623188626544191544816225903687700891564804750810154197851655157362112747789971982951943289690774984828562603780001360174419748328584232052816331406456102618328128950857189333333217935399039885261005462721003520000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_152,1311335885683452545606724671234717114812066337360530535517850322123143438073451583919041137664075741408695380032997797693941515774560206746511801745944803272028082373781327597985875600530292778666649126180654062559672830333592535040000000000000000000000000000000000000,PX,60000 :1:factorial_152 1311335885683452545606724671234717114812066337360530535517850322123143438073451583919041137664075741408695380032997797693941515774560206746511801745944803272028082373781327597985875600530292778666649126180654062559672830333592535040000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_153,200634390509568239477828874698911718566246149616161171934231099284840946025238092339613294062603588435530393145048663047173051913507711632216305667129554900620296603188543122491838966881134795135997316305640071571629943041039657861120000000000000000000000000000000000000,PX,60000 :1:factorial_153 200634390509568239477828874698911718566246149616161171934231099284840946025238092339613294062603588435530393145048663047173051913507711632216305667129554900620296603188543122491838966881134795135997316305640071571629943041039657861120000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_154,30897696138473508879585646703632404659201907040888820477871589289865505687886666220300447285640952619071680544337494109264649994680187591361311072737951454695525676891035640863743200899694758450943586711068571022031011228320107310612480000000000000000000000000000000000000,PX,60000 :1:factorial_154 30897696138473508879585646703632404659201907040888820477871589289865505687886666220300447285640952619071680544337494109264649994680187591361311072737951454695525676891035640863743200899694758450943586711068571022031011228320107310612480000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_155,4789142901463393876335775239063022722176295591337767174070096339929153381622433264146569329274347655956110484372311586936020749175429076661003216274382475477806479918110524333880196139452687559896255940215628508414806740389616633144934400000000000000000000000000000000000000,PX,60000 :1:factorial_155 4789142901463393876335775239063022722176295591337767174070096339929153381622433264146569329274347655956110484372311586936020749175429076661003216274382475477806479918110524333880196139452687559896255940215628508414806740389616633144934400000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_156,747106292628289444708380937293831544659502112248691679154935029028947927533099589206864815366798234329153235562080607562019236871366935959116501738803666174537810867225241796085310597754619259343815926673638047312709851500780194770609766400000000000000000000000000000000000000,PX,60000 :1:factorial_156 747106292628289444708380937293831544659502112248691679154935029028947927533099589206864815366798234329153235562080607562019236871366935959116501738803666174537810867225241796085310597754619259343815926673638047312709851500780194770609766400000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_157,117295687942641442819215807155131552511541831623044593627324799557544824622696635505477776012587322789677057983246655387237020188804608945581290772992175589402436306154362961985393763847475223716979100487761173428095446685622490578985733324800000000000000000000000000000000000000,PX,60000 :1:factorial_157 117295687942641442819215807155131552511541831623044593627324799557544824622696635505477776012587322789677057983246655387237020188804608945581290772992175589402436306154362961985393763847475223716979100487761173428095446685622490578985733324800000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_158,18532718694937347965436097530510785296823609396441045793117318330092082290386068409865488609988797000768975161352971551183449189831128213401843942132763743125584936372389347993692214687901085347282697877066265401639080576328353511479745865318400000000000000000000000000000000000000,PX,60000 :1:factorial_158 18532718694937347965436097530510785296823609396441045793117318330092082290386068409865488609988797000768975161352971551183449189831128213401843942132763743125584936372389347993692214687901085347282697877066265401639080576328353511479745865318400000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_159,2946702272495038326504339507351214862194953894034126281105653614484641084171384877168612688988218723122267050655122476638168421183149385930893186799109435156968004883209906330997062135376272570217948962453536198860613811636208208325279592585625600000000000000000000000000000000000000,PX,60000 :1:factorial_159 2946702272495038326504339507351214862194953894034126281105653614484641084171384877168612688988218723122267050655122476638168421183149385930893186799109435156968004883209906330997062135376272570217948962453536198860613811636208208325279592585625600000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_160,471472363599206132240694321176194377951192623045460204976904578317542573467421580346978030238114995699562728104819596262106947389303901748942909887857509625114880781313585012959529941660203611234871833992565791817698209861793313332044734813700096000000000000000000000000000000000000000,PX,60000 :1:factorial_160 471472363599206132240694321176194377951192623045460204976904578317542573467421580346978030238114995699562728104819596262106947389303901748942909887857509625114880781313585012959529941660203611234871833992565791817698209861793313332044734813700096000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_161,75907050539472187290751785709367294850142012310319093001281637109124354328254874435863462868336514307629599224875954998199218529677928181579808491945059049643495805791487187086484320607292781408814365272803092482649411787748723446459202305005715456000000000000000000000000000000000000000,PX,60000 :1:factorial_161 75907050539472187290751785709367294850142012310319093001281637109124354328254874435863462868336514307629599224875954998199218529677928181579808491945059049643495805791487187086484320607292781408814365272803092482649411787748723446459202305005715456000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_162,12296942187394494341101789284917501765723005994271693066207625211678145401177289658609880984670515317835995074429904709708273401807824365415928975695099566042246320538220924308010459938381430588227927174194100982189204709615293198326390773410925903872000000000000000000000000000000000000000,PX,60000 :1:factorial_162 12296942187394494341101789284917501765723005994271693066207625211678145401177289658609880984670515317835995074429904709708273401807824365415928975695099566042246320538220924308010459938381430588227927174194100982189204709615293198326390773410925903872000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_163,2004401576545302577599591653441552787812849977066285969791842909503537700391898214353410600501293996807267197132074467682448564494675371562796423038301229264886150247730010662205704969956173185881152129393638460096840367667292791327201696065980922331136000000000000000000000000000000000000000,PX,60000 :1:factorial_163 2004401576545302577599591653441552787812849977066285969791842909503537700391898214353410600501293996807267197132074467682448564494675371562796423038301229264886150247730010662205704969956173185881152129393638460096840367667292791327201696065980922331136000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_164,328721858553429622726333031164414657201307396238870899045862237158580182864271307153959338482212215476391820329660212699921564577126760936298613378281401599441328640627721748601735615072812402484508949220556707455881820297436017777661078154820871262306304000000000000000000000000000000000000000,PX,60000 :1:factorial_164 328721858553429622726333031164414657201307396238870899045862237158580182864271307153959338482212215476391820329660212699921564577126760936298613378281401599441328640627721748601735615072812402484508949220556707455881820297436017777661078154820871262306304000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_165,54239106661315887749844950142128418438215720379413698342567269131165730172604765680403290849565015553604650354393935095487058155225915554489271207416431263907819225703574088519286376487014046409943976621391856730220500349076942933314077895545443758280540160000000000000000000000000000000000000000,PX,60000 :1:factorial_165 54239106661315887749844950142128418438215720379413698342567269131165730172604765680403290849565015553604650354393935095487058155225915554489271207416431263907819225703574088519286376487014046409943976621391856730220500349076942933314077895545443758280540160000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_166,9003691705778437366474261723593317460743809582982673924866166675773511208652391102946946281027792581898371958829393225850851653767501982045219020431127589808697991466793298694201538496844331704050700119151048217216603057946772526930136930660543663874569666560000000000000000000000000000000000000000,PX,60000 :1:factorial_166 9003691705778437366474261723593317460743809582982673924866166675773511208652391102946946281027792581898371958829393225850851653767501982045219020431127589808697991466793298694201538496844331704050700119151048217216603057946772526930136930660543663874569666560000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_167,1503616514864999040201201707840084015944216200358106545452649834854176371844949314192140028931641361177028117124508668717092226179172831001551576411998307498052564574954480881931656928973003394576466919898225052275172710677111011997332867420310791867053134315520000000000000000000000000000000000000000,PX,60000 :1:factorial_167 1503616514864999040201201707840084015944216200358106545452649834854176371844949314192140028931641361177028117124508668717092226179172831001551576411998307498052564574954480881931656928973003394576466919898225052275172710677111011997332867420310791867053134315520000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_168,252607574497319838753801886917134114678628321660161899636045172255501630469951484784279524860515748677740723676917456344471493998101035608260664837215715659672830848592352788164518364067464570288846442542901808782229015393754650015551921726612213033664926565007360000000000000000000000000000000000000000,PX,60000 :1:factorial_168 252607574497319838753801886917134114678628321660161899636045172255501630469951484784279524860515748677740723676917456344471493998101035608260664837215715659672830848592352788164518364067464570288846442542901808782229015393754650015551921726612213033664926565007360000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_169,42690680090047052749392518888995665380688186360567361038491634111179775549421800928543239701427161526538182301399050122215682485679075017796052357489455946484708413412107621199803603527401512378815048789750405684196703601544535852628274771797464002689372589486243840000000000000000000000000000000000000000,PX,60000 :1:factorial_169 42690680090047052749392518888995665380688186360567361038491634111179775549421800928543239701427161526538182301399050122215682485679075017796052357489455946484708413412107621199803603527401512378815048789750405684196703601544535852628274771797464002689372589486243840000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_170,7257415615307998967396728211129263114716991681296451376543577798900561843401706157852350749242617459511490991237838520776666022565442753025328900773207510902400430280058295603966612599658257104398558294257568966313439612262571094946806711205568880457193340212661452800000000000000000000000000000000000000000,PX,60000 :1:factorial_170 7257415615307998967396728211129263114716991681296451376543577798900561843401706157852350749242617459511490991237838520776666022565442753025328900773207510902400430280058295603966612599658257104398558294257568966313439612262571094946806711205568880457193340212661452800000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_171,1241018070217667823424840524103103992616605577501693185388951803611996075221691752992751978120487585576464959501670387052809889858690710767331242032218484364310473577889968548278290754541561964852153468318044293239598173696899657235903947616152278558180061176365108428800000000000000000000000000000000000000000,PX,60000 :1:factorial_171 1241018070217667823424840524103103992616605577501693185388951803611996075221691752992751978120487585576464959501670387052809889858690710767331242032218484364310473577889968548278290754541561964852153468318044293239598173696899657235903947616152278558180061176365108428800000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_172,213455108077438865629072570145733886730056159330291227886899710221263324938130981514753340236723864719151973034287306573083301055694802251980973629541579310661401455397074590303866009781148657954570396550703618437210885875866741044575478989978191912006970522334798649753600000000000000000000000000000000000000000,PX,60000 :1:factorial_172 213455108077438865629072570145733886730056159330291227886899710221263324938130981514753340236723864719151973034287306573083301055694802251980973629541579310661401455397074590303866009781148657954570396550703618437210885875866741044575478989978191912006970522334798649753600000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_173,36927733697396923753829554635211962404299715564140382424433649868278555214296659802052327860953228596413291334931704037143411082635200789592708437910693220744422451783693904122568819692138717826140678603271725989637483256524946200711557865266227200777205900363920166407372800000000000000000000000000000000000000000,PX,60000 :1:factorial_173 36927733697396923753829554635211962404299715564140382424433649868278555214296659802052327860953228596413291334931704037143411082635200789592708437910693220744422451783693904122568819692138717826140678603271725989637483256524946200711557865266227200777205900363920166407372800000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_174,6425425663347064733166342506526881458348150508160426541851455077080468607287618805557105047805861775775912692278116502462953528378524937389131268196460620409529506610362739317326974626432136901748478076969280322196922086635340638923811068556323532935233826663322108954882867200000000000000000000000000000000000000000,PX,60000 :1:factorial_174 6425425663347064733166342506526881458348150508160426541851455077080468607287618805557105047805861775775912692278116502462953528378524937389131268196460620409529506610362739317326974626432136901748478076969280322196922086635340638923811068556323532935233826663322108954882867200000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_175,1124449491085736328304109938642204255210926338928074644824004638489082006275333290972493383366025810760784721148670387931016867466241864043097971934380608571667663656813479380532220559625623957805983663469624056384461365161184611811666936997356618263665919666081369067104501760000000000000000000000000000000000000000000,PX,60000 :1:factorial_175 1124449491085736328304109938642204255210926338928074644824004638489082006275333290972493383366025810760784721148670387931016867466241864043097971934380608571667663656813479380532220559625623957805983663469624056384461365161184611811666936997356618263665919666081369067104501760000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_176,197903110431089593781523349201027948917123035651341137489024816374078433104458659211158835472420542693898110922165988275858968674058568071585243060450987108613508803599172370973670818494109816573853124770653833923665200268368491678853380911534764814405201861230320955810392309760000000000000000000000000000000000000000000,PX,60000 :1:factorial_176 197903110431089593781523349201027948917123035651341137489024816374078433104458659211158835472420542693898110922165988275858968674058568071585243060450987108613508803599172370973670818494109816573853124770653833923665200268368491678853380911534764814405201861230320955810392309760000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_177,35028850546302858099329632808581946958330777310287381335557392498211882659489182680375113878618436056819965633223379924827037455308366548670588021699824718224591058237053509662339734873457437533572003084405728604488740447501223027157048421341653372149720729437766809178439438827520000000000000000000000000000000000000000000,PX,60000 :1:factorial_177 35028850546302858099329632808581946958330777310287381335557392498211882659489182680375113878618436056819965633223379924827037455308366548670588021699824718224591058237053509662339734873457437533572003084405728604488740447501223027157048421341653372149720729437766809178439438827520000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_178,6235135397241908741680674639927586558582878361231153877729215864681715113389074517106770270394081618113953882713761626619212667044889245663364667862568799843977208366195524719896472807475423880975816549024219691598995799655217698833954618998814300242650289839922492033762220111298560000000000000000000000000000000000000000000,PX,60000 :1:factorial_178 6235135397241908741680674639927586558582878361231153877729215864681715113389074517106770270394081618113953882713761626619212667044889245663364667862568799843977208366195524719896472807475423880975816549024219691598995799655217698833954618998814300242650289839922492033762220111298560000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_179,1116089236106301664760840760547037993986335226660376544113529639778027005296644338562111878400540609642397745005763331164839067401035174973742275547399815172071920297548998924861468632538100874694671162275335324796220248138283968091277876800787759743434401881346126074043437399922442240000000000000000000000000000000000000000000,PX,60000 :1:factorial_179 1116089236106301664760840760547037993986335226660376544113529639778027005296644338562111878400540609642397745005763331164839067401035174973742275547399815172071920297548998924861468632538100874694671162275335324796220248138283968091277876800787759743434401881346126074043437399922442240000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_180,200896062499134299656951336898466838917540340798867777940435335160044860953395980941180138112097309735631594101037399609671032132186331495273609598531966730972945653558819806475064353856858157445040809209560358463319644664891114256430017824141796753818192338642302693327818731986039603200000000000000000000000000000000000000000000,PX,60000 :1:factorial_180 200896062499134299656951336898466838917540340798867777940435335160044860953395980941180138112097309735631594101037399609671032132186331495273609598531966730972945653558819806475064353856858157445040809209560358463319644664891114256430017824141796753818192338642302693327818731986039603200000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_181,36362187312343308237908191978622497844074801684595067807218795663968119832564672550353604998289613062149318532287769329350456815925726000644523337334285978306103163294146384971986648048091326497552386466930424881860855684345291680413833226169665212441092813294256787492335190489473168179200000000000000000000000000000000000000000000,PX,60000 :1:factorial_181 36362187312343308237908191978622497844074801684595067807218795663968119832564672550353604998289613062149318532287769329350456815925726000644523337334285978306103163294146384971986648048091326497552386466930424881860855684345291680413833226169665212441092813294256787492335190489473168179200000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_182,6617918090846482099299290940109294607621613906596302340913820810842197809526770404164356109688709577311175972876374017941783140498482132117303247394840048051710775719534642064901569944752621422554534336981337328498675734550843085835317647162879068664278892019554735323605004669084116608614400000000000000000000000000000000000000000000,PX,60000 :1:factorial_182 6617918090846482099299290940109294607621613906596302340913820810842197809526770404164356109688709577311175972876374017941783140498482132117303247394840048051710775719534642064901569944752621422554534336981337328498675734550843085835317647162879068664278892019554735323605004669084116608614400000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_183,1211079010624906224171770242040000913194755344907123328387229208384122199143398983962077168073033852647945203036376445283346314711222230177466494273255728793463071956674839497876987299889729720327479783667584731115257659422804284707863129430806869565563037239578516564219715854442393339376435200000000000000000000000000000000000000000000,PX,60000 :1:factorial_183 1211079010624906224171770242040000913194755344907123328387229208384122199143398983962077168073033852647945203036376445283346314711222230177466494273255728793463071956674839497876987299889729720327479783667584731115257659422804284707863129430806869565563037239578516564219715854442393339376435200000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_184,222838537954982745247605724535360168027834983462910692423250174342678484642385413049022198925438228887221917358693265932135721906864890352653834946279054097997205240028170467609365663179710268540256280194835590525207409333795988386246815815268464000063598852082447047816427717217400374445264076800000000000000000000000000000000000000000000,PX,60000 :1:factorial_184 222838537954982745247605724535360168027834983462910692423250174342678484642385413049022198925438228887221917358693265932135721906864890352653834946279054097997205240028170467609365663179710268540256280194835590525207409333795988386246815815268464000063598852082447047816427717217400374445264076800000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_185,41225129521671807870807059039041631085149471940638478098301282253395519658841301414069106801206072344136054711358254197445108552770004715240959465061625008129482969405211536507732647688246399679947411836044584247163370726752257851455660925824665840011765787635252703846039127685219069272373854208000000000000000000000000000000000000000000000,PX,60000 :1:factorial_185 41225129521671807870807059039041631085149471940638478098301282253395519658841301414069106801206072344136054711358254197445108552770004715240959465061625008129482969405211536507732647688246399679947411836044584247163370726752257851455660925824665840011765787635252703846039127685219069272373854208000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_186,7667874091030956263970112981261743381837801780958756926284038499131566656544482063016853865024329456009306176312635280724790190815220877034818460501462251512083832309369345790438272470013830340470218601504292669972386955175919960370752932203387846242188436500157002915363277749450746884661536882688000000000000000000000000000000000000000000000,PX,60000 :1:factorial_186 7667874091030956263970112981261743381837801780958756926284038499131566656544482063016853865024329456009306176312635280724790190815220877034818460501462251512083832309369345790438272470013830340470218601504292669972386955175919960370752932203387846242188436500157002915363277749450746884661536882688000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_187,1433892455022788821362411127495946012403668933039287545215115199337602964773818145784151672759549608273740254970462797495535765682446304005511052113773441032759676641852067662811956951892586273667930878481302729284836360617897032589330798322033527247289237625529359545172932939147289667431707397062656000000000000000000000000000000000000000000000,PX,60000 :1:factorial_187 1433892455022788821362411127495946012403668933039287545215115199337602964773818145784151672759549608273740254970462797495535765682446304005511052113773441032759676641852067662811956951892586273667930878481302729284836360617897032589330798322033527247289237625529359545172932939147289667431707397062656000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_188,269571781544284298416133291969237850331889759411386058500441657475469357377477811407420514478795326355463167934447005929160723948299905153036077797389406914158819208668188720608647906955806219449571005154484913105549235796164642126794190084542303122490376673599519594492511392559690457477160990647779328000000000000000000000000000000000000000000000,PX,60000 :1:factorial_188 269571781544284298416133291969237850331889759411386058500441657475469357377477811407420514478795326355463167934447005929160723948299905153036077797389406914158819208668188720608647906955806219449571005154484913105549235796164642126794190084542303122490376673599519594492511392559690457477160990647779328000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_189,50949066711869732400649192182185953712727164528751965056583473262863708544343306356002477236492316681182538739610484120611376826228682073923818703706597906776016830438287668195034454414647375475968919974197648576948805565475117361964101925978495290150681191310309203359084653193781496463183427232430292992000000000000000000000000000000000000000000000,PX,60000 :1:factorial_189 50949066711869732400649192182185953712727164528751965056583473262863708544343306356002477236492316681182538739610484120611376826228682073923818703706597906776016830438287668195034454414647375475968919974197648576948805565475117361964101925978495290150681191310309203359084653193781496463183427232430292992000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_190,9680322675255249156123346514615331205418161260462873360750859919944104623425228207640470674933540169424682360525991982916161596983449594045525553704253602287443197783274656957056546338783001340434094795097553229620273057440272298773179365935914105128629426348958748638226084106818484328004851174161755668480000000000000000000000000000000000000000000000,PX,60000 :1:factorial_190 9680322675255249156123346514615331205418161260462873360750859919944104623425228207640470674933540169424682360525991982916161596983449594045525553704253602287443197783274656957056546338783001340434094795097553229620273057440272298773179365935914105128629426348958748638226084106818484328004851174161755668480000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_191,1848941630973752588819559184291528260234868800748408811903414244709323983074218587659329898912306172360114330860464468736986865023838872462695380757512438036901650776605459478797800350707553256022912105863632666857472153971092009065677258893759594079568220432651120989901182064402330506648926574264895332679680000000000000000000000000000000000000000000000,PX,60000 :1:factorial_191 1848941630973752588819559184291528260234868800748408811903414244709323983074218587659329898912306172360114330860464468736986865023838872462695380757512438036901650776605459478797800350707553256022912105863632666857472153971092009065677258893759594079568220432651120989901182064402330506648926574264895332679680000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_192,354996793146960497053355363383973425965094809743694491885455534984190204750249968830591340591162785093141951525209177997501478084577063512837513105442388103085116949108248219929177667335850225156399124325817472036634653562449665740610033707601842063277098323069015230061026956365247457276593902258859903874498560000000000000000000000000000000000000000000000,PX,60000 :1:factorial_192 354996793146960497053355363383973425965094809743694491885455534984190204750249968830591340591162785093141951525209177997501478084577063512837513105442388103085116949108248219929177667335850225156399124325817472036634653562449665740610033707601842063277098323069015230061026956365247457276593902258859903874498560000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_193,68514381077363375931297585133106871211263298280533036933892918251948709516798243984304128734094417522976396644365371353517785270323373257977640029350380903895427571177891906446331289795819093455185030994882772103070488137552785487937736505567155518212479976352319939401778202578492759254382623135959961447778222080000000000000000000000000000000000000000000000,PX,60000 :1:factorial_193 68514381077363375931297585133106871211263298280533036933892918251948709516798243984304128734094417522976396644365371353517785270323373257977640029350380903895427571177891906446331289795819093455185030994882772103070488137552785487937736505567155518212479976352319939401778202578492759254382623135959961447778222080000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_194,13291789929008494930671731515822733014985079866423409165175226140878049646258859332955000974414316999457420949006882042582450342442734412047662165693973895355712948808511029850588270220388904130305896013007257787995674698685240384659920882080028170533221115412350068243944971300227595295350228888376232520868975083520000000000000000000000000000000000000000000000,PX,60000 :1:factorial_194 13291789929008494930671731515822733014985079866423409165175226140878049646258859332955000974414316999457420949006882042582450342442734412047662165693973895355712948808511029850588270220388904130305896013007257787995674698685240384659920882080028170533221115412350068243944971300227595295350228888376232520868975083520000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_195,2591899036156656511480987645585432937922090573952564787209169097471219681020477569926225190010791814894197085056341998303577816776333210349294122310324909594364025017659650820864712692975836305409649722536415268659156566243621875008684572005605493253978117505408263307569269403544381082593294633233365341569450141286400000000000000000000000000000000000000000000000,PX,60000 :1:factorial_195 2591899036156656511480987645585432937922090573952564787209169097471219681020477569926225190010791814894197085056341998303577816776333210349294122310324909594364025017659650820864712692975836305409649722536415268659156566243621875008684572005605493253978117505408263307569269403544381082593294633233365341569450141286400000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_196,508012211086704676250273578534744855832729752494702698292997143104359057480013603705540137242115195719262628671043031667501252088161309228461647972823682280495348903461291560889483687823263915860291345617137392657194686983749887501702176113098676677779711031060019608283576803094698692188285748113739606947612227692134400000000000000000000000000000000000000000000000,PX,60000 :1:factorial_196 508012211086704676250273578534744855832729752494702698292997143104359057480013603705540137242115195719262628671043031667501252088161309228461647972823682280495348903461291560889483687823263915860291345617137392657194686983749887501702176113098676677779711031060019608283576803094698692188285748113739606947612227692134400000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_197,100078405584080821221303894971344736599047761241456431563720437191558734323562679929991407036696693556694737848195477238497746661367777918006944650646265409257583733981874437495228286501182991424477395086576066353467353335798727837835328694280439305522603073118823862831864630209655642361092292378406702568679608855350476800000000000000000000000000000000000000000000000,PX,60000 :1:factorial_197 100078405584080821221303894971344736599047761241456431563720437191558734323562679929991407036696693556694737848195477238497746661367777918006944650646265409257583733981874437495228286501182991424477395086576066353467353335798727837835328694280439305522603073118823862831864630209655642361092292378406702568679608855350476800000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_198,19815524305648002601818171204326257846611456725808373449616646563928629396065410626138298593265945324225558093942704493222553838950820027765375040827960551033001579328411138624055200727234232302046524227142061137986535960488148111891395081467526982493475408477527124840709196781511817187496273890924527108598562553359394406400000000000000000000000000000000000000000000000,PX,60000 :1:factorial_198 19815524305648002601818171204326257846611456725808373449616646563928629396065410626138298593265945324225558093942704493222553838950820027765375040827960551033001579328411138624055200727234232302046524227142061137986535960488148111891395081467526982493475408477527124840709196781511817187496273890924527108598562553359394406400000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_199,3943289336823952517761816069660925311475679888435866316473712666221797249817016714601521420059923119520886060694598194151288213951213185525309633124764149655567314286353816586186984944719612228107258321201270166459320656137141474266387621212037869516201606287027897843301130159520851620311758504293980894611113948118519486873600000000000000000000000000000000000000000000000,PX,60000 :1:factorial_199 3943289336823952517761816069660925311475679888435866316473712666221797249817016714601521420059923119520886060694598194151288213951213185525309633124764149655567314286353816586186984944719612228107258321201270166459320656137141474266387621212037869516201606287027897843301130159520851620311758504293980894611113948118519486873600000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_200,788657867364790503552363213932185062295135977687173263294742533244359449963403342920304284011984623904177212138919638830257642790242637105061926624952829931113462857270763317237396988943922445621451664240254033291864131227428294853277524242407573903240321257405579568660226031904170324062351700858796178922222789623703897374720000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_200 788657867364790503552363213932185062295135977687173263294742533244359449963403342920304284011984623904177212138919638830257642790242637105061926624952829931113462857270763317237396988943922445621451664240254033291864131227428294853277524242407573903240321257405579568660226031904170324062351700858796178922222789623703897374720000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_201,158520231340322891214025006000369197521322331515121825922243249182116249442644071926981161086408909404739619639922847404881786200838770058117447251615518816153806034311423426764716794777728411569911784512291060691664690376713087265508782372723922354551304572738521493300705432412738235136532691872618031963366780714364483372318720000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_201 158520231340322891214025006000369197521322331515121825922243249182116249442644071926981161086408909404739619639922847404881786200838770058117447251615518816153806034311423426764716794777728411569911784512291060691664690376713087265508782372723922354551304572738521493300705432412738235136532691872618031963366780714364483372318720000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_202,32021086730745224025233051212074577899307110966054608836293136334787482387414102529250194539454599699757403167264415175786120812569431551739724344826334800863068818930907532206472792545101139137122180471482794259716267456096043627632774039290232315619363523693181341646742497347373123497579603758268842456600089704301625641208381440000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_202 32021086730745224025233051212074577899307110966054608836293136334787482387414102529250194539454599699757403167264415175786120812569431551739724344826334800863068818930907532206472792545101139137122180471482794259716267456096043627632774039290232315619363523693181341646742497347373123497579603758268842456600089704301625641208381440000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_203,6500280606341280477122309396051139313559343526109085593767506675961858924645062813437789491509283739050752842954676280684582524951594605003164041999745964575202970242974229037913976886655531244835802635711007234722402293587496856409453129975917160070730795309715812354288726961516744070008659562928575018689818209973230005165301432320000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_203 6500280606341280477122309396051139313559343526109085593767506675961858924645062813437789491509283739050752842954676280684582524951594605003164041999745964575202970242974229037913976886655531244835802635711007234722402293587496856409453129975917160070730795309715812354288726961516744070008659562928575018689818209973230005165301432320000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_204,1326057243693621217332951116794432419966106079326253461128571361896219220627592813941309056267893882766353579962753961259654835090125299420645464567948176773341405929566742723734451284877728373946503737685045475883370067891849358707528438515087100654429082243182025720274900300149415790281766550837429303812722914834538921053721492193280000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_204 1326057243693621217332951116794432419966106079326253461128571361896219220627592813941309056267893882766353579962753961259654835090125299420645464567948176773341405929566742723734451284877728373946503737685045475883370067891849358707528438515087100654429082243182025720274900300149415790281766550837429303812722914834538921053721492193280000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_205,271841734957192349553254978942858646093051746261881959531357129188724940228656526857968356534918245967102483892364562058229241193475686381232320236429376238534988215561182258365562513399934316659033266225434322556090863917829118535043329895592855634157961859852315272656354561530630237007762142921673007281608197541080478816012905899622400000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_205 271841734957192349553254978942858646093051746261881959531357129188724940228656526857968356534918245967102483892364562058229241193475686381232320236429376238534988215561182258365562513399934316659033266225434322556090863917829118535043329895592855634157961859852315272656354561530630237007762142921673007281608197541080478816012905899622400000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_206,55999397401181624007970525662228881095168659729947683663459568612877337687103244532741481446193158669223111681827099783995223685855991394533857968704451505138207572405603545223305877760386469231760852842439470446554717967072798418218925958492128260636540143129576946167209039675309828823599001441864639500011288693462578636098658615322214400000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_206 55999397401181624007970525662228881095168659729947683663459568612877337687103244532741481446193158669223111681827099783995223685855991394533857968704451505138207572405603545223305877760386469231760852842439470446554717967072798418218925958492128260636540143129576946167209039675309828823599001441864639500011288693462578636098658615322214400000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_207,11591875262044596169649898812081378386699912564099170518336130702865608901230371618277486659361983844529184118138209655287011302972190218668508599521821461563608967487959933861224316696399999130974496538384970382436826619184069272571317673407870549951763809627822427856612271212789134566484993298465980376502336759546753777672422333371698380800000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_207 11591875262044596169649898812081378386699912564099170518336130702865608901230371618277486659361983844529184118138209655287011302972190218668508599521821461563608967487959933861224316696399999130974496538384970382436826619184069272571317673407870549951763809627822427856612271212789134566484993298465980376502336759546753777672422333371698380800000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_208,2411110054505276003287178952912926704433581813332627467813915186196046651455917296601717225147292639662070296572747608299698351018215565483049788700538864005230665237495666243134657872851199819242695279984073839546859936790286408694834076068837074389966872402587064994175352412260139989828878606080923918312486045985724785755863845341313263206400000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_208 2411110054505276003287178952912926704433581813332627467813915186196046651455917296601717225147292639662070296572747608299698351018215565483049788700538864005230665237495666243134657872851199819242695279984073839546859936790286408694834076068837074389966872402587064994175352412260139989828878606080923918312486045985724785755863845341313263206400000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_209,503922001391602684687020401158801681226618598986519140773108273914973750154286714989758900055784161689372691983704250134636955362807053185957405838412622577093209034636594244815143495425900762221723313516671432465293726789169859417220321898386948547503076332140696583782648654162369257874235628670913098927309583611016480222975543676334472010137600000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_209 503922001391602684687020401158801681226618598986519140773108273914973750154286714989758900055784161689372691983704250134636955362807053185957405838412622577093209034636594244815143495425900762221723313516671432465293726789169859417220321898386948547503076332140696583782648654162369257874235628670913098927309583611016480222975543676334472010137600000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_210,105823620292236563784274284243348353057589905787169019562352737522144487532400210147849369011714673954768265316577892528273760626189481169051055226066650741189573897273684791411180134039439160066561895838501000817711682625725670477616267598661259194975646029749546282594356217374097544153589482020891750774735012558313460846824864172030239122128896000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_210 105823620292236563784274284243348353057589905787169019562352737522144487532400210147849369011714673954768265316577892528273760626189481169051055226066650741189573897273684791411180134039439160066561895838501000817711682625725670477616267598661259194975646029749546282594356217374097544153589482020891750774735012558313460846824864172030239122128896000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_211,22328783881661914958481873975346502495151470121092663127656427617172486869336444341196216861471796204456103981797935323465763492125980526669772652700063306391000092324747490987759008282321662774044560021923711172537165034028116470777032463317525690139861312277154265627409161865934581816407380706408159413469087649804140238680046340298380454769197056000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_211 22328783881661914958481873975346502495151470121092663127656427617172486869336444341196216861471796204456103981797935323465763492125980526669772652700063306391000092324747490987759008282321662774044560021923711172537165034028116470777032463317525690139861312277154265627409161865934581816407380706408159413469087649804140238680046340298380454769197056000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_212,4733702182912325971198157282773458528972111665671644583063162654840567216299326200333597974632020795344694044141162288574741860330707871653991802372413420954892019572846468089404909755852192508097446724647826768577878987213960691804730882223315446309650598202756704313010742315578131345078364709758529795655446581758477730600169824143256656411069775872000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_212 4733702182912325971198157282773458528972111665671644583063162654840567216299326200333597974632020795344694044141162288574741860330707871653991802372413420954892019572846468089404909755852192508097446724647826768577878987213960691804730882223315446309650598202756704313010742315578131345078364709758529795655446581758477730600169824143256656411069775872000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_213,1008278564960325431865207501230746666671059784788060296192453645481040817071756480671056368596620429408419831402067567466420016250440776662300253905324058663392000169016297703043245777996517004224756152349987101707088224276573627354407677913566190063955577417187178018671288113218141976501691683178566846474610121914555756617836172542513667815557862260736000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_213 1008278564960325431865207501230746666671059784788060296192453645481040817071756480671056368596620429408419831402067567466420016250440776662300253905324058663392000169016297703043245777996517004224756152349987101707088224276573627354407677913566190063955577417187178018671288113218141976501691683178566846474610121914555756617836172542513667815557862260736000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_214,215771612901509642419154405263379786667606793944644903385185080132942734853355886863606062879676771893401843920042459437813883477594326205732254335739348553965888036169487708451254596491254638904097816602897239765316879995186756253843243073503164673686493567278056095995655656228682382971362020200213305145566566089714931916216940924097924912529382523797504000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_214 215771612901509642419154405263379786667606793944644903385185080132942734853355886863606062879676771893401843920042459437813883477594326205732254335739348553965888036169487708451254596491254638904097816602897239765316879995186756253843243073503164673686493567278056095995655656228682382971362020200213305145566566089714931916216940924097924912529382523797504000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_215,46390896773824573120118197131626654133535460698098654227814792228582687993471515675675303519130505957081396442809128779129984947682780134232434682183959939102665927776439857317019738245619747364381030569622906549543129198965152594576297260803180404842596116964782060639065966089166712338842834343045860606296811709288710361986642298681053856193817242616463360000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_215 46390896773824573120118197131626654133535460698098654227814792228582687993471515675675303519130505957081396442809128779129984947682780134232434682183959939102665927776439857317019738245619747364381030569622906549543129198965152594576297260803180404842596116964782060639065966089166712338842834343045860606296811709288710361986642298681053856193817242616463360000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_216,10020433703146107793945530580431357292843659510789309313207995121373860606589847385945865560132189286729581631646771816292076748699480508994205891351735346846175840399711009180476263461053865430706302603038547814701315906976472960428480208333486967446000761264392925098038248675260009865190052218097905890960111329206361438189114736515107632937864524405156085760000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_216 10020433703146107793945530580431357292843659510789309313207995121373860606589847385945865560132189286729581631646771816292076748699480508994205891351735346846175840399711009180476263461053865430706302603038547814701315906976472960428480208333486967446000761264392925098038248675260009865190052218097905890960111329206361438189114736515107632937864524405156085760000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_217,2174434113582705391286180135953604532547074113841280120966134941338127751629996882750252826548685075220319214067349484135380654467787270451742678423326570265620157366737288992163349171048688798463267664859364875790185551813894632412980205208366671935782165194373264746274299962531422140746241331327245578338344158437780432087037897823778356347516601795918870609920000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_217 2174434113582705391286180135953604532547074113841280120966134941338127751629996882750252826548685075220319214067349484135380654467787270451742678423326570265620157366737288992163349171048688798463267664859364875790185551813894632412980205208366671935782165194373264746274299962531422140746241331327245578338344158437780432087037897823778356347516601795918870609920000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_218,474026636761029775300387269637885788095262156817399066370617417211711849855339320439555116187613346398029588666682187541512982673977624958479903896285192317905194305948729000291610119288614158064992350939341542922260450295429029866029684735423934482000512012373371714687797391831850026682680610229339536077759026539436134194974261725583681683758619191510313792962560000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_218 474026636761029775300387269637885788095262156817399066370617417211711849855339320439555116187613346398029588666682187541512982673977624958479903896285192317905194305948729000291610119288614158064992350939341542922260450295429029866029684735423934482000512012373371714687797391831850026682680610229339536077759026539436134194974261725583681683758619191510313792962560000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_219,103811833450665520790784812050696987592862412343010395535165214369364895118319311176262570445087322861168479918003399071591343205601099865907098953286457117621237553002771651063862616124206500616233324855715797899975038614698957540660500957057841651558112130709768405516627628811175155843507053640225358401029226812136513388699363317902826288743137602940758720658800640000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_219 103811833450665520790784812050696987592862412343010395535165214369364895118319311176262570445087322861168479918003399071591343205601099865907098953286457117621237553002771651063862616124206500616233324855715797899975038614698957540660500957057841651558112130709768405516627628811175155843507053640225358401029226812136513388699363317902826288743137602940758720658800640000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_220,22838603359146414573972658651153337270429730715462287017736347161260276926030248458777765497919211029457065581960747795750095505232241970499561769723020565876672261660609763234049775547325430135571331468257475537994508495233770658945310210552725163342784668756149049213658078338458534285571551800849578848226429898670032945513859929938621783523490272646966918544936140800000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_220 22838603359146414573972658651153337270429730715462287017736347161260276926030248458777765497919211029457065581960747795750095505232241970499561769723020565876672261660609763234049775547325430135571331468257475537994508495233770658945310210552725163342784668756149049213658078338458534285571551800849578848226429898670032945513859929938621783523490272646966918544936140800000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_221,5047331342371357620847957561904887536764970488117165430919732722638521200652684909389886175040145637510011493613325262860771106656325475480403151108787545058744569826994757674725000395958920059961264254484902093896786377446663315626913556532152261098755411795108939876218435312799336077111312947987756925458041007606077280958563044516435414158691350254979688998430887116800000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_221 5047331342371357620847957561904887536764970488117165430919732722638521200652684909389886175040145637510011493613325262860771106656325475480403151108787545058744569826994757674725000395958920059961264254484902093896786377446663315626913556532152261098755411795108939876218435312799336077111312947987756925458041007606077280958563044516435414158691350254979688998430887116800000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_222,1120507558006441391828246578742885033161823448362010725664180664425751706544896049884554730858912331527222551582158208355091185677704255556649499546150835003041294501592836203788950087902880253311400664495648264845086575793159256069174809550137801963923701418514184652520492639441452609118711474453282037451685103688549156372800995882648661943229479756605490957651656939929600000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_222 1120507558006441391828246578742885033161823448362010725664180664425751706544896049884554730858912331527222551582158208355091185677704255556649499546150835003041294501592836203788950087902880253311400664495648264845086575793159256069174809550137801963923701418514184652520492639441452609118711474453282037451685103688549156372800995882648661943229479756605490957651656939929600000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_223,249873185435436430377698987059663362395086628984728391823112288166942630559511819124255704981537449930570629002821280463185334406128048989132838398791636205678208673855202473444935869602342296488442348182529563060454306401874514103425982529680729837954985416328663177512069858595443931833472658803081894351725778122546461871134622081830651613340173985723024483556319497604300800000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_223 249873185435436430377698987059663362395086628984728391823112288166942630559511819124255704981537449930570629002821280463185334406128048989132838398791636205678208673855202473444935869602342296488442348182529563060454306401874514103425982529680729837954985416328663177512069858595443931833472658803081894351725778122546461871134622081830651613340173985723024483556319497604300800000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_224,55971593537537760404604573101364593176499404892579159768377152549395149245330647483833277915864388784447820896631966823753514906972682973565755801329326510071918742943565354051665634790924674413411085992886622125541764634019891159167420086648483483701916733257620551762703648325379440730697875571890344334786574299450407459134155346330065961388198972801957484316615567463363379200000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_224 55971593537537760404604573101364593176499404892579159768377152549395149245330647483833277915864388784447820896631966823753514906972682973565755801329326510071918742943565354051665634790924674413411085992886622125541764634019891159167420086648483483701916733257620551762703648325379440730697875571890344334786574299450407459134155346330065961388198972801957484316615567463363379200000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_225,12593608545945996091036028947807033464712366100830310947884859323613908580199395683862487531069487476500759701742192535344540854068853669052295055299098464766181717162302204661624767827958051743017494348399489978246897042654475510812669519495908783832931264982964624146608320873210374164407022003675327475326979217376341678305184952924264841312344768880440433971238502679256760320000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_225 12593608545945996091036028947807033464712366100830310947884859323613908580199395683862487531069487476500759701742192535344540854068853669052295055299098464766181717162302204661624767827958051743017494348399489978246897042654475510812669519495908783832931264982964624146608320873210374164407022003675327475326979217376341678305184952924264841312344768880440433971238502679256760320000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_226,2846155531383795116574142542204389563024994738787650274221978207136743339125063424552922182021704169689171692593735512987866233019560929205818682497596253037157068078680298253527197529118519693921953722738284735083798731639911465443663311406075385146242465886150005057133480517345544561155986972830624009423897303127053219296971799360883854136589917766979538077499901605512027832320000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_226 2846155531383795116574142542204389563024994738787650274221978207136743339125063424552922182021704169689171692593735512987866233019560929205818682497596253037157068078680298253527197529118519693921953722738284735083798731639911465443663311406075385146242465886150005057133480517345544561155986972830624009423897303127053219296971799360883854136589917766979538077499901605512027832320000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_227,646077305624121491462330357080396430806673805704796612248389053020040737981389397373513335318926846519441974218777961448245634895440330929720840926954349439434654453860427703550673839109903970520283495061590634864022312082259902655711571689179112428197039756156051147969300077437438615382409042832551650139224687809841080780412598454920634889005911333104355143592477664451230317936640000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_227 646077305624121491462330357080396430806673805704796612248389053020040737981389397373513335318926846519441974218777961448245634895440330929720840926954349439434654453860427703550673839109903970520283495061590634864022312082259902655711571689179112428197039756156051147969300077437438615382409042832551650139224687809841080780412598454920634889005911333104355143592477664451230317936640000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_228,147305625682299700053411321414330386223921627700693627592632704088569288259756782601161040452715321006432770121881375210200004756160395451976351731345591672191101215480177516409553635317058105278624636874042664748997087154755257805502238345132837633628925064403579661737000417655736004307189261765821776231743228820643766417934072447721904754693347783947792972739084907494880512489553920000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_228 147305625682299700053411321414330386223921627700693627592632704088569288259756782601161040452715321006432770121881375210200004756160395451976351731345591672191101215480177516409553635317058105278624636874042664748997087154755257805502238345132837633628925064403579661737000417655736004307189261765821776231743228820643766417934072447721904754693347783947792972739084907494880512489553920000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_229,33732988281246631312231192603881658445278052743458840718712889236282367011484303215665878263671808510473104357910834923135801089160730558502584546478140492931762178344960651257787782487606306108805041844155770227520332958438954037460012581035419818101023839748419742537773095643163544986346340944373186757069199399927422509706902590528316188824776642524044590757250443816327637360107847680000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_229 33732988281246631312231192603881658445278052743458840718712889236282367011484303215665878263671808510473104357910834923135801089160730558502584546478140492931762178344960651257787782487606306108805041844155770227520332958438954037460012581035419818101023839748419742537773095643163544986346340944373186757069199399927422509706902590528316188824776642524044590757250443816327637360107847680000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_230,7758587304686725201813174298892781442413952130995533365303964524344944412641389739603152000644515957408814002319492032321234250506968028455594445689972313374305301019340949789291189972149450405025159624155827152329676580440959428615802893638146558163235483142136540783687811997927615346859658417205832954125915861983307177232587595821512723429698627780530255874167602077755356592824804966400000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_230 7758587304686725201813174298892781442413952130995533365303964524344944412641389739603152000644515957408814002319492032321234250506968028455594445689972313374305301019340949789291189972149450405025159624155827152329676580440959428615802893638146558163235483142136540783687811997927615346859658417205832954125915861983307177232587595821512723429698627780530255874167602077755356592824804966400000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_231,1792233667382633521618843263044232513197622942259968207385215805123682159320161029848328112148883186161436034535802659466205111867109614573242316954383604389464524535467759401326264883566523043560811873179996072188155290081861628010250468430411854935707396605833540921031884571521279145124581094374547412403086564118143957940727734634769439112260383017302489106932716079961487372942529947238400000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_231 1792233667382633521618843263044232513197622942259968207385215805123682159320161029848328112148883186161436034535802659466205111867109614573242316954383604389464524535467759401326264883566523043560811873179996072188155290081861628010250468430411854935707396605833540921031884571521279145124581094374547412403086564118143957940727734634769439112260383017302489106932716079961487372942529947238400000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_232,415798210832770977015571637026261943061848522604312624113370066788694260962277358924812122018540899189453160012306216996159585953169430580992217533416996218355769692228520181107693452987433346106108354577759088747652027298991897698378108675855550345084116012553381493679397220592936761668902813894894999677516082875409398242248834435266509874044408860014177472808390130551065070522666947759308800000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_232 415798210832770977015571637026261943061848522604312624113370066788694260962277358924812122018540899189453160012306216996159585953169430580992217533416996218355769692228520181107693452987433346106108354577759088747652027298991897698378108675855550345084116012553381493679397220592936761668902813894894999677516082875409398242248834435266509874044408860014177472808390130551065070522666947759308800000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_233,96880983124035637644628191427119032733410705766804841418415225561765762804210624629481224430320029511142586282867348560105183527088477325371186685286160118876894338289245202198092574546071969642723246616617867678202922360665112163722099321474343230404599030924937888027299552398154265468854355637510534924861247309970389790443978423417096800652347264383303351164354900418398161431781398827918950400000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_233 96880983124035637644628191427119032733410705766804841418415225561765762804210624629481224430320029511142586282867348560105183527088477325371186685286160118876894338289245202198092574546071969642723246616617867678202922360665112163722099321474343230404599030924937888027299552398154265468854355637510534924861247309970389790443978423417096800652347264383303351164354900418398161431781398827918950400000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_234,22670150051024339208842996793945853659618105149432332891909162781453188496185286163298606516694886905607365190190959563064612945338703694136857684356961467817193275159683377314353662443780840896397239708288581036699483832395636246310971241224996315914676173236435465798388095261168098119711919219177465172417531870533071210963890951079600651352649259865692984172459046697905169775036847325733034393600000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_234 22670150051024339208842996793945853659618105149432332891909162781453188496185286163298606516694886905607365190190959563064612945338703694136857684356961467817193275159683377314353662443780840896397239708288581036699483832395636246310971241224996315914676173236435465798388095261168098119711919219177465172417531870533071210963890951079600651352649259865692984172459046697905169775036847325733034393600000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_235,5327485261990719714078104246577275610010254710116598229598653253641499296603542248375172531423298422817730819694875497320184042154595368122161555823885944937040419662525593668873110674288497610653351331447816543624378700612974517883078241687874134239948900710562334462621202386374503058132301016506704315518119989575271734576514373503706153067872576068437851280527875974007714897133659121547263082496000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_235 5327485261990719714078104246577275610010254710116598229598653253641499296603542248375172531423298422817730819694875497320184042154595368122161555823885944937040419662525593668873110674288497610653351331447816543624378700612974517883078241687874134239948900710562334462621202386374503058132301016506704315518119989575271734576514373503706153067872576068437851280527875974007714897133659121547263082496000000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_236,1257286521829809852522432602192237043962420111587517182185282167859393833998435970616540717415898427784984473447990617367563433948484506876830127174437083005141539040356040105854054119132085436114190914221684704295353373344661986220406465038338295680627940567692710933178603763184382721719223039895582218462276317539764129360057392146874652124017927952151332902204578729865820715723543552685154087469056000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_236 1257286521829809852522432602192237043962420111587517182185282167859393833998435970616540717415898427784984473447990617367563433948484506876830127174437083005141539040356040105854054119132085436114190914221684704295353373344661986220406465038338295680627940567692710933178603763184382721719223039895582218462276317539764129360057392146874652124017927952151332902204578729865820715723543552685154087469056000000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_237,297976905673664935047816526719560179419093566446241572177911873782676338657629325036120150027567927385041320207173776316112533845790828129808740140341588672218544752564381505087410826234304248359063246670539274917998749482684890734236332214086176076308821914543172491163329091874698705047455860455252985775559487256924098658333601938809292553392248924659865897822485158978199509626479821986381518730166272000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_237 297976905673664935047816526719560179419093566446241572177911873782676338657629325036120150027567927385041320207173776316112533845790828129808740140341588672218544752564381505087410826234304248359063246670539274917998749482684890734236332214086176076308821914543172491163329091874698705047455860455252985775559487256924098658333601938809292553392248924659865897822485158978199509626479821986381518730166272000000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_238,70918503550332254541380333359255322701744268814205494178343025960276968600515779358596595706561166717639834209307358763234783055298217094894480153401298103988013651110322798210803776643764411109457052707588347430483702376879003994748247066952509906161499615661275052896872323866178291801294494788350210614583157967147935480683397261436611627707355244069048083681751467836811483291102197632758801457779572736000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_238 70918503550332254541380333359255322701744268814205494178343025960276968600515779358596595706561166717639834209307358763234783055298217094894480153401298103988013651110322798210803776643764411109457052707588347430483702376879003994748247066952509906161499615661275052896872323866178291801294494788350210614583157967147935480683397261436611627707355244069048083681751467836811483291102197632758801457779572736000000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_239,16949522348529408835389899672862022125716880246595113108623983204506195495523271266704586373868118845515920376024458744413113150216273885679780756662910246853135262615367148772382102617859694255160235597113615035885604868074081954744831049001649867572598408143044737642352485404016611740509384254415700336885374754148356579883331945483350179022057903332502491999938600812997944506573425234229353548409317883904000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_239 16949522348529408835389899672862022125716880246595113108623983204506195495523271266704586373868118845515920376024458744413113150216273885679780756662910246853135262615367148772382102617859694255160235597113615035885604868074081954744831049001649867572598408143044737642352485404016611740509384254415700336885374754148356579883331945483350179022057903332502491999938600812997944506573425234229353548409317883904000000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_240,4067885363647058120493575921486885310172051259182827146069755969081486918925585104009100729728348522923820890245870098659147156051905732563147381599098459244752463027688115705371704628286326621238456543307267608612545168337779669138759451760395968217423617954330737034164596496963986817722252221059768080852489940995605579171999666916004042965293896799800598079985264195119506681577622056215044851618236292136960000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_240 4067885363647058120493575921486885310172051259182827146069755969081486918925585104009100729728348522923820890245870098659147156051905732563147381599098459244752463027688115705371704628286326621238456543307267608612545168337779669138759451760395968217423617954330737034164596496963986817722252221059768080852489940995605579171999666916004042965293896799800598079985264195119506681577622056215044851618236292136960000000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_241,980360372638941007038951797078339359751464353463061342202811188548638347461066010066193275864531994024640834549254693776854464608509281547718518965382728677985343589672835884994580815417004715718468026937051493675623385569404900262441027874255428340399091926993707625233667755768320823071062785275404107485450075779940944580451919726756974354635829128751944137276448671023801110260206915547825809239994946405007360000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_241 980360372638941007038951797078339359751464353463061342202811188548638347461066010066193275864531994024640834549254693776854464608509281547718518965382728677985343589672835884994580815417004715718468026937051493675623385569404900262441027874255428340399091926993707625233667755768320823071062785275404107485450075779940944580451919726756974354635829128751944137276448671023801110260206915547825809239994946405007360000000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_242,237247210178623723703426334892958125059854373538060844813080307628770480085577974436018772759216742553963081960919635893998780435259246134547881589622620340072453148700826284168688557330915141203869262518766461469500859307795985863510728745569813658376580246332477245306547596895933639183197194036647794011478918338745708588469364573875187793821870649157970481220900578387759868682970073562573845836078777030011781120000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_242 237247210178623723703426334892958125059854373538060844813080307628770480085577974436018772759216742553963081960919635893998780435259246134547881589622620340072453148700826284168688557330915141203869262518766461469500859307795985863510728745569813658376580246332477245306547596895933639183197194036647794011478918338745708588469364573875187793821870649157970481220900578387759868682970073562573845836078777030011781120000000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_243,57651072073405564859932599378988824389544612769748785289578514753791226660795447787952561780489668440613028916503471522241703645767996810695135226278296742637606115134300787052991319431412379312540230792060250137088708811794424564833107085173464718985508999858791970609491066045711874321516918150905413944789377156315207186998055591451670633898714567745386826936678840548225648089961727875705444538167142818292862812160000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_243 57651072073405564859932599378988824389544612769748785289578514753791226660795447787952561780489668440613028916503471522241703645767996810695135226278296742637606115134300787052991319431412379312540230792060250137088708811794424564833107085173464718985508999858791970609491066045711874321516918150905413944789377156315207186998055591451670633898714567745386826936678840548225648089961727875705444538167142818292862812160000000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_244,14066861585910957825823554248473273151048885515818703610657157599925059305234089260260425074439479099509579055626847051426975689567391221809612995211904405203575892092769392040929881941264620552259816313262701033449644950077839593819278128782325391432464195965545240828715820115153697334450128028820921002528608026140910553627525564314207634671286354529874385772549637093767058133950661601672128467312782847663458526167040000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_244 14066861585910957825823554248473273151048885515818703610657157599925059305234089260260425074439479099509579055626847051426975689567391221809612995211904405203575892092769392040929881941264620552259816313262701033449644950077839593819278128782325391432464195965545240828715820115153697334450128028820921002528608026140910553627525564314207634671286354529874385772549637093767058133950661601672128467312782847663458526167040000000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_245,3446381088548184667326770790875951922006976951375582384611003611981639529782351868763804143237672379379846868628577527599609043944010849343355183826916579274876093562728501050027821075609832035303654996749361753195163012769070700485723141551669720900953728011558584003035375928212655846940281367061125645619508966404523085638743763256980870494465156859819224514274661087972929242817912092409671474491631797677547338910924800000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_245 3446381088548184667326770790875951922006976951375582384611003611981639529782351868763804143237672379379846868628577527599609043944010849343355183826916579274876093562728501050027821075609832035303654996749361753195163012769070700485723141551669720900953728011558584003035375928212655846940281367061125645619508966404523085638743763256980870494465156859819224514274661087972929242817912092409671474491631797677547338910924800000000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_246,847809747782853428162385614555484172813716330038393266614306888547483324326458559715895819236467405327442329682630071789503824810226668938465375221421478501619519016431211258306843984600018680684699129200342991286010101141191392319487892821710751341634617090843411664746702478340313338347309216297036908822399205735512679067130965761217294141638428587515529230511566627641340593733206374732779182724941422228676645372087500800000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_246 847809747782853428162385614555484172813716330038393266614306888547483324326458559715895819236467405327442329682630071789503824810226668938465375221421478501619519016431211258306843984600018680684699129200342991286010101141191392319487892821710751341634617090843411664746702478340313338347309216297036908822399205735512679067130965761217294141638428587515529230511566627641340593733206374732779182724941422228676645372087500800000000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_247,209409007702364796756109246795204590684987933519483136853733801471228381108635264249826267351407449115878255431609627732007444728125987227800947679691105189900021197058509180801790464196204614129120684912484718847644494981874273902913509526962555581383750421438322681192435512150057394571785376425368116479132603816671631729581348543020671652984691861116335719936356957027411126652101974558996458133060531290483131406905612697600000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_247 209409007702364796756109246795204590684987933519483136853733801471228381108635264249826267351407449115878255431609627732007444728125987227800947679691105189900021197058509180801790464196204614129120684912484718847644494981874273902913509526962555581383750421438322681192435512150057394571785376425368116479132603816671631729581348543020671652984691861116335719936356957027411126652101974558996458133060531290483131406905612697600000000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_248,51933433910186469595515093205210738489877007512831817939725982764864638514941545533956914303149047380737807347039187677537846292575244832494635024563394087095205256870510276838844035120658744304021929858296210274215834755504819927922550362686713784183170104516704024935724007013214233853802773353491292886824885746534564668936174438669126569940203581556851258544216525342797959409721289690631121616999011760039816588912591949004800000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_248 51933433910186469595515093205210738489877007512831817939725982764864638514941545533956914303149047380737807347039187677537846292575244832494635024563394087095205256870510276838844035120658744304021929858296210274215834755504819927922550362686713784183170104516704024935724007013214233853802773353491292886824885746534564668936174438669126569940203581556851258544216525342797959409721289690631121616999011760039816588912591949004800000000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_249,12931425043636430929283258208097473883979374870695122666991769708451294990220444837955271661484112797803714029412757731706923726851235963291164121116285127686706108960757058932872164745044027331701460534715756358279742854120700162052715040308991732261609356024659302208995277746290344229596890565019331928819396550887106602565107435228612515915110691807655963377509914810356691893020601132967149282632753928249914330639235395302195200000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_249 12931425043636430929283258208097473883979374870695122666991769708451294990220444837955271661484112797803714029412757731706923726851235963291164121116285127686706108960757058932872164745044027331701460534715756358279742854120700162052715040308991732261609356024659302208995277746290344229596890565019331928819396550887106602565107435228612515915110691807655963377509914810356691893020601132967149282632753928249914330639235395302195200000000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_250,3232856260909107732320814552024368470994843717673780666747942427112823747555111209488817915371028199450928507353189432926730931712808990822791030279071281921676527240189264733218041186261006832925365133678939089569935713530175040513178760077247933065402339006164825552248819436572586057399222641254832982204849137721776650641276858807153128978777672951913990844377478702589172973255150283241787320658188482062478582659808848825548800000000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_250 3232856260909107732320814552024368470994843717673780666747942427112823747555111209488817915371028199450928507353189432926730931712808990822791030279071281921676527240189264733218041186261006832925365133678939089569935713530175040513178760077247933065402339006164825552248819436572586057399222641254832982204849137721776650641276858807153128978777672951913990844377478702589172973255150283241787320658188482062478582659808848825548800000000000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_251,811446921488186040812524452558116486219705773136118947353733549205318760636332913581693296758128078062183055345650547664609463859915056696520548600046891762340808337287505448037728337751512715064266648553413711482053864096073935168807868779389231199415987090547371213614453678579719100407204882954963078533417133568165939310960491560595435373673195910930411701938747154349882416287042721093688617485205308997682124247612021055212748800000000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_251 811446921488186040812524452558116486219705773136118947353733549205318760636332913581693296758128078062183055345650547664609463859915056696520548600046891762340808337287505448037728337751512715064266648553413711482053864096073935168807868779389231199415987090547371213614453678579719100407204882954963078533417133568165939310960491560595435373673195910930411701938747154349882416287042721093688617485205308997682124247612021055212748800000000000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_252,204484624215022882284756162044645354527365854830301974733140854399740327680355894222586710783048275671670129947103938011481584892698594287523178247211816724109883700996451372905507541113381204196195195435460255293477573752210631662539582932406086262252828746817937545830842327002089213302615630504650695790421117659177816706362043873270049714165645369554463748888564282896170368904334765715609531606271737867415895310398229305913612697600000000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_252 204484624215022882284756162044645354527365854830301974733140854399740327680355894222586710783048275671670129947103938011481584892698594287523178247211816724109883700996451372905507541113381204196195195435460255293477573752210631662539582932406086262252828746817937545830842327002089213302615630504650695790421117659177816706362043873270049714165645369554463748888564282896170368904334765715609531606271737867415895310398229305913612697600000000000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_253,51734609926400789218043308997295274695423561272066399607484636163134302903130041238314437828111213744932542876617296316904840977852744354743364096544589631199800576352102197345093407901685444661637384445171444589249826159309289810622514481898739824349965672944938199095203108731528570965561754517676626034976542767771987626709597099937322577683908278497279328468806763572731103332796695726049211496386749680456221513530752014396144012492800000000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_253 51734609926400789218043308997295274695423561272066399607484636163134302903130041238314437828111213744932542876617296316904840977852744354743364096544589631199800576352102197345093407901685444661637384445171444589249826159309289810622514481898739824349965672944938199095203108731528570965561754517676626034976542767771987626709597099937322577683908278497279328468806763572731103332796695726049211496386749680456221513530752014396144012492800000000000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_254,13140590921305800461383000485312999772637584563104865500301097585436112937395030474531867208340248291212865890660793264493829608374597066104814480522325766324749346393433958125653725607028102944055895649073546925669455844464559611898118678402279915384891280928014302570181589617808257025252685647489863012884041863014084857184237663384079934731712702738308949431076917947473700246530360714416499720082234418835880264436811011656620579173171200000000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_254 13140590921305800461383000485312999772637584563104865500301097585436112937395030474531867208340248291212865890660793264493829608374597066104814480522325766324749346393433958125653725607028102944055895649073546925669455844464559611898118678402279915384891280928014302570181589617808257025252685647489863012884041863014084857184237663384079934731712702738308949431076917947473700246530360714416499720082234418835880264436811011656620579173171200000000000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_255,3350850684932979117652665123754814942022584063591740702576779884286208799035732771005626138126763314259280802118502282445926550135522251856727692533193070412811083330325659322041700029792166250734253390513754466045711240338462701034020262992581378423147276636643647155396305352541105541439434840109915068285430675068591638581980604162940383356586739198268782104924614076605793562865241982176207428620969776803149467431386807972438247689158656000000000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_255 3350850684932979117652665123754814942022584063591740702576779884286208799035732771005626138126763314259280802118502282445926550135522251856727692533193070412811083330325659322041700029792166250734253390513754466045711240338462701034020262992581378423147276636643647155396305352541105541439434840109915068285430675068591638581980604162940383356586739198268782104924614076605793562865241982176207428620969776803149467431386807972438247689158656000000000000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_256,857817775342842654119082271681232625157781520279485619859655650377269452553147589377440291360451408450375885342336584306157196834693696475322289288497426025679637332563368786442675207626794560187968867971521143307702077526646451464709187326100832876325702818980773671781454170250523018608495319068138257481070252817559459476987034665712738139286205234756808218860701203611083152093501947437109101726968262861606263662435022840944191408424615936000000000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_256 857817775342842654119082271681232625157781520279485619859655650377269452553147589377440291360451408450375885342336584306157196834693696475322289288497426025679637332563368786442675207626794560187968867971521143307702077526646451464709187326100832876325702818980773671781454170250523018608495319068138257481070252817559459476987034665712738139286205234756808218860701203611083152093501947437109101726968262861606263662435022840944191408424615936000000000000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 SET,:1:factorial_256,857817775342842654119082271681232625157781520279485619859655650377269452553147589377440291360451408450375885342336584306157196834693696475322289288497426025679637332563368786442675207626794560187968867971521143307702077526646451464709187326100832876325702818980773671781454170250523018608495319068138257481070252817559459476987034665712738139286205234756808218860701203611083152093501947437109101726968262861606263662435022840944191408424615936000000000000000000000000000000000000000000000000000000000000000,PX,60000 :1:factorial_256 857817775342842654119082271681232625157781520279485619859655650377269452553147589377440291360451408450375885342336584306157196834693696475322289288497426025679637332563368786442675207626794560187968867971521143307702077526646451464709187326100832876325702818980773671781454170250523018608495319068138257481070252817559459476987034665712738139286205234756808218860701203611083152093501947437109101726968262861606263662435022840944191408424615936000000000000000000000000000000000000000000000000000000000000000 +XXXXXXXXXX.XXXXXX CFLRIC3zaTU1loLGxh 127.0.0.1 54554 127.0.0.1 6379 GET,:1:factorial_4 :1:factorial_4 - +#close XXXX-XX-XX-XX-XX-XX diff --git a/testing/btest/Baseline/scripts.base.protocols.redis.pipelined-with-commands/output b/testing/btest/Baseline/scripts.base.protocols.redis.pipelined-with-commands/output new file mode 100644 index 0000000000..49d861c74c --- /dev/null +++ b/testing/btest/Baseline/scripts.base.protocols.redis.pipelined-with-commands/output @@ -0,0 +1 @@ +### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63. diff --git a/testing/btest/Baseline/scripts.base.protocols.redis.pipelined-with-commands/resp.log b/testing/btest/Baseline/scripts.base.protocols.redis.pipelined-with-commands/resp.log new file mode 100644 index 0000000000..13776387d5 --- /dev/null +++ b/testing/btest/Baseline/scripts.base.protocols.redis.pipelined-with-commands/resp.log @@ -0,0 +1,14 @@ +### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63. +#separator \x09 +#set_separator , +#empty_field (empty) +#unset_field - +#path resp +#open XXXX-XX-XX-XX-XX-XX +#fields ts uid id.orig_h id.orig_p id.resp_h id.resp_p cmd.raw cmd.key cmd.value +#types time string addr port addr port vector[string] string string +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc ::1 56731 ::1 6379 PING - - +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc ::1 56731 ::1 6379 PING - - +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc ::1 56731 ::1 6379 SET,HI,3 HI 3 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc ::1 56731 ::1 6379 GET,HI HI - +#close XXXX-XX-XX-XX-XX-XX diff --git a/testing/btest/Baseline/scripts.base.protocols.redis.pipelined/output b/testing/btest/Baseline/scripts.base.protocols.redis.pipelined/output new file mode 100644 index 0000000000..49d861c74c --- /dev/null +++ b/testing/btest/Baseline/scripts.base.protocols.redis.pipelined/output @@ -0,0 +1 @@ +### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63. diff --git a/testing/btest/Baseline/scripts.base.protocols.redis.pipelined/resp.log b/testing/btest/Baseline/scripts.base.protocols.redis.pipelined/resp.log new file mode 100644 index 0000000000..8213e7012f --- /dev/null +++ b/testing/btest/Baseline/scripts.base.protocols.redis.pipelined/resp.log @@ -0,0 +1,13 @@ +### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63. +#separator \x09 +#set_separator , +#empty_field (empty) +#unset_field - +#path resp +#open XXXX-XX-XX-XX-XX-XX +#fields ts uid id.orig_h id.orig_p id.resp_h id.resp_p cmd.raw cmd.key cmd.value +#types time string addr port addr port vector[string] string string +XXXXXXXXXX.XXXXXX CtPZjS20MLrsMUOJi2 ::1 51122 ::1 6379 PING - - +XXXXXXXXXX.XXXXXX CtPZjS20MLrsMUOJi2 ::1 51122 ::1 6379 PING - - +XXXXXXXXXX.XXXXXX CtPZjS20MLrsMUOJi2 ::1 51122 ::1 6379 PING - - +#close XXXX-XX-XX-XX-XX-XX diff --git a/testing/btest/Baseline/scripts.base.protocols.redis.pubsub/output b/testing/btest/Baseline/scripts.base.protocols.redis.pubsub/output new file mode 100644 index 0000000000..49d861c74c --- /dev/null +++ b/testing/btest/Baseline/scripts.base.protocols.redis.pubsub/output @@ -0,0 +1 @@ +### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63. diff --git a/testing/btest/Baseline/scripts.base.protocols.redis.pubsub/resp.log b/testing/btest/Baseline/scripts.base.protocols.redis.pubsub/resp.log new file mode 100644 index 0000000000..d1864dd068 --- /dev/null +++ b/testing/btest/Baseline/scripts.base.protocols.redis.pubsub/resp.log @@ -0,0 +1,14 @@ +### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63. +#separator \x09 +#set_separator , +#empty_field (empty) +#unset_field - +#path resp +#open XXXX-XX-XX-XX-XX-XX +#fields ts uid id.orig_h id.orig_p id.resp_h id.resp_p cmd.raw cmd.key cmd.value +#types time string addr port addr port vector[string] string string +XXXXXXXXXX.XXXXXX CtPZjS20MLrsMUOJi2 127.0.0.1 53426 127.0.0.1 6379 subscribe,my_channel - - +XXXXXXXXXX.XXXXXX CtPZjS20MLrsMUOJi2 127.0.0.1 53426 127.0.0.1 6379 message,my_channel,hi there! - - +XXXXXXXXXX.XXXXXX CUM0KZ3MLUfNB0cl11 127.0.0.1 53450 127.0.0.1 6379 PUBLISH,my_channel,1 - - +XXXXXXXXXX.XXXXXX CtPZjS20MLrsMUOJi2 127.0.0.1 53426 127.0.0.1 6379 message,my_channel,1 - - +#close XXXX-XX-XX-XX-XX-XX diff --git a/testing/btest/Baseline/scripts.base.protocols.redis.set/output b/testing/btest/Baseline/scripts.base.protocols.redis.set/output new file mode 100644 index 0000000000..8473b404b8 --- /dev/null +++ b/testing/btest/Baseline/scripts.base.protocols.redis.set/output @@ -0,0 +1,4 @@ +### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63. +Key: test Value: hi +Key: one:1 Value: 2 +Key: two:2 Value: three diff --git a/testing/btest/Baseline/scripts.base.protocols.redis.trace/output b/testing/btest/Baseline/scripts.base.protocols.redis.trace/output index a3c0b852bb..6dbec15ba2 100644 --- a/testing/btest/Baseline/scripts.base.protocols.redis.trace/output +++ b/testing/btest/Baseline/scripts.base.protocols.redis.trace/output @@ -1,15 +1,4 @@ ### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63. -Testing RESP: [simple_string=, simple_error=, i=, bulk_string=SET, is_null=F, boolean=, double_=, big_num=, bulk_error=, verbatim_string=] -Testing RESP: [simple_string=, simple_error=, i=, bulk_string=hi:2, is_null=F, boolean=, double_=, big_num=, bulk_error=, verbatim_string=] -Testing RESP: [simple_string=, simple_error=, i=, bulk_string=2, is_null=F, boolean=, double_=, big_num=, bulk_error=, verbatim_string=] -Testing RESP: [simple_string=, simple_error=, i=, bulk_string=, is_null=F, boolean=, double_=, big_num=, bulk_error=, verbatim_string=] -Testing RESP: [simple_string=OK, simple_error=, i=, bulk_string=, is_null=F, boolean=, double_=, big_num=, bulk_error=, verbatim_string=] -Testing RESP: [simple_string=, simple_error=, i=, bulk_string=SET, is_null=F, boolean=, double_=, big_num=, bulk_error=, verbatim_string=] -Testing RESP: [simple_string=, simple_error=, i=, bulk_string=hi:3, is_null=F, boolean=, double_=, big_num=, bulk_error=, verbatim_string=] -Testing RESP: [simple_string=, simple_error=, i=, bulk_string=sup, is_null=F, boolean=, double_=, big_num=, bulk_error=, verbatim_string=] -Testing RESP: [simple_string=, simple_error=, i=, bulk_string=, is_null=F, boolean=, double_=, big_num=, bulk_error=, verbatim_string=] -Testing RESP: [simple_string=OK, simple_error=, i=, bulk_string=, is_null=F, boolean=, double_=, big_num=, bulk_error=, verbatim_string=] -Testing RESP: [simple_string=, simple_error=, i=, bulk_string=GET, is_null=F, boolean=, double_=, big_num=, bulk_error=, verbatim_string=] -Testing RESP: [simple_string=, simple_error=, i=, bulk_string=hi:3, is_null=F, boolean=, double_=, big_num=, bulk_error=, verbatim_string=] -Testing RESP: [simple_string=, simple_error=, i=, bulk_string=, is_null=F, boolean=, double_=, big_num=, bulk_error=, verbatim_string=] -Testing RESP: [simple_string=, simple_error=, i=, bulk_string=sup, is_null=F, boolean=, double_=, big_num=, bulk_error=, verbatim_string=] +SET: hi:2 2 +SET: hi:3 sup +GET: [key=hi:3] diff --git a/testing/btest/Baseline/scripts.base.protocols.redis.trace/resp.log b/testing/btest/Baseline/scripts.base.protocols.redis.trace/resp.log index 85c62c2387..aaef13cd17 100644 --- a/testing/btest/Baseline/scripts.base.protocols.redis.trace/resp.log +++ b/testing/btest/Baseline/scripts.base.protocols.redis.trace/resp.log @@ -5,20 +5,9 @@ #unset_field - #path resp #open XXXX-XX-XX-XX-XX-XX -#fields ts uid id.orig_h id.orig_p id.resp_h id.resp_p resp_data.simple_string resp_data.simple_error resp_data.i resp_data.bulk_string resp_data.is_null resp_data.boolean resp_data.double_ resp_data.big_num resp_data.bulk_error resp_data.verbatim_string -#types time string addr port addr port string string int string bool bool double string string string -XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 - - - SET F - - - - - -XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 - - - hi:2 F - - - - - -XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 - - - 2 F - - - - - -XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 - - - - F - - - - - -XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 OK - - - F - - - - - -XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 - - - SET F - - - - - -XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 - - - hi:3 F - - - - - -XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 - - - sup F - - - - - -XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 - - - - F - - - - - -XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 OK - - - F - - - - - -XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 - - - GET F - - - - - -XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 - - - hi:3 F - - - - - -XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 - - - - F - - - - - -XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 - - - sup F - - - - - +#fields ts uid id.orig_h id.orig_p id.resp_h id.resp_p cmd.raw cmd.key cmd.value +#types time string addr port addr port vector[string] string string +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 SET,hi:2,2 hi:2 2 +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 SET,hi:3,sup hi:3 sup +XXXXXXXXXX.XXXXXX C4J4Th3PJpwUYZZ6gc 127.0.0.1 58972 127.0.0.1 6379 GET,hi:3 hi:3 - #close XXXX-XX-XX-XX-XX-XX diff --git a/testing/btest/Traces/redis/bulk-loading.trace b/testing/btest/Traces/redis/bulk-loading.trace new file mode 100644 index 0000000000..ab1af2c0b8 Binary files /dev/null and b/testing/btest/Traces/redis/bulk-loading.trace differ diff --git a/testing/btest/Traces/redis/django-cache.trace b/testing/btest/Traces/redis/django-cache.trace new file mode 100644 index 0000000000..c50e1cbfae Binary files /dev/null and b/testing/btest/Traces/redis/django-cache.trace differ diff --git a/testing/btest/Traces/redis/django-cloud.trace b/testing/btest/Traces/redis/django-cloud.trace new file mode 100644 index 0000000000..74a62cf3e3 Binary files /dev/null and b/testing/btest/Traces/redis/django-cloud.trace differ diff --git a/testing/btest/Traces/redis/pipeline-with-commands.trace b/testing/btest/Traces/redis/pipeline-with-commands.trace new file mode 100644 index 0000000000..a5f6a6a524 Binary files /dev/null and b/testing/btest/Traces/redis/pipeline-with-commands.trace differ diff --git a/testing/btest/Traces/redis/pipelining-example.trace b/testing/btest/Traces/redis/pipelining-example.trace new file mode 100644 index 0000000000..d101881879 Binary files /dev/null and b/testing/btest/Traces/redis/pipelining-example.trace differ diff --git a/testing/btest/Traces/redis/pubsub.trace b/testing/btest/Traces/redis/pubsub.trace new file mode 100644 index 0000000000..d4ddee538d Binary files /dev/null and b/testing/btest/Traces/redis/pubsub.trace differ diff --git a/testing/btest/Traces/redis/set.trace b/testing/btest/Traces/redis/set.trace new file mode 100644 index 0000000000..bed015ca7f Binary files /dev/null and b/testing/btest/Traces/redis/set.trace differ diff --git a/testing/btest/Traces/redis/tls.trace b/testing/btest/Traces/redis/tls.trace new file mode 100644 index 0000000000..514df5958d Binary files /dev/null and b/testing/btest/Traces/redis/tls.trace differ diff --git a/testing/btest/scripts/base/protocols/redis/bulk.zeek b/testing/btest/scripts/base/protocols/redis/bulk.zeek new file mode 100644 index 0000000000..9df0ddc361 --- /dev/null +++ b/testing/btest/scripts/base/protocols/redis/bulk.zeek @@ -0,0 +1,13 @@ +# @TEST-DOC: Test Zeek parsing a trace file made with bulk-created SET commands +# +# @TEST-EXEC: zeek -Cr $TRACES/redis/bulk-loading.trace base/protocols/redis %INPUT >output +# @TEST-EXEC: btest-diff output + +# The bulk-loading functionality just sends the serialized form from some ruby +# code directly to the server, but it's useful to see if that trace might come +# up with something different. See: +# https://redis.io/docs/latest/develop/use/patterns/bulk-loading/ +event RESP::set_command(c: connection, is_orig: bool, command: RESP::SetCommand) + { + print fmt("SET: %s %s", command$key, command$value); + } diff --git a/testing/btest/scripts/base/protocols/redis/django-cloud.zeek b/testing/btest/scripts/base/protocols/redis/django-cloud.zeek new file mode 100644 index 0000000000..c9820662ed --- /dev/null +++ b/testing/btest/scripts/base/protocols/redis/django-cloud.zeek @@ -0,0 +1,15 @@ +# @TEST-DOC: Test Redis traffic from a django app using Redis (in the cloud) as a cache +# +# @TEST-EXEC: zeek -Cr $TRACES/redis/django-cloud.trace base/protocols/redis %INPUT >output +# @TEST-EXEC: btest-diff output +# @TEST-EXEC: btest-diff resp.log + +redef RESP::ports += { + 10625/tcp, +}; + +event RESP::set_command(c: connection, is_orig: bool, command: RESP::SetCommand) + { + # Print the whole command because these have extra data that's worth capturing. + print fmt("SET: %s %s expires in %d milliseconds", command$key, command$value, command$px); + } diff --git a/testing/btest/scripts/base/protocols/redis/django.zeek b/testing/btest/scripts/base/protocols/redis/django.zeek new file mode 100644 index 0000000000..b0aa10b055 --- /dev/null +++ b/testing/btest/scripts/base/protocols/redis/django.zeek @@ -0,0 +1,11 @@ +# @TEST-DOC: Test Redis traffic from a django app using Redis as a cache +# +# @TEST-EXEC: zeek -Cr $TRACES/redis/django-cache.trace base/protocols/redis %INPUT >output +# @TEST-EXEC: btest-diff output +# @TEST-EXEC: btest-diff resp.log + +event RESP::set_command(c: connection, is_orig: bool, command: RESP::SetCommand) + { + # Print the whole command because these have extra data that's worth capturing. + print fmt("SET: %s %s expires in %d milliseconds", command$key, command$value, command$px); + } diff --git a/testing/btest/scripts/base/protocols/redis/pipelined-with-commands.zeek b/testing/btest/scripts/base/protocols/redis/pipelined-with-commands.zeek new file mode 100644 index 0000000000..c34d195b49 --- /dev/null +++ b/testing/btest/scripts/base/protocols/redis/pipelined-with-commands.zeek @@ -0,0 +1,18 @@ +# @TEST-DOC: Test Zeek parsing "pipelined" data responses +# +# @TEST-EXEC: zeek -Cr $TRACES/redis/pipeline-with-commands.trace base/protocols/redis %INPUT >output +# @TEST-EXEC: btest-diff output +# @TEST-EXEC: btest-diff resp.log + +# Sometimes commands aren't serialized, like when pipelining. This still works! So we +# should handle this. This particular example has a few commands, amongst them a SET and +# a GET. +event RESP::set_command(c: connection, is_orig: bool, command: RESP::SetCommand) + { + print fmt("SET: %s %s", command$key, command$value); + } + +event RESP::get_command(c: connection, is_orig: bool, command: RESP::GetCommand) + { + print fmt("GET: %s", command); + } diff --git a/testing/btest/scripts/base/protocols/redis/pipelined.zeek b/testing/btest/scripts/base/protocols/redis/pipelined.zeek new file mode 100644 index 0000000000..c6b113c95d --- /dev/null +++ b/testing/btest/scripts/base/protocols/redis/pipelined.zeek @@ -0,0 +1,12 @@ +# @TEST-DOC: Test Zeek parsing "pipelined" data responses +# +# @TEST-EXEC: zeek -Cr $TRACES/redis/pipelining-example.trace base/protocols/redis %INPUT >output +# @TEST-EXEC: btest-diff output +# @TEST-EXEC: btest-diff resp.log + +# Testing the example of "pipelining" in REDIS docs: +# https://redis.io/docs/latest/develop/use/pipelining/ +# Namely sending three PINGs. This does not get sent as RESP data, but we should +# be able to skip it and get the responses, which are properly encoded. +# +# Also, you can send serialized data this way - that's kinda what the bulk test does. diff --git a/testing/btest/scripts/base/protocols/redis/pubsub.zeek b/testing/btest/scripts/base/protocols/redis/pubsub.zeek new file mode 100644 index 0000000000..febd515135 --- /dev/null +++ b/testing/btest/scripts/base/protocols/redis/pubsub.zeek @@ -0,0 +1,9 @@ +# @TEST-DOC: Test Zeek parsing pubsub commands +# +# @TEST-EXEC: zeek -Cr $TRACES/redis/pubsub.trace base/protocols/redis %INPUT >output +# @TEST-EXEC: btest-diff output +# @TEST-EXEC: btest-diff resp.log + +# Testing the example of pub sub in REDIS docs: +# https://redis.io/docs/latest/develop/interact/pubsub/ +# These are just commands between two different clients, one PUBLISH and one SUBSCRIBE. diff --git a/testing/btest/scripts/base/protocols/redis/set.zeek b/testing/btest/scripts/base/protocols/redis/set.zeek new file mode 100644 index 0000000000..2718386839 --- /dev/null +++ b/testing/btest/scripts/base/protocols/redis/set.zeek @@ -0,0 +1,9 @@ +# @TEST-DOC: Test Zeek parsing SET commands +# +# @TEST-EXEC: zeek -Cr $TRACES/redis/set.trace base/protocols/redis %INPUT >output +# @TEST-EXEC: btest-diff output + +event RESP::set_command(c: connection, is_orig: bool, command: RESP::SetCommand) + { + print fmt("Key: %s Value: %s", command$key, command$value); + } diff --git a/testing/btest/scripts/base/protocols/redis/tls.zeek b/testing/btest/scripts/base/protocols/redis/tls.zeek new file mode 100644 index 0000000000..d9369aeae7 --- /dev/null +++ b/testing/btest/scripts/base/protocols/redis/tls.zeek @@ -0,0 +1,6 @@ +# @TEST-DOC: Test Zeek with RESP over TLS so it doesn't get gibberish +# +# @TEST-EXEC: zeek -Cr $TRACES/redis/tls.trace base/protocols/redis %INPUT >output +# @TEST-EXEC-FAIL: test -f resp.log + +# The logs should probably be empty since it's all encrypted diff --git a/testing/btest/scripts/base/protocols/redis/trace.zeek b/testing/btest/scripts/base/protocols/redis/trace.zeek index bc20102b6c..573ebb2a02 100644 --- a/testing/btest/scripts/base/protocols/redis/trace.zeek +++ b/testing/btest/scripts/base/protocols/redis/trace.zeek @@ -4,7 +4,12 @@ # @TEST-EXEC: btest-diff output # @TEST-EXEC: btest-diff resp.log -event RESP::data(c: connection, payload: RESP::RESPData) +event RESP::set_command(c: connection, is_orig: bool, command: RESP::SetCommand) { - print fmt("Testing RESP: %s", payload); + print fmt("SET: %s %s", command$key, command$value); + } + +event RESP::get_command(c: connection, is_orig: bool, command: RESP::GetCommand) + { + print fmt("GET: %s", command); }