index
int64
0
731k
package
stringlengths
2
98
name
stringlengths
1
76
docstring
stringlengths
0
281k
code
stringlengths
4
8.19k
signature
stringlengths
2
42.8k
embed_func_code
sequencelengths
768
768
0
websocket
WebSocket
null
class WebSocket(object): @classmethod def is_socket(self, environ): if 'upgrade' not in environ.get("HTTP_CONNECTION").lower(): return False if environ.get("HTTP_UPGRADE") != "WebSocket": return False if not environ.get("HTTP_ORIGIN"): return False return True def __init__(self, environ, socket, rfile): # QQQ should reply Bad Request when IOError is raised above # should only log the error message, traceback is not necessary self.origin = environ['HTTP_ORIGIN'] self.protocol = environ.get('HTTP_SEC_WEBSOCKET_PROTOCOL', 'unknown') self.path_info = environ['PATH_INFO'] self.host = environ['HTTP_HOST'] self.key1 = environ.get('HTTP_SEC_WEBSOCKET_KEY1') self.key2 = environ.get('HTTP_SEC_WEBSOCKET_KEY2') self.socket = socket self.rfile = rfile self.handshaked = False def __repr__(self): try: info = ' ' + self.socket._formatinfo() except Exception: info = '' return '<%s at %s%s>' % (type(self).__name__, hex(id(self)), info) def do_handshake(self): """This method is called automatically in the first send() or receive()""" assert not self.handshaked, 'Already did handshake' if self.key1 is not None: # version 76 if not self.key1: message = "Missing HTTP_SEC_WEBSOCKET_KEY1 header in the request" self._reply_400(message) raise IOError(message) if not self.key2: message = "Missing HTTP_SEC_WEBSOCKET_KEY2 header in the request" self._reply_400(message) raise IOError(message) headers = [ ("Upgrade", "WebSocket"), ("Connection", "Upgrade"), ("Sec-WebSocket-Origin", self.origin), ("Sec-WebSocket-Protocol", self.protocol), ("Sec-WebSocket-Location", "ws://" + self.host + self.path_info), ] self._send_reply("101 Web Socket Protocol Handshake", headers) challenge = self._get_challenge() self.socket.sendall(challenge) else: # version 75 headers = [ ("Upgrade", "WebSocket"), ("Connection", "Upgrade"), ("WebSocket-Origin", self.websocket.origin), ("WebSocket-Protocol", self.websocket.protocol), ("WebSocket-Location", "ws://" + self.host + self.path_info), ] self._send_reply("101 Web Socket Protocol Handshake", headers) self.handshaked = True def _send_reply(self, status, headers, message=None): self.status = status self.headers_sent = True towrite = ['HTTP/1.1 %s\r\n' % self.status] for header in headers: towrite.append("%s: %s\r\n" % header) towrite.append("\r\n") if message: towrite.append(message) self.socket.sendall(''.join(towrite)) def _reply_400(self, message): self._send_reply('400 Bad Request', [('Content-Length', str(len(message))), ('Content-Type', 'text/plain')], message) self.socket = None self.rfile = None def _get_key_value(self, key_value): key_number = int(re.sub("\\D", "", key_value)) spaces = re.subn(" ", "", key_value)[1] if key_number % spaces != 0: self._reply_400('Invalid key') raise IOError("key_number %r is not an intergral multiple of spaces %r" % (key_number, spaces)) return key_number / spaces def _get_challenge(self): part1 = self._get_key_value(self.key1) part2 = self._get_key_value(self.key2) # This request should have 8 bytes of data in the body key3 = self.rfile.read(8) challenge = "" challenge += struct.pack("!I", part1) challenge += struct.pack("!I", part2) challenge += key3 return md5(challenge).digest() def send(self, message): if not self.handshaked: self.do_handshake() if isinstance(message, str): pass elif isinstance(message, unicode): message = message.encode('utf-8') else: raise TypeError("Expected string or unicode: %r" % (message, )) self.socket.sendall("\x00" + message + "\xFF") def close(self): # XXX implement graceful close with 0xFF frame if self.socket is not None: try: self.socket.close() except Exception: pass self.socket = None self.rfile = None def _message_length(self): # TODO: buildin security agains lengths greater than 2**31 or 2**32 length = 0 while True: byte_str = self.rfile.read(1) if not byte_str: return 0 else: byte = ord(byte_str) if byte != 0x00: length = length * 128 + (byte & 0x7f) if (byte & 0x80) != 0x80: break return length def _read_until(self): bytes = [] while True: byte = self.rfile.read(1) if ord(byte) != 0xff: bytes.append(byte) else: break return ''.join(bytes) def receive(self): if not self.handshaked: self.do_handshake() while self.socket is not None: frame_str = self.rfile.read(1) if not frame_str: self.close() break else: frame_type = ord(frame_str) if (frame_type & 0x80) == 0x00: # most significant byte is not set if frame_type == 0x00: bytes = self._read_until() return bytes.decode("utf-8") else: self.close() elif (frame_type & 0x80) == 0x80: # most significant byte is set # Read binary data (forward-compatibility) if frame_type != 0xff: self.close() break else: length = self._message_length() if length == 0: self.close() break else: self.rfile.read(length) # discard the bytes else: raise IOError("Received invalid message") def getsockname(self): return self.socket.getsockname() def getpeername(self): return self.socket.getpeername()
(environ, socket, rfile)
[ -0.011135046370327473, -0.039216987788677216, -0.11918970197439194, 0.02561788447201252, -0.013432754203677177, -0.03643062710762024, -0.034663159400224686, 0.05181799456477165, -0.037116821855306625, -0.04019429534673691, 0.01584482751786709, 0.04815829545259476, 0.008078367449343204, 0.039175402373075485, -0.01718602329492569, -0.0006777459057047963, 0.07930731773376465, -0.029277581721544266, -0.016894912347197533, -0.06026025116443634, -0.020970484241843224, 0.014846728183329105, 0.02177104353904724, 0.015564112924039364, -0.021095246076583862, 0.02834186516702175, -0.044249072670936584, 0.010547623038291931, 0.05210910737514496, -0.02597137913107872, -0.04237763583660126, -0.031772829592227936, 0.02676154114305973, 0.006248518358916044, -0.031294576823711395, -0.05601833015680313, -0.016894912347197533, -0.096150241792202, -0.017518723383545876, 0.005375181324779987, -0.0007251815986819565, 0.02082492783665657, 0.012715370394289494, -0.035889990627765656, 0.0019961989019066095, 0.05626785382628441, -0.06308820098638535, 0.12160177528858185, 0.005879429168999195, 0.02917361445724964, -0.023413749411702156, 0.04894845932722092, -0.01118703093379736, -0.00944555550813675, 0.04006953164935112, 0.02447422966361046, -0.03726237639784813, -0.008078367449343204, -0.033561091870069504, -0.01951492205262184, -0.008379876613616943, 0.0125490203499794, 0.005286807660013437, 0.034746333956718445, -0.05680849030613899, -0.03726237639784813, -0.000813554972410202, -0.01543935015797615, 0.02042984776198864, -0.005900222808122635, 0.017134040594100952, 0.05951167643070221, -0.007480547297745943, 0.01460760086774826, -0.0072518158704042435, 0.027967577800154686, -0.03701285272836685, 0.03345712274312973, -0.024931691586971283, 0.04957227036356926, 0.05040401965379715, -0.007568920496851206, 0.04054778814315796, -0.012413861230015755, 0.042460810393095016, 0.010719171725213528, 0.03428887203335762, 0.012185130268335342, -0.023725654929876328, -0.03241743519902229, -0.06662313640117645, 0.029547901824116707, -0.020772943273186684, 0.007054275367408991, 0.04383319988846779, -0.062256451696157455, -0.03576522693037987, -0.007153045851737261, -0.0353909395635128, -0.03973683342337608, -0.05917897820472717, 0.08725052326917648, -0.08608607202768326, -0.0066124084405601025, 0.019941193982958794, -0.012975292280316353, -0.040402233600616455, 0.0007687184843234718, -0.03709602728486061, -0.01169647742062807, 0.01651022769510746, -0.054146893322467804, 0.0059730010107159615, 0.03576522693037987, -0.015855224803090096, -0.00209366949275136, -0.01903666742146015, 0.014347678981721401, 0.03532855957746506, -0.015647288411855698, 0.01896388828754425, 0.0010845233919098973, 0.010152542032301426, -0.015252206474542618, 0.00906606949865818, 0.055727217346429825, 0.023330572992563248, -0.023226605728268623, 0.0451224111020565, -0.018475236371159554, -0.005733873229473829, 0.04928115755319595, 0.030546000227332115, 0.07082346826791763, -0.030234094709157944, 0.0006205631070770323, -0.04098445549607277, 0.020013973116874695, 0.03690888360142708, -0.009076466783881187, 0.05764023959636688, -0.02505645342171192, 0.0422944612801075, 0.003376383101567626, -0.0589294508099556, 0.019587701186537743, -0.018028169870376587, -0.0513189435005188, -0.030546000227332115, -0.019702065736055374, 0.010646393522620201, 0.013120848685503006, -0.03534935414791107, -0.020128337666392326, 0.07044918090105057, 0.010391670279204845, -0.037636663764715195, -0.018558410927653313, -0.046577971428632736, -0.0006147148669697344, -0.047492895275354385, -0.042024143040180206, 0.024848517030477524, -0.05144370719790459, 0.014597203582525253, 0.0012339783133938909, 0.00014945499424356967, -0.04849099740386009, 0.028321070596575737, 0.06579138338565826, -0.03944572061300278, 0.06720536202192307, -0.03944572061300278, 0.0035375345032662153, 0.06741330027580261, 0.031107431277632713, -0.04607892408967018, -0.04691067337989807, -0.027343764901161194, -0.018506426364183426, -0.0013411961263045669, -0.05514499172568321, -0.008759361691772938, -0.013962994329631329, 0.013120848685503006, 0.07731111347675323, 0.03713761642575264, 0.022519618272781372, 0.08400669693946838, -0.009050474502146244, -0.06928473711013794, -0.0366593599319458, 0.03135695680975914, 0.03695047274231911, 0.029797425493597984, 0.03266696259379387, 0.05506181716918945, 0.00419773580506444, 0.056600552052259445, 0.0018350473837926984, -0.031128225848078728, 0.033311568200588226, -0.013630295172333717, -0.03730396553874016, -0.06508439779281616, -0.01821531355381012, 0.001228130073286593, -0.012445052154362202, -0.010412463918328285, 0.0267199520021677, 0.0072518158704042435, -0.02264438010752201, 0.03686729818582535, 0.007173839490860701, 0.05855516344308853, -0.03329077363014221, -0.042190492153167725, -0.017789041623473167, -0.0004256218089722097, 0.005785857327282429, 0.06990854442119598, 0.02877853251993656, -0.07618825137615204, -0.007257014513015747, -0.015127443708479404, 0.012715370394289494, -0.01276735495775938, -0.026636777445673943, -0.059927552938461304, 0.04462336003780365, 0.05210910737514496, 0.011592508293688297, 0.052358631044626236, 0.059927552938461304, -0.023372160270810127, 0.0025238399393856525, -0.031128225848078728, 0.047492895275354385, 0.036721739917993546, -0.020221909508109093, -0.044332247227430344, -0.030753938481211662, 0.040610168129205704, -0.008021184243261814, 0.009793850593268871, -0.015013078227639198, 0.06620725989341736, 0.026636777445673943, 0.016177527606487274, 0.025472328066825867, -0.04782559722661972, 0.009097260423004627, -0.0657082125544548, -0.03682570904493332, -0.01469077542424202, -0.04179541394114494, -0.00918563362210989, 0.0027005865704268217, 0.014181328937411308, 0.0075325313955545425, -0.013983788900077343, 0.0012521728640422225, -0.03613951429724693, 0.03724158555269241, 0.008998489938676357, -0.011790049262344837, -0.012621798552572727, 0.01786182075738907, -0.010027780197560787, -0.01009535975754261, 0.07959842681884766, -0.023351367563009262, -0.04595416039228439, 0.04607892408967018, -0.021958187222480774, -0.03896746411919594, 0.024287085980176926, -0.009903017431497574, 0.013131245039403439, -0.05119418352842331, 0.001801257487386465, 0.027031859382987022, 0.04291827604174614, 0.01741475611925125, -0.023372160270810127, 0.040007151663303375, -0.03634745255112648, -0.06608249992132187, 0.023975178599357605, -0.005531134083867073, -0.019650081172585487, -0.025077247992157936, -0.008738568052649498, -0.017321184277534485, 0.028050752356648445, 0.02308104932308197, -0.030982669442892075, 0.00039833004120737314, 0.06616567075252533, -0.03491268679499626, -0.0292567890137434, 0.050819896161556244, 0.0359523706138134, -0.00040482808253727853, -0.017321184277534485, -0.05855516344308853, -0.000992900924757123, -0.022124536335468292, 0.009929009713232517, -0.014108550734817982, -0.014295694418251514, -0.002159949392080307, 0.024370260536670685, -0.009617103263735771, 0.07718635350465775, 0.020876912400126457, 0.03697126358747482, 0.033124424517154694, 0.020055560395121574, 0.08396511524915695, 0.02078334055840969, -0.014129344373941422, 0.01280894223600626, 0.04637003317475319, 0.040797311812639236, -0.016458243131637573, 0.02692789025604725, -0.062422800809144974, 0.004338093567639589, -0.037636663764715195, -0.06221486255526543, 0.03769904747605324, -0.03310362994670868, -0.04113001376390457, -0.0014919507084414363, 0.0038234484381973743, -0.008956902660429478, 0.01852722093462944, 0.013484738767147064, -0.04437383636832237, 0.031377751380205154, -0.02854980155825615, 0.05514499172568321, -0.00024367660807911307, 0.013869423419237137, -0.0563926175236702, -0.03245902433991432, 0.030150920152664185, -0.012330686673521996, -0.015948796644806862, 0.0022951087448745966, -0.06213168799877167, 0.0327085480093956, 0.04682749882340431, 0.0006442809826694429, -0.01550173107534647, -0.04728496074676514, -0.008520234376192093, 0.030546000227332115, 0.020440243184566498, 0.04853258281946182, 0.06254756450653076, -0.03591078519821167, 0.010719171725213528, -0.09839596599340439, 0.0018766347784548998, 0.03314521908760071, -0.011873223818838596, -0.015262603759765625, 0.018859919160604477, -0.01749793067574501, -0.016499830409884453, -0.029111232608556747, -0.017612295225262642, -0.019182223826646805, -0.02082492783665657, 0.025285184383392334, 0.007969199679791927, -0.006238121073693037, -0.05680849030613899, 0.028529008850455284, 0.03418490290641785, -0.008660592138767242, -0.013734263367950916, 0.0023379959166049957, -0.038551587611436844, -0.009190832264721394, 0.003943012561649084, -0.017134040594100952, 0.037116821855306625, -0.007579317316412926, 0.02118881791830063, 0.05547769367694855, -0.015564112924039364, -0.04886528477072716, 0.0327085480093956, 0.016063163056969643, 0.06100882589817047, 0.011706874705851078, -0.04961385950446129, 0.010022581554949284, -0.02549312263727188, -0.040485408157110214, 0.04703543335199356, 0.0033321965020149946, 0.043500497937202454, 0.06566662341356277, 0.0315856859087944, 0.003420569933950901, -0.002970905276015401, -0.027780434116721153, 0.009133649058640003, -0.04899004474282265, 0.02505645342171192, -0.026387253776192665, -0.014794744551181793, -0.023767242208123207, -0.009695080108940601, 0.0506119579076767, 0.07527332752943039, -0.03160648047924042, -0.02613772824406624, 0.0352453850209713, 0.05310720577836037, -0.0686609223484993, 0.03275013715028763, -0.04345891252160072, 0.0040937671437859535, -0.048199884593486786, 0.02755170315504074, 0.026241697371006012, 0.0009708076249808073, -0.00882694125175476, -0.03004695102572441, -0.007839239202439785, 0.0016375068807974458, -0.030733143910765648, 0.019296588376164436, 0.03418490290641785, 0.003207433968782425, 0.004148350562900305, -0.002833146834746003, -0.002843543654307723, 0.022519618272781372, 0.05352308228611946, -0.0308787003159523, -0.02834186516702175, 0.010272106155753136, -0.019764447584748268, 0.020481832325458527, -0.054022129625082016, -0.006539630237966776, -0.047534484416246414, -0.01765388250350952, -0.04320938512682915, 0.025035660713911057, 0.038551587611436844, 0.06433582305908203, -0.02605455368757248, -0.0689520314335823, 0.062422800809144974, 0.050819896161556244, 0.03243822976946831, 0.010188931599259377, -0.0617574006319046, 0.031856004148721695, 0.020013973116874695, -0.02794678322970867, 0.004015790764242411, 0.008348685689270496, 0.003735075006261468, 0.040797311812639236, -0.04192017391324043, 0.009908216074109077, 0.033415537327528, -0.014992284588515759, 0.02859138883650303, 0.000023981840058695525, -0.04936433210968971, -0.07082346826791763, -0.03988238796591759, -0.04437383636832237, 0.01118703093379736, -0.03613951429724693, 0.008426662534475327, -0.08700099587440491, 0.02181263081729412, -0.07011648267507553, 0.010209725238382816, -0.015855224803090096, -0.009336387738585472, 0.024245498701930046, -0.006378478836268187, 0.004844940733164549, 0.0422944612801075, 0.014222916215658188, -0.0292567890137434, -0.008795751258730888, -0.03195997327566147, -0.06408629566431046, -0.020565006881952286, -0.05190116912126541, -0.02054421231150627, 0.030400443822145462, 0.008182335644960403, 0.017238007858395576, -0.02921520173549652, 0.018558410927653313, 0.04399954900145531, -0.016759753227233887, -0.022145330905914307, 0.0014789545675739646, 0.03607713431119919, -0.028009165078401566, -0.013692676089704037, 0.018340077251195908, -0.009908216074109077, 0.050861481577157974, -0.045787811279296875, -0.018943095579743385, 0.02969345636665821, 0.018121741712093353, 0.05859675258398056, 0.01631268672645092, -0.01924460381269455, 0.02505645342171192, -0.008644996210932732, -0.03653459623456001, 0.023226605728268623, 0.0008434460032731295, 0.0026018163189291954, 0.06770440936088562, 0.01690530776977539, 0.0035167408641427755, 0.02150072529911995, 0.016135940328240395, -0.005661095026880503, -0.03281251713633537, -0.10097438842058182, -0.05194275826215744, 0.01096869632601738, 0.06329613924026489, -0.046536386013031006, -0.1008080393075943, -0.0769784152507782, -0.014274900779128075, 0.008078367449343204, 0.00025293632643297315, -0.030733143910765648, -0.09373816847801208, -0.020575404167175293, 0.054105304181575775, 0.035016655921936035, -0.03607713431119919, -0.02189580537378788, -0.06870251148939133, 0.0501960813999176, -0.025472328066825867, 0.0072518158704042435, 0.0032958074007183313, -0.0071842363104224205, -0.018995080143213272, -0.053148794919252396, -0.02719820849597454, -0.0036700947675853968, 0.0372207909822464, 0.012434654869139194, 0.028674563392996788, -0.03817730396986008, 0.0023224004544317722, -0.019847622141242027, 0.09972676634788513, 0.047409720718860626, -0.008572218008339405, 0.00744415819644928, -0.034268081188201904, -0.018901508301496506, 0.03940413147211075, 0.03840603306889534, -0.003911822102963924, 0.06462693959474564, 0.006066572852432728, -0.0030644771177321672, -0.05032084509730339, 0.00466299569234252, 0.04287668690085411, 0.046536386013031006, 0.04391637444496155, 0.0015374369686469436, -0.012912911362946033, -0.04541352391242981, -0.07598032057285309, 0.02443264238536358, -0.06733012199401855, 0.03607713431119919, 0.052524980157613754, 0.016499830409884453, 0.011228618212044239, 0.029090438038110733, 0.049904968589544296, -0.007735270541161299, 0.008400670252740383, 0.04732654616236687, -0.05111100524663925, 0.020876912400126457, 0.017435548827052116, -0.05057036876678467, 0.11328428238630295, 0.020637784153223038, -0.015751255676150322, -0.008307098411023617, 0.02197897993028164, -0.0035323360934853554, -0.017404358834028244, -0.016759753227233887, 0.035806816071271896, -0.0462452732026577, 0.03638904169201851, 0.006295304279774427, 0.026470428332686424, 0.036201898008584976, -0.03156489506363869, -0.06508439779281616, 0.015293793752789497, -0.05630944296717644, 0.045746222138404846, 0.015085856430232525, 0.00906606949865818, -0.07560603320598602, -0.0201595276594162, 0.01690530776977539, -0.0018779344391077757, 0.03801095113158226, -0.003963806200772524, 0.039612069725990295, 0.009980994276702404, 0.005577920004725456, -0.00025407347129657865, -0.02692789025604725, 0.06375359743833542, 0.0711977556347847, -0.014555616304278374, 0.007537730038166046, -0.06504280865192413, -0.06333772838115692, 0.0679539367556572, 0.08230161666870117, -0.029277581721544266, 0.023330572992563248, -0.027780434116721153, 0.005697484128177166, 0.01364069152623415, 0.01951492205262184, 0.0180489644408226, 0.011488540098071098, 0.007153045851737261, -0.0045590270310640335, -0.02649122104048729, 0.03148172050714493, 0.0062745101749897, 0.028362657874822617, 0.005214029923081398, 0.07668730616569519, -0.004714979790151119, -0.01256981398910284, 0.044249072670936584, 0.03809412568807602, -0.026907095685601234, 0.044956061989068985, -0.010433257557451725, 0.03487109765410423, 0.02557629719376564, -0.0186103954911232, 0.03127378225326538, -0.010183732956647873, 0.03857238218188286, 0.0021963384933769703, -0.052358631044626236, -0.019296588376164436, -0.01745634339749813, 0.025243597105145454, 0.05506181716918945, -0.048199884593486786, -0.046661145985126495, 0.049031633883714676, 0.009658691473305225, 0.07061553001403809, 0.01035528164356947, -0.031232193112373352, -0.10380233824253082, 0.0028071545530110598, -0.010552821680903435, -0.006326494738459587, 0.026304077357053757, -0.06770440936088562, -0.03616030886769295, -0.0045018442906439304, -0.012517830356955528, -0.027343764901161194, -0.039258576929569244, -0.009835437871515751, -0.006576019339263439, 0.010729569010436535, 0.02854980155825615, 0.013193626888096333, 0.01876634731888771, -0.0292567890137434, -0.026158520951867104, 0.025368358939886093, 0.004613610450178385, -0.022041361778974533, -0.015928002074360847, 0.027260590344667435, -0.033997759222984314, -0.03447601571679115, 0.024806929752230644, -0.03092028759419918, 0.022166123613715172, 0.00819793064147234, 0.0188911110162735, -0.0384892076253891, 0.0049073221161961555, 0.025555502623319626, 0.001458160812035203, 0.015855224803090096, -0.044082723557949066, 0.00420813262462616, 0.01385902613401413, -0.03156489506363869, -0.002739574993029237, 0.010781552642583847, 0.014035772532224655, -0.02863297611474991, 0.09623342007398605, -0.005915818270295858, -0.05256656929850578, 0.02478613518178463, -0.0183296799659729, 0.021999774500727654, 0.07086505740880966, 0.00920642726123333, -0.02177104353904724, -0.04923957213759422, -0.02019071951508522, 0.0035375345032662153, 0.005190636962652206, 0.00038630864582955837, 0.029797425493597984, 0.017404358834028244, 0.039133813232183456, 0.018225710839033127, -0.06599932163953781, -0.034226492047309875, -0.024536609649658203, -0.04686908423900604, 0.009840636514127254, -0.1008080393075943, 0.024099942296743393, 0.012382670305669308, 0.010422861203551292, 0.0016608998412266374, 0.028404245153069496, 0.034143317490816116, 0.03902984410524368, -0.02407914772629738, 0.04291827604174614, 0.012652989476919174, 0.048075120896101 ]
1
websocket
__init__
null
def __init__(self, environ, socket, rfile): # QQQ should reply Bad Request when IOError is raised above # should only log the error message, traceback is not necessary self.origin = environ['HTTP_ORIGIN'] self.protocol = environ.get('HTTP_SEC_WEBSOCKET_PROTOCOL', 'unknown') self.path_info = environ['PATH_INFO'] self.host = environ['HTTP_HOST'] self.key1 = environ.get('HTTP_SEC_WEBSOCKET_KEY1') self.key2 = environ.get('HTTP_SEC_WEBSOCKET_KEY2') self.socket = socket self.rfile = rfile self.handshaked = False
(self, environ, socket, rfile)
[ -0.04108428582549095, -0.035939496010541916, -0.10785550624132156, 0.00980841089040041, -0.02004246972501278, -0.019283706322312355, -0.020967790856957436, 0.0590355284512043, -0.05041152983903885, 0.008832195773720741, 0.04315700754523277, 0.08831270784139633, 0.015961799770593643, 0.03381125628948212, -0.014462779276072979, -0.001485141459852457, 0.042897917330265045, -0.004682128317654133, -0.0324602872133255, -0.06121928617358208, -0.05736994743347168, 0.003240939462557435, 0.014083397574722767, 0.04448946937918663, -0.010428376495838165, 0.05633359029889107, -0.0543719083070755, 0.013407912105321884, 0.04596998542547226, -0.02931419387459755, -0.04741348698735237, -0.015397354029119015, 0.017636632546782494, 0.042046621441841125, 0.016331929713487625, -0.03138691559433937, -0.015619431622326374, -0.05988682433962822, -0.09253217279911041, -0.018895070999860764, -0.020542142912745476, -0.012704667635262012, -0.016563259065151215, -0.02572394534945488, 0.046895306557416916, 0.05485307425260544, 0.01086327712982893, 0.08253870159387589, -0.009119045920670033, -0.026723291724920273, -0.0551861897110939, 0.11214900016784668, 0.010585680603981018, -0.022614864632487297, 0.011205646209418774, 0.049042053520679474, 0.0027227592654526234, 0.04833880811929703, -0.056185536086559296, 0.00643098633736372, -0.07979974895715714, 0.042083632200956345, 0.03231223672628403, 0.02783367782831192, -0.02294798009097576, -0.03564339503645897, -0.04600699618458748, 0.0027343258261680603, 0.0014735748991370201, 0.006204282399266958, 0.0484868586063385, 0.03904857859015465, -0.056814756244421005, -0.010095260106027126, 0.056629691272974014, -0.01400011871010065, -0.08009584993124008, 0.04360116273164749, -0.05248425155878067, 0.04400830343365669, 0.050929710268974304, 0.015934040769934654, -0.021226881071925163, -0.013972358778119087, 0.027759652584791183, -0.034903135150671005, -0.012630642391741276, -0.045821934938430786, -0.016803843900561333, 0.03305249288678169, -0.06732641160488129, 0.041232336312532425, -0.06640108674764633, -0.024817129597067833, 0.057480987161397934, -0.024335961788892746, -0.013694762252271175, -0.005431638564914465, 0.023854795843362808, -0.04200960695743561, -0.05126282572746277, 0.05418684333562851, -0.11081653088331223, -0.034255411475896835, 0.02676030620932579, -0.017007414251565933, 0.019283706322312355, -0.04049208015203476, -0.01877477765083313, -0.017618127167224884, 0.03223821148276329, 0.028796013444662094, -0.004078355617821217, 0.10200747102499008, -0.05041152983903885, 0.0019003795459866524, -0.001061228453181684, -0.0011138560948893428, 0.05359463766217232, -0.0409732460975647, -0.019228186458349228, 0.03290444239974022, -0.022614864632487297, 0.04252778738737106, 0.023688236251473427, 0.04526674002408981, 0.018460169434547424, -0.02616809867322445, -0.01791423000395298, -0.005797140765935183, 0.007134230807423592, 0.001533720875158906, 0.02407687157392502, 0.005528797395527363, -0.037012871354818344, -0.007661664392799139, -0.017618127167224884, 0.007434960454702377, -0.032182689756155014, 0.02868497371673584, 0.022207722067832947, 0.012889732606709003, 0.004446171224117279, -0.007300788536667824, -0.040344029664993286, 0.054260868579149246, -0.02400284633040428, -0.059775784611701965, 0.018034521490335464, -0.003978883381932974, 0.02742653712630272, 0.01370401494204998, -0.01773841865360737, 0.010918796993792057, -0.0018564268248155713, -0.006296814419329166, -0.014120410196483135, -0.04149142652750015, 0.003261759178712964, 0.007712556980550289, -0.0497082844376564, -0.050707630813121796, 0.02533531002700329, -0.053890738636255264, -0.022411292418837547, -0.013852066360414028, 0.008910848759114742, -0.0395667590200901, 0.0014770448906347156, 0.03632813319563866, -0.025575892999768257, 0.013352393172681332, -0.05000438913702965, 0.005339106544852257, 0.04759855195879936, 0.02718595415353775, -0.02805575542151928, 0.0003857435076497495, -0.04519271478056908, -0.02365122362971306, 0.028351858258247375, -0.059738773852586746, -0.0042055873200297356, 0.006565157789736986, 0.028759000822901726, 0.037012871354818344, 0.004342072177678347, 0.025372322648763657, 0.07028744369745255, 0.05918357893824577, -0.010715225711464882, -0.01360222976654768, 0.008684144355356693, -0.0122235007584095, 0.026908356696367264, 0.013491190969944, 0.050929710268974304, -0.02466907911002636, 0.05959072336554527, 0.041417401283979416, -0.03771611675620079, 0.053890738636255264, -0.034255411475896835, -0.018848804756999016, -0.024539534002542496, 0.03207165375351906, -0.0060423510149121284, 0.0007240643026307225, -0.00034410401713103056, 0.057221896946430206, -0.011557268910109997, -0.041010260581970215, -0.006366213783621788, -0.0019084761152043939, 0.05059659481048584, 0.005445518530905247, -0.0590355284512043, -0.002181445946916938, 0.01582300290465355, 0.008115071803331375, 0.10541265457868576, 0.006546651478856802, -0.00866101123392582, -0.03538430482149124, -0.024743104353547096, 0.015193783678114414, 0.0024937421549111605, -0.04682128131389618, -0.10215552151203156, 0.040788184851408005, 0.025242777541279793, 0.010557921603322029, 0.07706079632043839, 0.018932083621621132, 0.014823654666543007, 0.01371326856315136, -0.011233406141400337, 0.05696280673146248, -0.017590366303920746, -0.046266086399555206, -0.02317005768418312, -0.012945251539349556, 0.03149795159697533, -0.01434248685836792, 0.02785218507051468, -0.011039088480174541, 0.029647309333086014, 0.058517348021268845, -0.012288273312151432, -0.024761609733104706, -0.012232753448188305, 0.03558787330985069, -0.09364256262779236, -0.04360116273164749, 0.005080016329884529, -0.012269767001271248, 0.02531680278480053, 0.0035948751028627157, -0.004189394414424896, 0.009239337407052517, -0.01012302003800869, -0.00046641999506391585, 0.007869862020015717, 0.047561537474393845, -0.030406072735786438, -0.017886469140648842, 0.0034838365390896797, 0.0026140338741242886, 0.0020229846704751253, 0.019283706322312355, 0.07905948907136917, 0.003328845137730241, 0.003567115403711796, 0.0387524738907814, -0.05207710713148117, -0.06521667540073395, -0.012898985296487808, -0.028610948473215103, 0.00712035084143281, -0.05648164078593254, 0.01350044459104538, 0.027111927047371864, 0.04996737465262413, 0.05755501240491867, -0.027315499261021614, -0.021985644474625587, -0.010854024440050125, 0.025890503078699112, -0.007587638683617115, -0.030535617843270302, -0.03886351361870766, 0.034440476447343826, -0.020930778235197067, -0.013667002320289612, 0.04004792496562004, -0.004712201189249754, -0.04175051674246788, 0.06403226405382156, 0.0659199208021164, -0.000450516032287851, -0.01732202246785164, 0.003379737725481391, -0.027667120099067688, 0.020819740369915962, 0.007522866129875183, -0.023244082927703857, -0.0037244202103465796, 0.03209015727043152, -0.01189963798969984, -0.003252506023272872, 0.03904857859015465, 0.015425113961100578, -0.00422409363090992, 0.03960376977920532, 0.03945571929216385, 0.08120623975992203, 0.0024035233072936535, 0.013352393172681332, -0.003085948061197996, 0.08394519239664078, -0.012316032312810421, -0.021171361207962036, 0.049893349409103394, 0.011936650611460209, 0.023521678522229195, 0.0025307550095021725, 0.022466812282800674, -0.03331158310174942, -0.03197912126779556, 0.012824960052967072, -0.04574790969491005, 0.053039442747831345, -0.04282389208674431, -0.04696933180093765, 0.010594934225082397, -0.04741348698735237, -0.020782725885510445, -0.0028199180960655212, -0.017349783331155777, -0.04759855195879936, 0.0028916303999722004, -0.04267583787441254, 0.021985644474625587, 0.025871995836496353, 0.02213369682431221, -0.06195954605937004, -0.03035055473446846, -0.022614864632487297, 0.0123252859339118, -0.061071235686540604, -0.02848140336573124, -0.028370365500450134, 0.016711311414837837, 0.03886351361870766, 0.03716092184185982, -0.01730351708829403, -0.051781006157398224, 0.0004788540245499462, 0.01982039213180542, 0.01285271905362606, 0.03608755022287369, 0.026242125779390335, -0.044415444135665894, 0.005399252288043499, -0.057258911430835724, -0.02764861471951008, 0.0391596183180809, -0.02676030620932579, -0.013907586224377155, 0.021800581365823746, -0.01370401494204998, -0.04552583023905754, -0.02361421100795269, -0.017571860924363136, 0.016341181471943855, -0.036365143954753876, 0.00663918349891901, -0.02298499271273613, 0.006782608572393656, -0.04130636528134346, -0.01877477765083313, 0.039492733776569366, 0.04430440440773964, -0.062070582062006, -0.06891796737909317, -0.022059671580791473, -0.008647131733596325, 0.03168301656842232, 0.04171350598335266, 0.06158941611647606, -0.000198655019630678, 0.00775882275775075, 0.023558691143989563, 0.01307479664683342, -0.04682128131389618, 0.0005476748337969184, 0.014286967925727367, 0.0223187617957592, 0.0002995729155372828, -0.003423690563067794, -0.004959724843502045, -0.0007188593153841794, -0.06047903001308441, 0.05137386545538902, 0.03414437174797058, 0.02552037499845028, 0.03059113770723343, 0.0430089570581913, 0.060627080500125885, -0.02217070944607258, 0.0003420798748265952, -0.0395667590200901, -0.06318096816539764, 0.011344444938004017, -0.02912912890315056, -0.00433050561696291, -0.0024659824557602406, -0.02529829740524292, 0.05422385409474373, 0.05688878148794174, -0.03301548212766647, -0.010992822237312794, 0.04012195020914078, 0.01705368049442768, -0.052373211830854416, 0.003039682051166892, -0.009771398268640041, -0.022244734689593315, 0.034699566662311554, -0.023299602791666985, -0.006454119458794594, 0.05414982885122299, -0.01263989508152008, -0.03059113770723343, 0.017414554953575134, 0.025131739675998688, -0.049671273678541183, 0.07350756227970123, 0.04730244725942612, 0.035291772335767746, -0.00959558691829443, -0.035772938281297684, 0.01919117383658886, 0.015230796299874783, 0.02975834719836712, 0.010271071456372738, -0.021967139095067978, 0.02468758448958397, 0.00433050561696291, -0.021356426179409027, -0.03138691559433937, -0.0015476006083190441, -0.06377317756414413, -0.04556284472346306, -0.02276291511952877, -0.03904857859015465, 0.009327243082225323, 0.03292294964194298, 0.00568610243499279, -0.03144243359565735, 0.028833026066422462, 0.03927065432071686, 0.052373211830854416, -0.07861533761024475, -0.04978230968117714, 0.07099068909883499, 0.05959072336554527, -0.03357067331671715, 0.03262684494256973, -0.026686279103159904, -0.017442315816879272, 0.07861533761024475, -0.041195325553417206, 0.0027667121030390263, 0.026889851316809654, 0.005732368212193251, -0.0022739781998097897, -0.014527551829814911, -0.013417165726423264, -0.026075568050146103, -0.051743991672992706, -0.03375573828816414, 0.051151785999536514, 0.007763449568301439, -0.03142392635345459, -0.08735037595033646, -0.009614093229174614, -0.06832575798034668, 0.07580235600471497, 0.019043121486902237, 0.01381505373865366, 0.06758549809455872, -0.04152844101190567, -0.05181801691651344, 0.0333671011030674, 0.03416287899017334, -0.03381125628948212, 0.05966474860906601, -0.010465389117598534, -0.028370365500450134, -0.026260631158947945, -0.0728413313627243, -0.005621329881250858, 0.01726650446653366, -0.0011346758110448718, -0.005880419630557299, -0.024391481652855873, 0.027296992018818855, 0.011251912452280521, -0.015573165379464626, 0.01626715622842312, 0.001135254162363708, -0.013768787495791912, -0.01959831453859806, -0.0053853727877140045, -0.009604839608073235, -0.04641414061188698, 0.05500112473964691, -0.0582212470471859, 0.011242659762501717, 0.06044201925396919, 0.04030701518058777, 0.08261273056268692, 0.01129817869514227, -0.029036596417427063, -0.05211412161588669, 0.012343792244791985, 0.0005089269834570587, 0.018672993406653404, 0.054519958794116974, 0.0018078474095091224, 0.0011184826726093888, -0.004427664447575808, 0.003368171164765954, 0.05414982885122299, 0.06047903001308441, -0.013232100754976273, -0.026279138401150703, -0.05796215683221817, -0.02972133457660675, 0.01509199757128954, 0.023854795843362808, -0.025131739675998688, -0.0813542902469635, -0.07994779944419861, -0.0665491446852684, 0.004411471541970968, 0.020745713263750076, -0.007980899885296822, -0.06462447345256805, 0.024761609733104706, -0.00695841945707798, 0.029203154146671295, -0.002177976071834564, -0.04844984784722328, -0.04282389208674431, 0.03797520697116852, -0.0667342022061348, -0.007721810135990381, 0.004423038102686405, -0.0014550684718415141, -0.005838780198246241, -0.027334004640579224, 0.02718595415353775, -0.026094073429703712, 0.012390058487653732, -0.003039682051166892, -0.01013227365911007, -0.040603119879961014, -0.0024081498850136995, 0.015748975798487663, 0.05736994743347168, 0.028629455715417862, 0.05925760418176651, -0.012787946499884129, -0.009826917201280594, 0.02446550689637661, 0.050485555082559586, 0.058110207319259644, 0.03035055473446846, 0.03242327272891998, 0.01791423000395298, -0.07602443546056747, -0.05041152983903885, -0.041454415768384933, -0.008795183151960373, 0.055149175226688385, 0.03242327272891998, -0.014194435440003872, -0.04237973690032959, 0.003245566040277481, -0.0695841982960701, -0.039751823991537094, -0.05422385409474373, 0.011214899830520153, -0.017747672274708748, 0.02002396248281002, -0.04286090284585953, 0.0012295212363824248, 0.02653822861611843, -0.01582300290465355, 0.02616809867322445, 0.01939474418759346, -0.05037451535463333, 0.000831632933113724, -0.00691215367987752, -0.06151539087295532, 0.0687699168920517, -0.015573165379464626, 0.0016898688627406955, 0.006255174987018108, 0.006245921831578016, -0.017340529710054398, 0.028610948473215103, -0.00765241077169776, 0.0362170934677124, -0.04030701518058777, 0.08416726440191269, 0.01065970677882433, 0.02126389369368553, 0.05122581124305725, -0.05814721807837486, -0.012306779623031616, 0.04611803591251373, -0.07028744369745255, 0.008004033006727695, 0.07743092626333237, -0.024965181946754456, -0.07361859828233719, 0.018238091841340065, 0.04411934316158295, 0.003923364449292421, 0.0181085467338562, -0.047376472502946854, -0.0017106885788962245, 0.02148597128689289, 0.012658401392400265, 0.010817011818289757, 0.024558039382100105, 0.06584589928388596, 0.06177448108792305, 0.017201730981469154, 0.020764220505952835, -0.044193368405103683, -0.029573284089565277, 0.019875911995768547, 0.029980424791574478, -0.024761609733104706, 0.01809004135429859, -0.04833880811929703, 0.014758882112801075, 0.0008073432254604995, 0.02848140336573124, 0.03960376977920532, -0.030831720679998398, 0.03623560070991516, -0.00852684024721384, -0.00813357811421156, 0.03247879445552826, 0.014675603248178959, 0.008475947193801403, 0.006505012046545744, 0.07698676735162735, -0.027130434289574623, 0.019672339782118797, 0.030054450035095215, 0.019357731565833092, -0.026908356696367264, -0.015221542678773403, 0.016757577657699585, 0.05400177836418152, 0.033607687801122665, -0.0012561243493109941, 0.051521915942430496, -0.019024616107344627, 0.013463431969285011, 0.0009501897729933262, -0.07069458067417145, -0.034903135150671005, -0.009415148757398129, 0.016109852120280266, 0.03201613202691078, -0.009179191663861275, -0.039307668805122375, 0.031127823516726494, 0.017349783331155777, 0.04530375450849533, 0.041676491498947144, -0.01118713989853859, -0.06158941611647606, -0.016535500064492226, 0.011279672384262085, -0.03736449405550957, 0.03370022028684616, -0.03601352125406265, -0.05400177836418152, -0.003444510279223323, -0.057666052132844925, 0.03207165375351906, 0.008189097978174686, 0.037605077028274536, 0.020542142912745476, -0.012417818419635296, 0.003092888044193387, -0.0011948216706514359, -0.009193072095513344, 0.007208256516605616, -0.00874429102987051, 0.029055103659629822, -0.011427723802626133, -0.0027158192824572325, -0.006782608572393656, 0.022929472848773003, -0.03231223672628403, -0.0007020878838375211, 0.03370022028684616, -0.009225457906723022, -0.006074737291783094, 0.009891689755022526, 0.004559522960335016, -0.027926210314035416, -0.03568040579557419, 0.00433050561696291, 0.003731359960511327, 0.0843893438577652, -0.05592644587159157, -0.0413803905248642, 0.0067964885383844376, -0.010206298902630806, -0.037012871354818344, -0.017451567575335503, -0.023725250735878944, -0.04537777975201607, 0.04134337604045868, -0.0013208967866376042, -0.06495758891105652, 0.02274440973997116, -0.007934634573757648, 0.045007649809122086, 0.08831270784139633, -0.0005589521606452763, -0.03627261146903038, -0.018238091841340065, -0.017599619925022125, 0.021541491150856018, -0.0011346758110448718, 0.003608754836022854, -0.006255174987018108, 0.012251259759068489, 0.05359463766217232, 0.023928821086883545, -0.03375573828816414, 0.024206416681408882, 0.005551930516958237, -0.03790117800235748, -0.049227118492126465, -0.07206405699253082, 0.031146330758929253, 0.008008659817278385, 0.012834212742745876, -0.030850227922201157, 0.01623939722776413, 0.014703363180160522, 0.026038553565740585, 0.01297301147133112, 0.0667342022061348, 0.043749213218688965, 0.01667429879307747 ]
2
websocket
__repr__
null
def __repr__(self): try: info = ' ' + self.socket._formatinfo() except Exception: info = '' return '<%s at %s%s>' % (type(self).__name__, hex(id(self)), info)
(self)
[ 0.024408552795648575, -0.017195727676153183, 0.03823239728808403, 0.006221614312380552, 0.046834684908390045, -0.07320795953273773, 0.012089225463569164, 0.0142220975831151, 0.014363698661327362, -0.048144496977329254, -0.02463865466415882, 0.02154112234711647, -0.026373272761702538, 0.007633204106241465, 0.012903433293104172, 0.05058712512254715, -0.03628537431359291, -0.08694329857826233, 0.009013818576931953, -0.01775328442454338, -0.00881026592105627, 0.024656355381011963, 0.023187240585684776, -0.04173703119158745, 0.026886578649282455, 0.056286584585905075, -0.03336484730243683, 0.0018496691482141614, 0.010991813614964485, -0.01565581187605858, -0.06262324750423431, -0.06931392103433609, 0.017682483419775963, -0.01620451733469963, 0.007774805650115013, 0.03134702518582344, -0.0651012733578682, -0.01050505880266428, -0.032090432941913605, -0.03525876626372337, 0.051861535757780075, -0.028320293873548508, -0.037205785512924194, -0.03833859786391258, -0.0003849789791274816, -0.001294325920753181, 0.06789790093898773, 0.0630834549665451, -0.03890500217676163, -0.05872920900583267, -0.02242613211274147, 0.06460566818714142, -0.028780497610569, 0.01717802882194519, -0.05444576218724251, -0.004889675881713629, 0.03265683725476265, 0.02198362722992897, -0.008394312113523483, 0.02240843139588833, -0.05387935787439346, 0.05405636131763458, 0.029187602922320366, -0.008553613908588886, -0.01548766065388918, -0.05094112828373909, -0.041807834059000015, -0.007588953711092472, -0.020266709849238396, 0.017372729256749153, 0.07012812793254852, -0.006726069841533899, -0.05710079148411751, 0.03502866253256798, -0.023151839151978493, -0.01711607724428177, -0.010770561173558235, 0.03325864300131798, 0.011859122663736343, -0.020107408985495567, 0.03230283409357071, 0.023771345615386963, -0.009726250544190407, -0.006243739742785692, 0.034302953630685806, -0.07257074862718582, -0.029948709532618523, -0.004805599804967642, -0.07986322790384293, 0.0033807349391281605, -0.011089164763689041, 0.018514391034841537, -0.0469408854842186, 0.06039302423596382, -0.042232636362314224, -0.041807834059000015, -0.005770260002464056, -0.027913188561797142, 0.07101313769817352, -0.043471649289131165, -0.006318965461105108, 0.011407768353819847, -0.12340568006038666, -0.04750729352235794, -0.04761349409818649, -0.0037635015323758125, 0.004805599804967642, 0.01854979246854782, -0.051684536039829254, 0.006057887803763151, 0.045878876000642776, 0.062198445200920105, 0.006367641035467386, -0.0019602952525019646, 0.0659862831234932, -0.015753163024783134, 0.0008097834070213139, -0.0028784922324121, 0.03656857833266258, -0.022744735702872276, -0.03407285362482071, 0.003659512847661972, -0.019647203385829926, -0.004309994634240866, -0.060074422508478165, 0.026798076927661896, -0.03246213495731354, -0.05288814753293991, 0.0137795927003026, -0.12361808121204376, 0.01673552393913269, -0.010522758588194847, -0.021151719614863396, 0.056711386889219284, 0.05430416390299797, -0.0032811714336276054, -0.02251463383436203, 0.007265925407409668, -0.0015675724716857076, 0.07958002388477325, -0.0005680652684532106, 0.0027922040317207575, 0.024072248488664627, 0.036320775747299194, -0.01879759505391121, 0.0032391336280852556, 0.020780015736818314, 0.027417583391070366, 0.03389585018157959, -0.05501217022538185, 0.040037814527750015, 0.0197003036737442, 0.033063940703868866, -0.006526942830532789, -0.01669127307832241, 0.03890500217676163, -0.0023209366481751204, -0.03550656884908676, 0.007863306440412998, -0.06212764233350754, -0.0785888135433197, -0.04927730932831764, 0.06280025094747543, -0.06400386244058609, 0.013584890402853489, 0.014053945429623127, 0.0002125404862454161, -0.06917231529951096, 0.03322324529290199, 0.023700544610619545, -0.045241668820381165, -0.030851420015096664, -0.049206510186195374, 0.024320051074028015, 0.01627531833946705, 0.025010358542203903, -0.018231188878417015, 0.0619860403239727, -0.02860349602997303, -0.011673270724713802, 0.056711386889219284, -0.0469408854842186, -0.03759519010782242, -0.0033165719360113144, 0.01786833442747593, -0.02640867419540882, 0.06294184923171997, -0.00885451678186655, 0.05366695672273636, 0.004858700558543205, 0.03201963007450104, 0.029594706371426582, 0.0013485327363014221, 0.01587706431746483, 0.009301446378231049, -0.01236357819288969, 0.011036064475774765, -0.0409582257270813, 0.020992416888475418, 0.021311020478606224, 0.011460868641734123, 0.04835690185427666, -0.06400386244058609, 0.02745298482477665, -0.0018706881674006581, -0.005969387013465166, 0.007080073468387127, -0.021824326366186142, 0.028019391000270844, -0.009257195517420769, 0.0252404622733593, -0.016576221212744713, 0.028391094878315926, 0.02559446543455124, 0.031205423176288605, -0.012770682573318481, -0.05426876246929169, -0.0032413459848612547, -0.01788603514432907, -0.008518213406205177, 0.03865719959139824, -0.03577207028865814, -0.01797453686594963, -0.052392542362213135, -0.07334955781698227, 0.007898706942796707, -0.0005802341620437801, -0.009602349251508713, -0.021169418469071388, 0.0018872820073738694, 0.05384395644068718, -0.026196271181106567, -0.019399400800466537, 0.05702999234199524, -0.025983870029449463, 0.06145503744482994, -0.031488627195358276, -0.018655993044376373, -0.007699579931795597, -0.017832934856414795, -0.04874630644917488, 0.014478749595582485, 0.05940181389451027, -0.021877426654100418, 0.09402337670326233, -0.05586177855730057, 0.0050622522830963135, 0.05037472024559975, -0.020549912005662918, 0.0029913310427218676, -0.012814932502806187, -0.004752499051392078, -0.048781704157590866, -0.04941891133785248, 0.018478991463780403, -0.08283685892820358, -0.06669428944587708, -0.014540700241923332, -0.0000853204182931222, 0.061490438878536224, -0.04248043894767761, 0.043117646127939224, -0.02355894446372986, 0.018337389454245567, 0.04548947140574455, 0.003097532084211707, -0.08241205662488937, 0.009142144583165646, -0.012434379197657108, 0.028143292292952538, 0.12921133637428284, -0.02614317089319229, -0.03971921280026436, 0.06223384290933609, -0.037913791835308075, -0.0821288526058197, -0.024408552795648575, -0.023240340873599052, -0.03325864300131798, -0.06980952620506287, 0.004827725235372782, -0.002329786540940404, -0.0052702296525239944, -0.021346421912312508, -0.009974053129553795, -0.01786833442747593, 0.026532575488090515, 0.023523543030023575, -0.001880644471384585, 0.013620290905237198, 0.014859303832054138, -0.002739103278145194, -0.04520626738667488, -0.006960596889257431, 0.029364604502916336, -0.009584649465978146, 0.03639157861471176, 0.0752611830830574, -0.0020244584884494543, -0.016461171209812164, -0.01846129074692726, -0.02754148468375206, 0.012213126756250858, 0.04177243262529373, -0.000015669156709918752, 0.015027455985546112, -0.021222520619630814, 0.04711788892745972, -0.007805780973285437, 0.008726190775632858, 0.00966429989784956, 0.015257557854056358, 0.049489714205265045, 0.036603979766368866, 0.03081601858139038, 0.06460566818714142, -0.03214353322982788, 0.0004848190874326974, -0.006102138198912144, 0.09161614626646042, -0.012912283651530743, 0.03594907373189926, -0.0006449504289776087, 0.03890500217676163, 0.05210933834314346, 0.0052348291501402855, -0.01764708198606968, 0.0024293502792716026, 0.01028380636125803, 0.0670836940407753, -0.034285254776477814, -0.025629865005612373, 0.005106502678245306, -0.007465052418410778, 0.03366575017571449, 0.016346119344234467, 0.009903253056108952, 0.00010315888357581571, -0.04495846480131149, -0.05922481417655945, 0.03124082274734974, 0.016266468912363052, 0.012089225463569164, -0.00627028988674283, -0.009841302409768105, 0.01209807489067316, -0.0522509403526783, 0.020974718034267426, 0.0018795381765812635, 0.012991935014724731, -0.05943721532821655, -0.0280016902834177, -0.004991451743990183, 0.020974718034267426, -0.020638413727283478, -0.006226039491593838, -0.021930526942014694, 0.038621801882982254, 0.01941710151731968, 0.053206752985715866, 0.0354180671274662, 0.010602409951388836, 0.033948950469493866, -0.04113522544503212, -0.06368526071310043, -0.0070402477867901325, 0.012505179271101952, -0.013009634800255299, 0.061738237738609314, 0.008544763550162315, -0.07724360376596451, -0.0017003238899633288, -0.038090795278549194, -0.04977291449904442, -0.04704708606004715, 0.009186395443975925, 0.009301446378231049, 0.024426253512501717, -0.0283379927277565, -0.11547599732875824, 0.02023131027817726, 0.018425891175866127, 0.048427700996398926, 0.004152905661612749, 0.023275740444660187, 0.006810145452618599, 0.007035823073238134, 0.028107890859246254, -0.0035002112854272127, 0.01050505880266428, -0.07419916987419128, -0.016266468912363052, -0.0109033128246665, 0.010885613039135933, -0.05087032541632652, -0.0275591854006052, 0.06895991414785385, 0.005336605478078127, -0.05338375270366669, -0.025753766298294067, -0.004610897973179817, -0.005336605478078127, -0.005203853826969862, -0.0049383509904146194, -0.004011304117739201, 0.009257195517420769, 0.029771707952022552, 0.01977110467851162, -0.0007168574375100434, -0.05058712512254715, 0.002464750548824668, -0.012337028048932552, -0.0478258952498436, -0.04531246796250343, 0.09182855486869812, 0.011328116990625858, -0.04389645531773567, 0.04881710559129715, 0.038373999297618866, 0.016744373366236687, -0.037205785512924194, 0.03313474357128143, 0.010319206863641739, 0.021948227658867836, -0.021771226078271866, 0.03971921280026436, -0.052392542362213135, 0.022107528522610664, 0.06432246416807175, 0.041843231767416, 0.00257316417992115, -0.02462095580995083, 0.03131162375211716, 0.004429470747709274, 0.04350705072283745, -0.03538266569375992, 0.03224973380565643, -0.004354245029389858, -0.021063217893242836, 0.05228634178638458, 0.013390189036726952, -0.018116137012839317, 0.014337148517370224, 0.01253172941505909, 0.026992779225111008, -0.002265623537823558, -0.03890500217676163, -0.01600981503725052, 0.016124866902828217, 0.006522517651319504, 0.035895973443984985, -0.008243860676884651, 0.005314480047672987, -0.024054549634456635, -0.03136472404003143, -0.05908321216702461, 0.009637749753892422, -0.0005758090992458165, -0.024762555956840515, -0.019895005971193314, -0.04934811219573021, 0.008836816996335983, -0.02913450263440609, -0.0036196873988956213, -0.03538266569375992, -0.029895609244704247, 0.057242393493652344, 0.0005495353834703565, -0.06658808887004852, 0.004398495424538851, 0.04669308289885521, 0.02895749919116497, -0.03338254615664482, 0.008066858164966106, -0.014841604046523571, 0.04623287916183472, 0.001987951807677746, 0.010097954422235489, -0.03979001194238663, -0.034656960517168045, -0.06563227623701096, -0.0394006073474884, -0.00926604587584734, -0.008482812903821468, -0.01174407172948122, 0.00772170489653945, 0.014204396866261959, 0.022302230820059776, -0.006155238952487707, 0.03127622231841087, 0.003721463494002819, 0.07334955781698227, -0.10124504566192627, -0.01658507250249386, 0.056675985455513, 0.03258603811264038, -0.03593137115240097, -0.026886578649282455, -0.05802120268344879, -0.0022401795722544193, -0.018850695341825485, -0.04633907973766327, 0.02702818065881729, -0.03929440677165985, 0.02085081674158573, -0.042692843824625015, 0.03178953006863594, 0.052215542644262314, 0.03070981800556183, 0.018213488161563873, 0.05087032541632652, -0.03812619671225548, 0.022727034986019135, 0.021169418469071388, -0.014009695500135422, -0.017992235720157623, 0.0017888247966766357, -0.03219663351774216, -0.020992416888475418, -0.017169177532196045, 0.06046382710337639, 0.023435043171048164, -0.009159845300018787, 0.0053100548684597015, -0.03366575017571449, 0.03136472404003143, 0.01897459663450718, 0.03256833925843239, -0.06163203716278076, 0.056286584585905075, 0.013390189036726952, 0.037488989531993866, 0.01828428916633129, -0.018514391034841537, 0.008181910030543804, 0.05621578171849251, -0.057525597512722015, 0.028550395742058754, -0.0746239721775055, -0.02993101067841053, 0.027789287269115448, -0.03770139068365097, -0.0201428085565567, -0.08205804973840714, -0.049029506742954254, -0.07264155149459839, 0.03502866253256798, 0.012381277978420258, -0.00900939293205738, -0.04580807313323021, 0.011487418785691261, -0.024249251931905746, -0.0028696423396468163, -0.007969507947564125, 0.003971478436142206, 0.04750729352235794, 0.011629020795226097, 0.00988555233925581, -0.009354546666145325, 0.03223203495144844, -0.0009441941510885954, 0.028355693444609642, 0.049666713923215866, 0.0019304262241348624, 0.010345757007598877, 0.04994991794228554, 0.01465575210750103, -0.004637448117136955, -0.03993161395192146, -0.005969387013465166, -0.013053885661065578, 0.01545226015150547, 0.051082730293273926, 0.019133897498250008, -0.015496510080993176, 0.023169539868831635, 0.0039471411146223545, 0.08750970661640167, 0.03554196655750275, 0.003037794027477503, 0.008381037041544914, 0.005009151995182037, -0.022886337712407112, -0.041347626596689224, -0.003975903615355492, -0.000719623058103025, -0.052215542644262314, -0.014204396866261959, 0.016124866902828217, -0.030550517141819, 0.004336544778198004, -0.08028803020715714, 0.016505420207977295, -0.0069296215660870075, 0.05472896620631218, -0.030125712975859642, 0.03189573064446449, -0.01762053184211254, -0.01050505880266428, 0.03727658465504646, 0.026815777644515038, 0.03355954587459564, 0.044356659054756165, -0.016744373366236687, 0.054516565054655075, -0.023789046332240105, -0.022939438000321388, 0.034727759659290314, -0.03437375649809837, 0.004130780231207609, -0.024514753371477127, 0.05727779492735863, -0.012213126756250858, -0.042586639523506165, 0.02065611444413662, -0.023594344034790993, -0.005305630154907703, 0.03724118694663048, -0.029293803498148918, 0.014487599954009056, 0.04679928347468376, 0.02021360956132412, -0.03876340016722679, 0.01846129074692726, 0.014027395285665989, 0.028851298615336418, -0.013354788534343243, -0.006602168548852205, 0.025576764717698097, -0.025576764717698097, 0.059189412742853165, 0.025647565722465515, -0.004823300056159496, -0.03410825505852699, -0.08552728593349457, -0.022585434839129448, -0.0029183176811784506, 0.03534726798534393, -0.05076412484049797, 0.06039302423596382, 0.03028501383960247, -0.021682724356651306, -0.05295895040035248, -0.04658688232302666, -0.026709577068686485, -0.0015244282549247146, 0.025293562561273575, -0.07533197849988937, 0.010416558012366295, -0.03469235822558403, -0.013699942268431187, -0.004836575128138065, 0.0352056659758091, 0.012947684153914452, 0.0010758392745628953, 0.018213488161563873, -0.029665507376194, 0.0471532866358757, -0.03570127114653587, 0.0052702296525239944, -0.0411706268787384, -0.016434621065855026, 0.028939800336956978, -0.052923548966646194, 0.04934811219573021, 0.04265744239091873, -0.0391882061958313, 0.020939316600561142, 0.0010476296301931143, -0.03759519010782242, -0.014965505339205265, 0.044498261064291, -0.031559426337480545, -0.018337389454245567, -0.05798580124974251, 0.008159784600138664, -0.008872216567397118, -0.0012545004719868302, -0.012832633219659328, -0.015381459146738052, 0.056286584585905075, -0.0009065812919288874, -0.06141963601112366, -0.06541987508535385, 0.01337248831987381, 0.00008110279304673895, 0.026249371469020844, 0.03334714472293854, -0.010991813614964485, -0.07072993367910385, -0.03709958493709564, -0.015664663165807724, -0.00184856285341084, 0.041524630039930344, 0.015841664746403694, -0.02658567577600479, 0.05118893086910248, -0.08184564858675003, 0.05076412484049797, -0.026550274342298508, 0.043754853308200836, 0.01400084514170885, 0.044498261064291, 0.012947684153914452, 0.06209224462509155, 0.021381821483373642, 0.03819699585437775, -0.010974113829433918, 0.03325864300131798, 0.026532575488090515, 0.012221976183354855, 0.087226502597332, 0.03901120275259018, -0.029276102781295776, -0.0073721264488995075, 0.020992416888475418, 0.0007882112986408174, 0.02552366442978382, -0.018213488161563873, 0.057879600673913956, -0.02417845092713833, 0.020815415307879448, 0.06315425783395767, -0.004276806954294443, 0.018956895917654037, 0.0960765928030014, -0.017585132271051407, -0.03072751872241497, -0.02242613211274147, 0.015611561946570873, 0.008310236036777496, 0.020355211570858955, -0.058304402977228165, 0.006389766000211239, 0.031577128916978836, 0.017009876668453217, 0.005301204975694418, 0.0016992175951600075, 0.024691754952073097, 0.03145322576165199, 0.01200072467327118, 0.031293924897909164, 0.03717038407921791, 0.04456906020641327, -0.00371925113722682, -0.01355834025889635, 0.00344489817507565, 0.058587606996297836, -0.02869199775159359, 0.03488706052303314, 0.05497676879167557, 0.010381157509982586, -0.05833980441093445, -0.017806384712457657, 0.04315304756164551, -0.05766719579696655, -0.04046262055635452, 0.037382788956165314, 0.04407345503568649, -0.012044974602758884, -0.022142929956316948, -0.01253172941505909, 0.03440915793180466, 0.021965928375720978, -0.06449946761131287, 0.05395016074180603, -0.02348814345896244, 0.0054693566635251045 ]
3
websocket
_get_challenge
null
def _get_challenge(self): part1 = self._get_key_value(self.key1) part2 = self._get_key_value(self.key2) # This request should have 8 bytes of data in the body key3 = self.rfile.read(8) challenge = "" challenge += struct.pack("!I", part1) challenge += struct.pack("!I", part2) challenge += key3 return md5(challenge).digest()
(self)
[ -0.011837348341941833, -0.009784940630197525, -0.03544903174042702, 0.08029592782258987, 0.004467136226594448, -0.03681730479001999, 0.005230037495493889, -0.015285031870007515, 0.00002579222564236261, 0.016059186309576035, 0.043424613773822784, 0.09117008745670319, -0.015186012722551823, 0.04803352802991867, 0.027707496657967567, -0.04893370717763901, 0.04904172942042351, -0.02056007832288742, -0.004046302754431963, -0.036241188645362854, 0.003956284839659929, 0.006422773934900761, -0.004334359895437956, 0.060672033578157425, -0.029543859884142876, 0.03751944378018379, 0.03260446712374687, -0.03498093783855438, 0.02504296787083149, 0.03939181566238403, -0.0319923460483551, -0.025637086480855942, -0.00530655262991786, 0.03240642696619034, -0.03942782059311867, -0.053866684436798096, 0.03040803223848343, -0.019497867673635483, -0.0620403066277504, -0.005590108688920736, -0.04886169359087944, 0.008592204190790653, 0.011099201627075672, -0.037951529026031494, -0.01677032746374607, 0.007638015318661928, -0.03674528747797012, 0.04130019247531891, -0.008569699712097645, -0.016428258270025253, 0.03503495082259178, -0.004392871633172035, -0.019749917089939117, -0.050049927085638046, 0.07640715688467026, -0.005900670308619738, -0.03751944378018379, -0.02471890300512314, -0.031110171228647232, 0.03697933629155159, -0.02680731751024723, 0.02907576784491539, 0.006872863508760929, 0.033414628356695175, -0.07453478872776031, 0.044576842337846756, -0.011099201627075672, -0.014690914191305637, 0.02565508894622326, -0.013394657522439957, 0.027221400290727615, 0.006485786754637957, -0.03777149319648743, -0.0008270390680991113, 0.02194635383784771, -0.02592514269053936, 0.008605707436800003, 0.0013356399722397327, 0.00931684859097004, -0.019641896709799767, 0.02293654903769493, -0.04760144278407097, 0.004901472479104996, -0.055523015558719635, -0.004986989311873913, -0.010172017849981785, 0.016563285142183304, -0.030264003202319145, -0.005009493790566921, -0.06448879092931747, -0.007633514236658812, -0.01094617135822773, -0.0398959144949913, 0.035178977996110916, 0.041264183819293976, -0.021406246349215508, -0.037951529026031494, 0.01868770644068718, -0.018705710768699646, -0.02381872572004795, -0.012602499686181545, 0.0793597400188446, -0.02034403569996357, 0.08965778350830078, 0.0024979955051094294, -0.0073049492202699184, -0.015005976893007755, 0.008893764577805996, -0.0469893217086792, -0.03283851593732834, -0.013484674505889416, -0.019209811463952065, -0.05991588532924652, 0.006035697180777788, 0.005288549233227968, 0.004982488229870796, -0.0074174716137349606, 0.005333558190613985, 0.03073209710419178, 0.0007398342713713646, 0.03316257894039154, 0.02576311118900776, 0.0027477950789034367, 0.016131199896335602, -0.049833886325359344, 0.041264183819293976, -0.02410678192973137, -0.04727737978100777, -0.009289843030273914, -0.0872092992067337, -0.02597915381193161, 0.0793597400188446, 0.02405277080833912, 0.05969984084367752, -0.08476081490516663, -0.003348664380609989, 0.022018367424607277, 0.0014852946624159813, 0.049005720764398575, 0.06276044994592667, 0.012476474978029728, -0.01788654737174511, 0.05584707856178284, -0.0137097192928195, -0.024628885090351105, -0.028121577575802803, 0.011684318073093891, -0.04252443462610245, -0.0045841592364013195, -0.027347424998879433, 0.008848755620419979, -0.012890556827187538, 0.059843871742486954, -0.0067468383349478245, 0.08684922754764557, 0.03364867344498634, 0.027599474415183067, -0.012287436984479427, -0.08152016997337341, -0.05030197650194168, 0.013799737207591534, -0.04180429130792618, 0.016833338886499405, -0.01066711638122797, 0.05253442004323006, -0.03642122447490692, 0.022702503949403763, -0.046125151216983795, 0.009487882256507874, -0.013187616132199764, -0.05501891300082207, 0.01983993500471115, -0.046953313052654266, 0.015077991411089897, 0.050049927085638046, -0.022342432290315628, -0.013466671109199524, -0.011945369653403759, -0.010136011056602001, -0.05915973708033562, -0.03256846219301224, -0.03011997416615486, 0.01700437255203724, 0.059339772909879684, 0.0049284775741398335, 0.009289843030273914, 0.06585706025362015, 0.01722041517496109, 0.07539895921945572, -0.07899966835975647, -0.05224636569619179, 0.019857939332723618, -0.08965778350830078, 0.02896774560213089, 0.012242428958415985, -0.018012573942542076, 0.02875170297920704, 0.00839866604655981, 0.03467487916350365, -0.0476374514400959, -0.030137978494167328, -0.04274047911167145, -0.031416233628988266, 0.015321039594709873, -0.04472086951136589, -0.02232442796230316, 0.024682896211743355, 0.019245818257331848, -0.035178977996110916, 0.04475687816739082, 0.06805349886417389, -0.02747344970703125, 0.005464083980768919, 0.010937169194221497, -0.02255847491323948, -0.0004000168410129845, 0.009123309515416622, -0.004662924911826849, -0.013970771804451942, 0.0031866321805864573, 0.011207222938537598, 0.02774350345134735, 0.037843506783246994, 0.02266649715602398, -0.008956776931881905, 0.001296257134526968, -0.019263820722699165, 0.005963683128356934, -0.07712730020284653, -0.08454477041959763, 0.031542256474494934, 0.007273443043231964, 0.02731141820549965, 0.05300251394510269, -0.0036682276986539364, 0.05102211982011795, 0.018975764513015747, 0.004244341980665922, 0.0064947884529829025, -0.010793141089379787, -0.00926283746957779, 0.004068807233124971, 0.04396472126245499, 0.03939181566238403, -0.011621305719017982, -0.04637720063328743, 0.050337985157966614, -0.011189219541847706, 0.017094390466809273, -0.0004886281676590443, -0.027221400290727615, -0.018723715096712112, -0.04245242103934288, -0.017643500119447708, -0.006071704439818859, 0.03267648071050644, -0.003974288236349821, -0.03629520162940025, 0.06286846846342087, 0.004048553295433521, 0.059015706181526184, -0.008254637010395527, -0.019821932539343834, -0.025781113654375076, -0.0137097192928195, 0.02939983271062374, -0.014744925312697887, 0.04554903507232666, -0.026987353339791298, -0.03649323806166649, 0.060383979231119156, 0.030768103897571564, -0.012269433587789536, -0.03028200753033161, -0.014420860446989536, -0.010901162400841713, 0.050229962915182114, 0.06751339137554169, 0.00865071639418602, -0.0005679564201273024, 0.03708735853433609, -0.021712306886911392, 0.039823900908231735, -0.022468456998467445, 0.003965286538004875, 0.10103604197502136, -0.04461285099387169, -0.03534100949764252, 0.006035697180777788, -0.008146615698933601, -0.01783253811299801, 0.003301404882222414, -0.0004005794762633741, -0.07662320137023926, 0.03769947960972786, 0.02731141820549965, -0.018354641273617744, -0.014825941063463688, 0.061824262142181396, 0.052606433629989624, -0.07669521123170853, 0.056963298469781876, 0.023422645404934883, -0.04943780601024628, -0.06596508622169495, -0.04007595032453537, 0.04212835803627968, 0.020632091909646988, -0.0034544351510703564, -0.011513283476233482, -0.020866138860583305, 0.052606433629989624, 0.04389270767569542, -0.021316228434443474, 0.022810524329543114, -0.016149204224348068, 0.042812492698431015, 0.09232231229543686, 0.0013558939099311829, 0.04918575659394264, 0.03327060118317604, -0.017976565286517143, 0.011234228499233723, 0.014033784158527851, 0.07133015245199203, -0.05379467085003853, 0.019281825050711632, -0.05811552703380585, 0.006976383738219738, 0.04976187273859978, -0.02939983271062374, 0.010244032368063927, 0.004653923213481903, -0.01036105491220951, -0.006229235790669918, 0.008601206354796886, 0.04191231355071068, -0.05167024955153465, -0.005558602511882782, -0.022738510742783546, 0.032316409051418304, -0.07626312971115112, 0.04904172942042351, -0.008421170525252819, 0.005833157338202, -0.05761142820119858, -0.02803155966103077, -0.022576479241251945, -0.0784955695271492, -0.03217238187789917, -0.0800078734755516, -0.0639846920967102, 0.03159626945853233, 0.006611811462789774, 0.0630125030875206, 0.04936579242348671, -0.05606311932206154, -0.022648492828011513, 0.019497867673635483, 0.038059551268815994, 0.04918575659394264, 0.012791537679731846, 0.001953387400135398, 0.012098399922251701, -0.051598235964775085, -0.02713138237595558, -0.023332629352808, 0.025186996906995773, 0.0096769193187356, 0.017157403752207756, -0.048393599689006805, 0.02869769185781479, -0.03307256102561951, -0.03690732270479202, -0.010172017849981785, -0.059015706181526184, -0.028769707307219505, 0.02261248603463173, -0.030822115018963814, -0.026663288474082947, -0.013727722689509392, 0.04630518704652786, -0.047349393367767334, 0.015384051948785782, -0.045909106731414795, -0.007151918485760689, -0.021766318008303642, -0.009190822951495647, 0.026879331097006798, 0.062328364700078964, 0.03393673151731491, -0.018228616565465927, 0.06686526536941528, -0.007403968833386898, -0.03409876301884651, 0.031722292304039, -0.0016034430591389537, 0.007340956013649702, -0.06261642277240753, -0.05725135654211044, 0.026357227936387062, -0.04122817888855934, 0.019425854086875916, 0.010505083948373795, 0.016113195568323135, -0.04454083368182182, 0.028427639976143837, 0.013754728250205517, -0.0077280327677726746, -0.06564102321863174, -0.061104122549295425, -0.031146178022027016, 0.04050803557038307, 0.00473944004625082, -0.013952767476439476, -0.029651882126927376, -0.015068989247083664, -0.03427879884839058, 0.027275411412119865, 0.08692124485969543, 0.005095010623335838, -0.016014177352190018, -0.041876308619976044, 0.00973093044012785, -0.03985990583896637, 0.0273654293268919, -0.026627281680703163, 0.021910347044467926, -0.031974341720342636, -0.02929181046783924, 0.007917070761322975, 0.07212230563163757, 0.008862257935106754, -0.018300630152225494, -0.04432479292154312, 0.007529993541538715, -0.003407175885513425, 0.011711322702467442, 0.08029592782258987, 0.018363643437623978, -0.01890374906361103, 0.009775939397513866, -0.0035084460396319628, -0.010829147882759571, 0.056639235466718674, -0.004901472479104996, -0.04432479292154312, 0.010964174754917622, -0.02227041684091091, -0.0075479974038898945, 0.04716935753822327, 0.009703924879431725, -0.053362585604190826, -0.04047202691435814, -0.005567604210227728, 0.05095010623335838, 0.03289252519607544, 0.026105178520083427, -0.08836153149604797, -0.04086810722947121, -0.021478259935975075, 0.028715696185827255, 0.034908924251794815, 0.002180682495236397, -0.04252443462610245, -0.05393869802355766, -0.004021547734737396, 0.026339225471019745, -0.033036552369594574, -0.023476656526327133, -0.027113378047943115, -0.031812310218811035, -0.031200189143419266, 0.04670126363635063, 0.03454885259270668, 0.016014177352190018, 0.09923568367958069, 0.05048201233148575, -0.06499288976192474, -0.034188780933618546, -0.0315062515437603, -0.04184029996395111, -0.026987353339791298, -0.006670323200523853, 0.025637086480855942, -0.03670928254723549, -0.05368664860725403, -0.02968788892030716, -0.023350631818175316, -0.039607856422662735, 0.0009131186525337398, 0.06358861178159714, -0.006157221272587776, 0.01735544204711914, 0.02851765789091587, 0.05512693524360657, 0.024736907333135605, 0.01334964856505394, -0.0477454699575901, 0.0026870330329984426, -0.0028468146920204163, 0.0008174746762961149, 0.052426401525735855, -0.030858121812343597, -0.014186814427375793, -0.007489485666155815, -0.06693727523088455, -0.04914974793791771, 0.024250810965895653, 0.036565251648426056, -0.025114981457591057, -0.03381070867180824, 0.021856335923075676, -0.01996595971286297, -0.012440468184649944, 0.055090926587581635, -0.019983964040875435, 0.03694332763552666, -0.05793549120426178, 0.014393854886293411, -0.032262399792671204, 0.08339254558086395, 0.016140202060341835, -0.019641896709799767, -0.009784940630197525, 0.015582091175019741, -0.017661502584815025, -0.04907773435115814, -0.014663908630609512, -0.01000998541712761, -0.014213819988071918, 0.040111955255270004, 0.041696272790431976, 0.03051605261862278, -0.012476474978029728, 0.04025598615407944, -0.028643682599067688, 0.04295651987195015, -0.12458471208810806, -0.02293654903769493, 0.004327608272433281, 0.0025002460461109877, -0.03427879884839058, -0.049941908568143845, -0.04068807139992714, 0.09109807014465332, 0.045296985656023026, 0.03996792808175087, -0.021352235227823257, -0.039103757590055466, -0.06499288976192474, -0.008281642571091652, 0.01221542339771986, -0.054838877171278, -0.01301658246666193, -0.04356864094734192, 0.045801084488630295, -0.025241006165742874, -0.018813731148838997, 0.005576606374233961, 0.05134618654847145, -0.022360434755682945, -0.041984327137470245, 0.008484182879328728, -0.05617114156484604, 0.013205619528889656, 0.03246043995022774, 0.042812492698431015, -0.037231385707855225, 0.009460876695811749, -0.056855279952287674, 0.1262410432100296, 0.04868165776133537, 0.0031168682035058737, 0.013538685627281666, -0.02720339596271515, -0.04227238520979881, 0.011810342781245708, 0.0023314624559134245, 0.021406246349215508, 0.03809555619955063, -0.015204016119241714, 0.07626312971115112, -0.007376963272690773, -0.026231203228235245, -0.002131172688677907, 0.041696272790431976, 0.005792648997157812, -0.023800721392035484, 0.04482889175415039, -0.0707540363073349, -0.06560501456260681, -0.007115911692380905, 0.01738244853913784, 0.04234439879655838, 0.045801084488630295, -0.0236566923558712, 0.0037807500921189785, -0.02525901049375534, 0.009073800407350063, 0.03051605261862278, -0.05095010623335838, 0.024754909798502922, 0.056459199637174606, 0.01807558536529541, 0.014546886086463928, -0.046413205564022064, 0.017229417338967323, -0.0322083905339241, 0.004883468616753817, 0.03265848010778427, -0.004026048816740513, 0.01679733209311962, -0.031218193471431732, 0.030930135399103165, 0.03458486124873161, -0.027113378047943115, -0.0022594481706619263, -0.0277975145727396, 0.02018200419843197, 0.005770144518464804, 0.02106417901813984, -0.049005720764398575, 0.012485477142035961, 0.038887713104486465, 0.04130019247531891, 0.013610700145363808, 0.023422645404934883, -0.00035585183650255203, -0.03366667777299881, 0.014033784158527851, 0.05105812847614288, -0.0015674359165132046, 0.02824760414659977, 0.0954909399151802, 0.03364867344498634, 0.010640110820531845, 0.0391397625207901, -0.00892977137118578, 0.026735303923487663, 0.02702336013317108, 0.005954681430011988, -0.046017128974199295, -0.03395473584532738, -0.04205634444952011, -0.008794744499027729, 0.029003754258155823, -0.0546228364109993, -0.009388862177729607, -0.049833886325359344, -0.05843959376215935, 0.01868770644068718, 0.03283851593732834, -0.03559305891394615, 0.01857968606054783, -0.06153620779514313, 0.031218193471431732, -0.01845366135239601, -0.014528881758451462, -0.05411873385310173, 0.009766937233507633, -0.018201610073447227, 0.09282641112804413, -0.06884565949440002, -0.021658295765519142, 0.02680731751024723, 0.020650096237659454, -0.04184029996395111, 0.0477454699575901, 0.03510696440935135, 0.004233089741319418, -0.047565434128046036, 0.018651699647307396, 0.05069805681705475, 0.012800538912415504, 0.012395459227263927, 0.0322083905339241, -0.03751944378018379, 0.026933342218399048, -0.0006841357098892331, 0.037843506783246994, 0.008758737705647945, -0.026411239057779312, -0.007192426826804876, 0.0625804141163826, -0.008952275849878788, 0.07439075410366058, 0.027221400290727615, -0.05134618654847145, -0.0025632584001868963, -0.00030212244018912315, -0.05163424089550972, -0.002470990177243948, 0.0024034767411649227, 0.012917562387883663, 0.03571908548474312, 0.03687131404876709, 0.02581712044775486, -0.004404123406857252, -0.010856153443455696, -0.04050803557038307, -0.031200189143419266, 0.028427639976143837, 0.0037087358068674803, -0.038059551268815994, 0.0023202102165669203, 0.018408652395009995, -0.004516645800322294, -0.03588111698627472, -0.01061310525983572, -0.03022799640893936, 0.026339225471019745, 0.01296257134526968, 0.000506350421346724, 0.019335836172103882, 0.017508473247289658, -0.05131017789244652, 0.049725864082574844, 0.01732843741774559, -0.003224889747798443, -0.02624920755624771, -0.0026397735346108675, 0.04047202691435814, 0.0313442163169384, -0.0009868207853287458, 0.01716640591621399, 0.026501256972551346, -0.0276894923299551, -0.03625919297337532, 0.029615875333547592, -0.0026240204460918903, -0.0237647145986557, 0.028715696185827255, 0.015240022912621498, 0.03852764144539833, 0.029921935871243477, -0.023314625024795532, -0.022180400788784027, 0.0006289997836574912, 0.07669521123170853, 0.01396176964044571, 0.02626721002161503, -0.02466489188373089, 0.006539797410368919, 0.032370422035455704, 0.010072997771203518, -0.02547505311667919, 0.014987973496317863, -0.02029002457857132, -0.014249826781451702, 0.016752323135733604, 0.025241006165742874, 0.013736724853515625, -0.045296985656023026, -0.022198403254151344, -0.006526294630020857, -0.022918546572327614, 0.010973176918923855, 0.026501256972551346, 0.03737541288137436, 0.022594481706619263, 0.010027988813817501, 0.019101789221167564, 0.0052345385774970055, -0.07125813513994217, -0.015150004997849464, 0.0474214069545269, 0.009334851987659931 ]
4
websocket
_get_key_value
null
def _get_key_value(self, key_value): key_number = int(re.sub("\\D", "", key_value)) spaces = re.subn(" ", "", key_value)[1] if key_number % spaces != 0: self._reply_400('Invalid key') raise IOError("key_number %r is not an intergral multiple of spaces %r" % (key_number, spaces)) return key_number / spaces
(self, key_value)
[ 0.05641850829124451, 0.027373693883419037, -0.09503594040870667, 0.05205906182527542, 0.04908010736107826, 0.020798195153474808, 0.0279912818223238, -0.026883255690336227, 0.07080468535423279, -0.06430184096097946, 0.012669642455875874, 0.021706413477659225, 0.01685652881860733, 0.013632353395223618, 0.045083947479724884, 0.017237979918718338, 0.09503594040870667, 0.009372810833156109, 0.03276851028203964, 0.012933026067912579, 0.015621351078152657, -0.0013384864432737231, 0.03654669597744942, -0.050169967114925385, -0.04145107418298721, -0.029462594538927078, 0.03402185067534447, 0.020780030637979507, 0.05300360918045044, -0.040797159075737, -0.010989438742399216, -0.03927135095000267, 0.008351065218448639, 0.03002569079399109, -0.00004434658694663085, 0.0035102630499750376, -0.017528610303997993, -0.06524638831615448, -0.07040506601333618, 0.000912191579118371, -0.014922023750841618, 0.008078600279986858, 0.03276851028203964, -0.019526688382029533, -0.037963517010211945, 0.010044892318546772, 0.03300464525818825, -0.019635675475001335, -0.05805329978466034, 0.01276954635977745, -0.02958974614739418, -0.03425798565149307, 0.0010274216765537858, -0.03652853146195412, -0.0021604239009320736, -0.00406427588313818, -0.014958351850509644, -0.04377611353993416, -0.02301424741744995, -0.022342165932059288, -0.03618340939283371, 0.007837922312319279, -0.04366712644696236, -0.026628954336047173, 0.020798195153474808, 0.006634533405303955, 0.03810883313417435, 0.01550328265875578, 0.014140956103801727, -0.013005683198571205, 0.030298156663775444, -0.01275138184428215, -0.06789838522672653, -0.028754185885190964, 0.02855437807738781, 0.018981758505105972, -0.027682486921548843, 0.03887173533439636, 0.005167760886251926, -0.006534629035741091, 0.042540937662124634, 0.014331681653857231, 0.06259439140558243, -0.023668164387345314, 0.006416561082005501, 0.0025816098786890507, 0.02642914652824402, 0.03245971351861954, 0.04886213317513466, 0.06946051865816116, -0.020089784637093544, -0.01169784925878048, -0.03981628268957138, 0.022832602262496948, 0.005349404644221067, -0.0009025417384691536, 0.03876274824142456, -0.04530191794037819, 0.00020661961752921343, -0.03225990757346153, 0.007955990731716156, 0.081594318151474, 0.02490334026515484, 0.0035897321067750454, -0.006125931162387133, -0.05976075306534767, -0.029825882986187935, 0.012224615551531315, 0.0010240159463137388, 0.02337753400206566, -0.03462127596139908, -0.06255806237459183, -0.01726522669196129, 0.006834341213107109, -0.034366972744464874, 0.04675506800413132, -0.012315437197685242, 0.024285752326250076, 0.08115836977958679, -0.021760905161499977, 0.034457795321941376, -0.002835911000147462, -0.019217895343899727, 0.0002178304421249777, -0.002327308990061283, 0.09329216182231903, -0.04889846220612526, 0.02697407826781273, 0.03923502191901207, 0.04330383986234665, -0.021052496507763863, 0.02452188916504383, 0.02851804904639721, -0.013323559425771236, 0.005803513806313276, 0.010226535610854626, -0.030425306409597397, 0.033386096358299255, 0.028808677569031715, 0.012297272682189941, 0.04446635767817497, -0.006439266260713339, 0.0612502284348011, -0.035475000739097595, 0.012578820809721947, -0.006466513033956289, 0.019581181928515434, 0.041560061275959015, -0.0031605989206582308, -0.010063056834042072, -0.01245167013257742, 0.10012196004390717, 0.10142979770898819, 0.008251161314547062, 0.05049692839384079, 0.03934400901198387, 0.03320445492863655, -0.06313931941986084, 0.050969198346138, -0.03601992875337601, 0.045156605541706085, -0.03371305763721466, 0.050169967114925385, -0.06782572716474533, 0.016974596306681633, 0.016702130436897278, -0.00917754415422678, 0.0061985887587070465, 0.05667281150817871, 0.028245583176612854, -0.013741339556872845, -0.007987778633832932, -0.01883644424378872, -0.0012919402215629816, 0.03923502191901207, -0.03959830850362778, -0.04232296347618103, 0.0013759504072368145, 0.0356021486222744, -0.014549653977155685, -0.04014324024319649, -0.010008563287556171, 0.0015076420968398452, 0.05471105873584747, -0.004731816239655018, 0.06419285386800766, 0.04831720143556595, 0.030189169570803642, 0.018709292635321617, -0.015694009140133858, 0.005703609902411699, 0.013832162134349346, -0.018545813858509064, 0.007638114038854837, -0.043085865676403046, -0.035384178161621094, 0.06746244430541992, -0.0015575940487906337, -0.004963411949574947, 0.04987933859229088, -0.04504761844873428, -0.009944988414645195, -0.03255053609609604, 0.04791758581995964, -0.011298233643174171, -0.07233048975467682, 0.01728339120745659, 0.003221903694793582, -0.06866128742694855, -0.0003434199606999755, -0.03656486049294472, -0.017210733145475388, 0.03316812589764595, 0.03456678241491318, 0.007188546471297741, -0.04250460863113403, 0.0024862471036612988, -0.0011381107615306973, 0.03062511421740055, 0.007497340440750122, 0.023668164387345314, 0.03705529868602753, 0.061904147267341614, -0.0767989233136177, 0.005235877353698015, -0.03178763389587402, -0.03295015171170235, 0.04177803173661232, -0.014595065265893936, 0.04297688230872154, 0.030897580087184906, 0.014358928427100182, -0.01990814134478569, 0.07036873698234558, 0.013323559425771236, -0.12010276317596436, -0.007987778633832932, -0.050642240792512894, 0.04493863135576248, -0.01553052943199873, -0.02299608290195465, -0.030770428478717804, 0.012042972259223461, 0.03671017661690712, -0.02194255031645298, -0.026665283367037773, -0.004071087576448917, 0.041523732244968414, 0.01400472316890955, 0.03202376887202263, -0.02246931567788124, 0.001193171483464539, -0.021524768322706223, 0.024848846718668938, 0.009336481802165508, 0.03126086667180061, -0.10876820236444473, -0.010135713964700699, 0.01173417828977108, 0.01934504508972168, -0.01673845946788788, -0.002704219426959753, -0.042577262967824936, -0.015675844624638557, 0.02490334026515484, 0.033967357128858566, 0.004000700544565916, 0.04835353046655655, 0.05162311717867851, -0.002599774394184351, 0.0027450891211628914, 0.012206451036036015, -0.04530191794037819, -0.034385137259960175, -0.006366609130054712, -0.012279109098017216, 0.0560552217066288, 0.06263072043657303, 0.010026727803051472, -0.040978800505399704, 0.005885253194719553, -0.004745439626276493, -0.06306666880846024, -0.037963517010211945, 0.03678283467888832, 0.04501128941774368, 0.018618471920490265, -0.03678283467888832, 0.05347588285803795, 0.025066819041967392, -0.02599320188164711, -0.03707346320152283, -0.031206373125314713, 0.030316321179270744, -0.02245115116238594, -0.002261463087052107, -0.04177803173661232, -0.039561979472637177, -0.000011308379725960549, 0.01550328265875578, 0.019762825220823288, 0.04541090503334999, -0.05670913681387901, -0.012215533293783665, -0.02290526032447815, 0.05572826415300369, 0.07076835632324219, 0.0459195077419281, -0.027755144983530045, 0.02960791066288948, -0.0460284948348999, 0.018064457923173904, 0.030443470925092697, 0.023250384256243706, 0.031878456473350525, 0.008060435764491558, -0.017528610303997993, 0.0866076797246933, -0.03785452991724014, 0.030425306409597397, 0.026865091174840927, 0.006784389261156321, -0.005871629808098078, 0.010553494095802307, 0.03425798565149307, -0.026737941429018974, 0.007102265488356352, -0.022723617032170296, 0.014068298041820526, 0.03876274824142456, -0.01480395533144474, -0.021742740646004677, -0.05205906182527542, 0.0014009263832122087, 0.03225990757346153, -0.012052054516971111, 0.011270986869931221, 0.011770506389439106, 0.00009408572077518329, 0.026392817497253418, 0.03273218125104904, -0.060414668172597885, 0.025648079812526703, -0.018591225147247314, 0.024739861488342285, -0.03861743211746216, 0.004236837383359671, -0.0076335733756423, 0.01576666720211506, -0.08740691095590591, -0.0024658122565597296, -0.028808677569031715, 0.014440667815506458, 0.02444923110306263, 0.017692089080810547, 0.007211251650005579, -0.008727976121008396, -0.0868256539106369, -0.028427226468920708, 0.0280821043998003, 0.019490361213684082, -0.013323559425771236, -0.02041674219071865, 0.03959830850362778, -0.08457326889038086, -0.014068298041820526, -0.05692711099982262, -0.04214131832122803, 0.04439369961619377, 0.0814490020275116, -0.009554454125463963, 0.003853115253150463, 0.004377611447125673, -0.002463541692122817, 0.00175172567833215, 0.036909982562065125, -0.014122791588306427, 0.01830059476196766, -0.02909930795431137, -0.024830682203173637, 0.012515245005488396, 0.0033286192920058966, -0.024267587810754776, 0.04446635767817497, -0.013314477168023586, 0.00811038725078106, 0.019472196698188782, -0.05213171988725662, -0.018618471920490265, 0.010108467191457748, -0.021579261869192123, 0.04010691121220589, 0.03967096656560898, 0.002286439063027501, -0.000887783186044544, 0.007583620958030224, 0.026610789820551872, -0.061976801604032516, 0.06808003038167953, 0.005022446159273386, 0.027700651437044144, 0.008024106733500957, -0.03004385530948639, 0.07229416072368622, 0.027646159753203392, -0.054384101182222366, 0.02136128954589367, -0.008564496412873268, -0.04337649792432785, 0.00432992959395051, -0.014985598623752594, -0.06844331324100494, 0.04842618852853775, 0.0016767976339906454, 0.0019674275536090136, -0.050678569823503494, -0.05710875615477562, -0.02245115116238594, -0.07040506601333618, -0.014840283431112766, -0.008015024475753307, -0.05031528323888779, 0.002483976539224386, 0.04842618852853775, -0.0010064191883429885, 0.006471054162830114, -0.022287672385573387, 0.0017460492672398686, 0.04624646529555321, -0.017119910567998886, -0.05576459318399429, -0.014540571719408035, 0.003789540147408843, -0.008555414155125618, -0.005871629808098078, -0.010689727030694485, 0.0071612996980547905, 0.05649116635322571, 0.06005138158798218, -0.033912863582372665, 0.018082622438669205, 0.013069258071482182, 0.040433868765830994, 0.06179516017436981, 0.053257908672094345, -0.08094039559364319, -0.003571567591279745, 0.06680852174758911, 0.012142876163125038, -0.05006098002195358, -0.015948310494422913, -0.017219815403223038, -0.0457015335559845, 0.011879492551088333, 0.0664089098572731, -0.0027178425807505846, -0.05511067435145378, 0.024085944518446922, 0.058925189077854156, -0.027373693883419037, -0.01575758494436741, 0.09438202530145645, -0.021270468831062317, -0.030189169570803642, -0.059361133724451065, -0.014885694719851017, -0.006661779712885618, 0.02501232735812664, 0.027173886075615883, -0.006075979210436344, -0.05947012081742287, 0.02395879290997982, 0.04497496038675308, 0.02246931567788124, -0.012933026067912579, -0.0281002689152956, 0.06713548302650452, 0.027809638530015945, 0.010871370323002338, -0.006793471518903971, 0.01833692379295826, -0.04315852373838425, -0.020053455606102943, -0.019254224374890327, -0.020725537091493607, 0.04642811045050621, -0.03147884085774422, -0.00009820108243729919, -0.016502322629094124, -0.029408102855086327, 0.0013680035481229424, 0.015421543270349503, 0.02346835657954216, -0.006307574920356274, 0.017683006823062897, -0.014268106780946255, 0.00482717901468277, 0.018445909023284912, -0.03680099919438362, 0.009926823899149895, -0.029934868216514587, 0.01354153174906969, 0.009014064446091652, -0.04987933859229088, -0.016547733917832375, 0.017510445788502693, -0.025684408843517303, -0.008764305151998997, 0.04294055327773094, -0.02493966929614544, 0.011815917678177357, 0.022142358124256134, 0.014068298041820526, -0.029680566862225533, -0.07334769517183304, -0.01628435030579567, -0.03616524487733841, -0.01588473469018936, -0.02760983072221279, 0.04432104527950287, -0.006834341213107109, -0.006448348518460989, -0.00235455553047359, 0.004052923060953617, -0.0152671467512846, 0.0032922907266765833, -0.0407245010137558, -0.018137115985155106, -0.03425798565149307, 0.0101720429956913, -0.054347772151231766, 0.04631912335753441, 0.06339362263679504, 0.06052365526556969, -0.00970885157585144, -0.027264706790447235, -0.040506526827812195, 0.025593586266040802, -0.017555855214595795, 0.007088642101734877, 0.0014803955564275384, -0.021651919931173325, -0.03347691893577576, -0.03062511421740055, 0.022705452516674995, 0.024649038910865784, 0.018545813858509064, 0.005204089917242527, -0.06379324197769165, -0.02951708808541298, -0.057871658354997635, -0.0009473850368522108, 0.059397462755441666, -0.05216804891824722, 0.08014116436243057, 0.009572618640959263, -0.010680644772946835, -0.00395301915705204, -0.031242702156305313, 0.013968394137918949, 0.032350730150938034, -0.07541843503713608, 0.013741339556872845, 0.006507382728159428, -0.04733632877469063, -0.04250460863113403, -0.10913148522377014, -0.04751797020435333, -0.003644225187599659, -0.004640994593501091, -0.006975114811211824, -0.002174047054722905, 0.04693671315908432, -0.00913213286548853, -0.03465760126709938, -0.0280457753688097, -0.04275890812277794, -0.010099384933710098, 0.005449308548122644, 0.007011443842202425, -0.013941148295998573, 0.008328359574079514, 0.09554454684257507, 0.019980797544121742, -0.0203985795378685, 0.020543893799185753, 0.019672004505991936, -0.025793394073843956, -0.0007072748267091811, -0.005181384272873402, -0.01988997682929039, -0.02653813362121582, -0.023867972195148468, -0.014358928427100182, 0.01402288768440485, 0.030334483832120895, -0.016693048179149628, -0.0056354934349656105, 0.011670602485537529, 0.007615408860146999, 0.01322365552186966, 0.03861743211746216, 0.047082025557756424, 0.11937619000673294, 0.07371097803115845, 0.034875575453042984, 0.05311259627342224, -0.03060694970190525, 0.007601785473525524, -0.04141474515199661, -0.012424423359334469, -0.02948075905442238, -0.03522069752216339, -0.027173886075615883, -0.021270468831062317, 0.08210291713476181, 0.01248799916356802, -0.028445390984416008, -0.040797159075737, -0.03173314034938812, 0.004963411949574947, 0.01169784925878048, -0.053330566734075546, -0.018118951469659805, 0.04838985949754715, 0.030243663117289543, 0.009250201284885406, 0.010607987642288208, 0.00740197766572237, -0.06255806237459183, -0.01729247346520424, 0.0510055273771286, 0.018128033727407455, 0.015957392752170563, -0.03532968461513519, 0.053330566734075546, -0.004255001898854971, 0.03265952318906784, -0.05965176597237587, 0.027373693883419037, 0.029353609308600426, 0.0046387240290641785, -0.07211251556873322, 0.01790097914636135, -0.0027859590481966734, -0.01402288768440485, 0.004052923060953617, -0.02252380922436714, -0.027301035821437836, 0.013477956876158714, -0.03151516988873482, -0.005399356596171856, 0.010798713192343712, -0.02392246574163437, -0.029898539185523987, -0.08580844849348068, 0.05191374570131302, -0.06935153156518936, -0.09045851975679398, -0.013750421814620495, -0.003487557405605912, -0.014150038361549377, -0.03280483931303024, -0.020634714514017105, 0.0007651737541891634, -0.037382256239652634, -0.016429664567112923, -0.015330721624195576, 0.025811558589339256, -0.019762825220823288, 0.06379324197769165, -0.06531904637813568, -0.023777149617671967, -0.0013487038668245077, -0.05347588285803795, -0.01941770315170288, 0.04192334786057472, 0.034366972744464874, 0.04755429923534393, 0.028281912207603455, -0.002438565716147423, -0.0012499351287260652, 0.0012079300358891487, -0.02853621356189251, 0.02495783381164074, 0.00013112399028614163, -0.015021927654743195, 0.040542855858802795, -0.01892726495862007, -0.02949892356991768, -0.008346524089574814, -0.03712795674800873, -0.05202273279428482, -0.04504761844873428, -0.13913901150226593, -0.010208371095359325, 0.011616109870374203, 0.08420998603105545, 0.028209254145622253, 0.011434465646743774, -0.09895944595336914, -0.02708306349813938, 0.04199600592255592, 0.008237537927925587, -0.03763655945658684, -0.033894699066877365, -0.020798195153474808, 0.013750421814620495, -0.040978800505399704, -0.053294237703084946, 0.018491320312023163, 0.027718815952539444, -0.05710875615477562, -0.025375613942742348, 0.017683006823062897, 0.054747387766838074, -0.06317564845085144, 0.036419544368982315, 0.011479876935482025, 0.012851285748183727, -0.008133092895150185, 0.019272388890385628, 0.05387549847364426, 0.013051094487309456, -0.07432857155799866, -0.022705452516674995, 0.022705452516674995, -0.017664842307567596, 0.00032922904938459396, 0.03456678241491318, 0.011879492551088333, -0.022324001416563988, -0.0406518429517746, -0.0089550307020545, 0.055837247520685196, 0.02094350941479206, -0.05198640376329422, -0.016129953786730766, 0.013804915361106396, 0.030479799956083298, 0.03832680359482765, 0.049225419759750366, -0.04235929250717163, -0.0457015335559845, -0.03423982113599777, 0.053693853318691254, -0.011461712419986725, 0.07469185441732407, -0.00840555876493454, 0.0008083141292445362, 0.0005971533828414977, 0.023795314133167267, 0.04900744929909706, 0.025121312588453293, 0.018500402569770813, -0.04028855636715889, -0.005099644884467125, 0.02239665761590004, 0.021633755415678024, 0.01734696514904499, -0.013677764683961868, -0.014885694719851017, -0.019708333536982536, 0.054238785058259964, -0.0152671467512846, -0.002704219426959753, 0.030788592994213104, 0.01245167013257742 ]
5
websocket
_message_length
null
def _message_length(self): # TODO: buildin security agains lengths greater than 2**31 or 2**32 length = 0 while True: byte_str = self.rfile.read(1) if not byte_str: return 0 else: byte = ord(byte_str) if byte != 0x00: length = length * 128 + (byte & 0x7f) if (byte & 0x80) != 0x80: break return length
(self)
[ -0.02438482828438282, 0.007201713044196367, 0.015868335962295532, 0.0898963063955307, 0.04178176447749138, 0.007552017457783222, 0.01111875381320715, -0.006705827545374632, 0.03311968967318535, -0.026040812954306602, 0.0299896989017725, 0.04280083253979683, -0.013548137620091438, -0.008107045665383339, 0.007884124293923378, 0.02756941318511963, 0.011591891758143902, -0.041963741183280945, 0.00047939387150108814, -0.013284271582961082, -0.017032984644174576, 0.024202851578593254, 0.015458889305591583, -0.0003508731024339795, -0.02201913483440876, 0.04109025374054909, -0.004192279651761055, 0.008716666139662266, 0.036795612424612045, 0.0048906137235462666, -0.039816420525312424, -0.012711046263575554, 0.007470128126442432, 0.0284247025847435, -0.028734061866998672, -0.00002868259616661817, 0.02513093128800392, -0.06704007834196091, -0.05401057377457619, -0.012146919965744019, -0.05022546648979187, 0.046331170946359634, 0.02858848124742508, 0.004030775744467974, -0.01998100057244301, -0.05648545175790787, -0.029862314462661743, 0.019671641290187836, -0.05226359888911247, -0.0023088245652616024, -0.01286572590470314, 0.03639526665210724, -0.020472336560487747, 0.006664882879704237, 0.027478424832224846, 0.02680511213839054, -0.024075467139482498, 0.032173413783311844, -0.061071254312992096, 0.011646484956145287, -0.019835419952869415, -0.011591891758143902, -0.02347494661808014, -0.049024421721696854, -0.010272563435137272, 0.015467987395823002, 0.05502964183688164, -0.01103686448186636, 0.0271326694637537, 0.000533702434040606, 0.012347093783318996, 0.06347334384918213, -0.05404696986079216, 0.024803373962640762, -0.025767847895622253, 0.01278383657336235, 0.026932496577501297, 0.040180373936891556, 0.006778618320822716, 0.03379300236701965, 0.06594821810722351, -0.028715863823890686, 0.08006958663463593, 0.03235539048910141, 0.06776798516511917, -0.025877034291625023, 0.054338131099939346, 0.032428182661533356, -0.029207199811935425, -0.006100756116211414, 0.012010437436401844, 0.04997069761157036, -0.008602931164205074, -0.009480966255068779, -0.01235619280487299, -0.04483896493911743, -0.025986218824982643, 0.039379678666591644, -0.00275921612046659, -0.04727745056152344, -0.063109390437603, 0.10561905801296234, 0.021072858944535255, -0.02756941318511963, -0.006855958141386509, 0.014175956137478352, -0.010982271283864975, -0.01033625565469265, 0.009035124443471432, -0.021782565861940384, 0.059979397803545, -0.05062581226229668, -0.025585871189832687, 0.039161305874586105, -0.006801364943385124, 0.000880310486536473, 0.029734931886196136, 0.011391717940568924, 0.028734061866998672, 0.0005373988533392549, 0.0531734824180603, 0.022091925144195557, 0.001867532031610608, -0.05899672582745552, 0.02347494661808014, 0.04261885583400726, -0.007033384870737791, -0.053537435829639435, 0.019908210262656212, 0.0011942196870222688, 0.01739693619310856, 0.05484766513109207, 0.08043353259563446, 0.0116282869130373, -0.010591021738946438, -0.00993590708822012, 0.0333198644220829, 0.029898710548877716, 0.013329765759408474, 0.007888673804700375, 0.025585871189832687, 0.05637626722455025, 0.041854556649923325, -0.01022706925868988, -0.026896100491285324, 0.025658661499619484, 0.0490972138941288, -0.010372650809586048, -0.0037373388186097145, -0.0029275440610945225, 0.025858836248517036, -0.04538489505648613, -0.01504944171756506, 0.027169065549969673, 0.04662233591079712, 0.03220980986952782, -0.017769988626241684, -0.038942933082580566, -0.05517522245645523, -0.07319087535142899, -0.01235619280487299, 0.009176156483590603, -0.04149060323834419, -0.05557556822896004, 0.012383488938212395, -0.0216915775090456, 0.02653214894235134, -0.043310366570949554, -0.008834950625896454, 0.055320803076028824, -0.01364822406321764, 0.0490972138941288, 0.01580464467406273, 0.017833679914474487, 0.02358413115143776, 0.04407466575503349, -0.03537619858980179, -0.024421222507953644, -0.009863116778433323, -0.022091925144195557, -0.0186343751847744, -0.03504864126443863, 0.020162977278232574, 0.0145854027941823, 0.047241054475307465, 0.056339871138334274, 0.0310087651014328, 0.029680337756872177, 0.014003078453242779, -0.06358252465724945, -0.06314578652381897, -0.03575834631919861, -0.023220179602503777, 0.045202918350696564, -0.025221917778253555, 0.022201111540198326, 0.04967953637242317, 0.02125483565032482, -0.022910818457603455, -0.04614919796586037, -0.06653054803609848, -0.01879815384745598, -0.051390115171670914, -0.03261015936732292, -0.05717696249485016, -0.03366561979055405, 0.01602301560342312, 0.04796895757317543, -0.06321857869625092, -0.021655183285474777, -0.026095405220985413, -0.040398743003606796, 0.038578979671001434, 0.05812323838472366, 0.0027842377312481403, -0.04851488769054413, -0.05524801090359688, 0.012074129655957222, -0.012292500585317612, -0.0073381951078772545, 0.06372810900211334, 0.054338131099939346, -0.031463705003261566, -0.03843339905142784, -0.017224058508872986, -0.015513481572270393, -0.020253965631127357, 0.06103485822677612, 0.010290761478245258, 0.030663011595606804, 0.02389349229633808, 0.04065351188182831, 0.026932496577501297, 0.0889500305056572, 0.03850619122385979, -0.00729725044220686, -0.007674851454794407, 0.020799893885850906, -0.0032892220187932253, -0.002033585449680686, -0.06099846586585045, -0.05404696986079216, 0.00009503997716819867, 0.06270904093980789, 0.0145854027941823, -0.05200883373618126, 0.01624138653278351, 0.03688660264015198, 0.021072858944535255, 0.0039557102136313915, -0.06427403539419174, -0.04662233591079712, -0.06449241191148758, -0.03230079635977745, -0.0014285141369327903, -0.01039084792137146, 0.011309828609228134, -0.012774738483130932, -0.0061507998034358025, 0.011364421807229519, 0.07049763202667236, -0.015786446630954742, -0.0198536179959774, 0.003352913772687316, 0.002479427494108677, 0.012965813279151917, -0.00376918469555676, 0.01041814498603344, 0.0013250150950625539, 0.013256975449621677, 0.0888044461607933, -0.04694989323616028, -0.03042644076049328, -0.025822440162301064, -0.03552177920937538, -0.09389978647232056, 0.04254606366157532, 0.02864307351410389, 0.03279213234782219, -0.0028570282738655806, -0.026459358632564545, 0.010354452766478062, 0.035994917154312134, -0.007788586895912886, -0.026877902448177338, 0.08814933151006699, -0.0034279790706932545, -0.06176276504993439, -0.06860507279634476, 0.009076069109141827, -0.018070248886942863, -0.03435713052749634, 0.003352913772687316, 0.01396668329834938, 0.041308626532554626, 0.0012328895973041654, 0.0010514819296076894, 0.009490065276622772, 0.05648545175790787, 0.010363551788032055, -0.07781307399272919, 0.011227939277887344, -0.0014694588026031852, -0.03219161182641983, -0.05732254311442375, -0.008675721473991871, 0.01927129365503788, -0.028988828882575035, 0.07057041674852371, -0.016941996291279793, -0.034375328570604324, 0.046585939824581146, 0.02476697787642479, -0.009089717641472816, 0.08858607709407806, 0.06700368225574493, 0.029243595898151398, 0.04043513908982277, -0.008716666139662266, 0.04287362098693848, 0.07322727143764496, 0.010026895441114902, 0.03908851370215416, -0.0028706765733659267, 0.002781962975859642, 0.006182645447552204, 0.024967152625322342, -0.02922539785504341, 0.03952525928616524, -0.057686496526002884, -0.01410316489636898, -0.01429424062371254, -0.0003812972572632134, -0.044875361025333405, -0.046003613620996475, 0.004676791373640299, 0.025877034291625023, -0.002581789158284664, -0.04491175711154938, -0.028734061866998672, 0.05273674055933952, -0.05805044621229172, 0.032373588532209396, 0.025112733244895935, 0.05273674055933952, -0.04844209924340248, -0.0011805713875219226, -0.025476684793829918, -0.011400816962122917, -0.0444750152528286, -0.0042650699615478516, -0.009954105131328106, 0.0255676731467247, 0.03009888343513012, -0.02363872528076172, 0.02072710357606411, 0.0025704156141728163, 0.0015365625731647015, 0.08312678337097168, 0.10278023034334183, -0.035121429711580276, 0.011027765460312366, -0.013247876428067684, -0.0169328972697258, -0.05361022427678108, 0.008225330151617527, -0.010445441119372845, 0.016286881640553474, 0.010045093484222889, 0.040617115795612335, -0.02130942791700363, -0.02234669215977192, -0.014412525109946728, -0.04560326784849167, -0.006896902807056904, 0.02218291349709034, -0.04225490242242813, -0.018261324614286423, -0.04149060323834419, -0.050735000520944595, -0.06274543702602386, 0.010800294578075409, -0.04403826966881752, -0.0007665752782486379, -0.005008898209780455, 0.02949836291372776, -0.07693959027528763, -0.011928548105061054, -0.025877034291625023, 0.04698628559708595, -0.042982809245586395, 0.03348364308476448, 0.03999839723110199, -0.03526701033115387, -0.04225490242242813, 0.07672122120857239, -0.012820231728255749, 0.0407990925014019, 0.04687710106372833, -0.023056400939822197, 0.004351508803665638, 0.019780825823545456, -0.020363150164484978, 0.0805063247680664, -0.02363872528076172, 0.019071118906140327, 0.008434602990746498, 0.017114873975515366, -0.03788747265934944, -0.0065511479042470455, -0.010572824627161026, 0.021036462858319283, -0.004167257808148861, -0.047932565212249756, -0.060634512454271317, -0.07628447562456131, 0.008416404947638512, -0.04585803300142288, 0.04287362098693848, -0.01731504686176777, -0.011109654791653156, 0.015841038897633553, 0.040507931262254715, 0.05007988587021828, -0.015386098064482212, 0.04967953637242317, -0.021891752257943153, 0.027260053902864456, -0.011837559752166271, 0.016186794266104698, -0.05946986377239227, 0.021291229873895645, 0.024566803127527237, -0.038906536996364594, -0.029316386207938194, -0.005886934231966734, -0.014903861097991467, -0.012538168579339981, -0.019780825823545456, 0.002663678489625454, 0.017715394496917725, 0.028770457953214645, 0.024912558495998383, 0.01795196533203125, 0.05957904830574989, -0.06558426469564438, -0.015604469925165176, -0.031955040991306305, -0.023110993206501007, -0.00018453536904416978, -0.04156339168548584, -0.05648545175790787, -0.025968020781874657, -0.019453268498182297, -0.061180438846349716, 0.029625745490193367, -0.003864722326397896, 0.04076269641518593, -0.0697697252035141, -0.08450980484485626, -0.027896970510482788, 0.06911461055278778, -0.007474677637219429, -0.01173747330904007, -0.04785977303981781, -0.018425103276968002, -0.026477554813027382, -0.021727973595261574, -0.004872416146099567, 0.011719275265932083, 0.005964274052530527, 0.0040148524567484856, -0.012802034616470337, 0.012538168579339981, 0.06722205132246017, 0.0059005822986364365, 0.05663103237748146, 0.045202918350696564, -0.044220246374607086, -0.007561116479337215, 0.018516091629862785, -0.016914699226617813, 0.009353582747280598, -0.030353650450706482, -0.004312838893383741, -0.06329136341810226, -0.08523771166801453, -0.0398528166115284, 0.03271934390068054, -0.04917000234127045, -0.005386499222368002, 0.017933767288923264, -0.014812872745096684, -0.0005430855671875179, 0.05411975830793381, -0.010745702311396599, 0.03639526665210724, 0.019016526639461517, -0.02531290613114834, -0.032864924520254135, -0.05976102501153946, -0.001605941099114716, -0.0030594770796597004, -0.033993177115917206, -0.02971673384308815, 0.01512223295867443, -0.009208002127707005, -0.03042644076049328, 0.08654794096946716, 0.008662072941660881, -0.049606747925281525, 0.024239245802164078, 0.029971500858664513, -0.0016321002040058374, -0.018106644973158836, 0.030717603862285614, 0.04156339168548584, 0.029043421149253845, -0.046695124357938766, -0.013247876428067684, -0.010427243076264858, -0.005231819581240416, 0.006537499371916056, -0.007206262554973364, -0.033938582986593246, 0.037377938628196716, -0.03614049777388573, -0.060707300901412964, -0.0011908075539395213, 0.022037332877516747, 0.025221917778253555, 0.0201265811920166, 0.026659531518816948, -0.021018264815211296, -0.03861537575721741, -0.01784277893602848, -0.04178176447749138, -0.01811574399471283, -0.0867663100361824, 0.001915300847031176, -0.0160503126680851, -0.05553917586803436, -0.010991370305418968, -0.003507593646645546, -0.05026186257600784, 0.0673312395811081, 0.03020806983113289, -0.03015347756445408, 0.0014580852584913373, -0.05957904830574989, -0.02303820289671421, 0.008816752582788467, -0.003086773445829749, -0.03455730527639389, 0.05339185521006584, -0.0108457887545228, 0.016996588557958603, -0.06838670372962952, -0.029789524152874947, 0.003673647064715624, 0.014075868763029575, -0.06481996923685074, -0.022856226190924644, 0.007197163533419371, -0.05539359524846077, -0.008884994313120842, -0.035176023840904236, -0.022110123187303543, -0.06911461055278778, 0.06223590299487114, -0.05885114520788193, 0.0794144719839096, 0.0346846878528595, 0.002545393770560622, 0.06507473438978195, -0.06416485458612442, -0.05324627459049225, 0.034047771245241165, 0.07133471965789795, -0.02303820289671421, -0.006601191125810146, -0.016459759324789047, 0.027041681110858917, 0.009908610954880714, -0.00604161387309432, 0.01674182154238224, -0.00776583980768919, 0.017442431300878525, -0.0050225467421114445, 0.024585001170635223, -0.02518552355468273, -0.0605253241956234, 0.006978792138397694, -0.012310698628425598, -0.012692849151790142, 0.05979742109775543, 0.04232769459486008, 0.00783408060669899, 0.002424834528937936, 0.04200013726949692, 0.03231899440288544, 0.001416003331542015, -0.010263464413583279, 0.06478357315063477, 0.028297318145632744, -0.018070248886942863, -0.032974109053611755, 0.08698468655347824, -0.001182846142910421, 0.02078169584274292, 0.016286881640553474, -0.041526999324560165, 0.02245587855577469, -0.05906951427459717, 0.007451930548995733, 0.029516559094190598, -0.002420285018160939, 0.007806784473359585, 0.06958774477243423, 0.02756941318511963, -0.0008871345780789852, 0.015376999042928219, -0.018042951822280884, -0.0025772396475076675, -0.015486185438930988, 0.08385469019412994, -0.04170897230505943, 0.02498534880578518, -0.023402156308293343, 0.0014080418040975928, -0.01451261155307293, 0.00926259532570839, 0.045020941644907, -0.00527731329202652, 0.05328266695141792, 0.016450660303235054, -0.03191864863038063, 0.0041467854753136635, -0.00838455930352211, 0.02089088223874569, 0.04181816056370735, -0.004913360811769962, -0.06318218261003494, -0.06380090117454529, -0.02503994293510914, 0.06088927760720253, 0.05401057377457619, 0.012283401563763618, -0.009981401264667511, -0.002283802954480052, 0.014767378568649292, 0.017724493518471718, 0.058159634470939636, 0.007197163533419371, 0.018570683896541595, -0.05452010780572891, 0.03231899440288544, 0.015440691262483597, -0.002134809736162424, -0.04887884110212326, -0.016814611852169037, -0.06008858233690262, 0.01208322774618864, -0.021873554214835167, 0.009258045814931393, -0.03796026110649109, 0.05797765776515007, -0.000471148086944595, 0.01894373632967472, -0.046112801879644394, 0.04884244501590729, 0.06602101027965546, 0.02971673384308815, 0.018980130553245544, 0.004089917987585068, 0.03659543767571449, 0.016805512830615044, -0.00019932094437535852, 0.08436422795057297, 0.015195023268461227, -0.018079347908496857, 0.06103485822677612, -0.05080778896808624, -0.06591182202100754, 0.07672122120857239, 0.00036082492442801595, 0.017497023567557335, 0.021455008536577225, 0.0040557971224188805, -0.010609219782054424, -0.016341473907232285, -0.028078947216272354, -0.014121362939476967, 0.019780825823545456, -0.035230617970228195, -0.005773198790848255, -0.018506992608308792, 0.059506259858608246, -0.009089717641472816, -0.0444750152528286, -0.001522914390079677, -0.01698748953640461, 0.011773868463933468, -0.040180373936891556, -0.04662233591079712, -0.00018396669474896044, -0.05313708633184433, -0.008275373838841915, -0.027751389890909195, 0.031900450587272644, -0.027423832565546036, 0.012037733569741249, 0.006537499371916056, -0.06962414085865021, -0.02125483565032482, 0.0692237913608551, -0.013011307455599308, 0.06893263012170792, -0.007447381038218737, 0.01474918145686388, -0.026022614911198616, 0.045566871762275696, 0.03655904531478882, 0.04862407594919205, -0.052299994975328445, -0.043747108429670334, 0.0020711179822683334, 0.019689839333295822, -0.017087576910853386, 0.004442497156560421, 0.0050816889852285385, -0.027205459773540497, -0.030863184481859207, 0.004344684537500143, -0.009353582747280598, 0.0397072359919548, -0.006237238645553589, -0.022474076598882675, 0.03730514645576477, 0.02465779148042202, 0.03796026110649109, 0.03810584172606468, -0.02649575285613537, -0.0161140039563179, 0.028552085161209106, 0.008325416594743729, -0.030917778611183167, 0.05939707159996033, 0.03956165164709091, 0.004717736039310694, 0.003234629286453128, -0.01905292086303234, -0.02471238560974598, -0.09222560375928879, -0.055320803076028824, 0.0025840639136731625, -0.040289558470249176, -0.03295591101050377, -0.02518552355468273, 0.039816420525312424, 0.001219241414219141, -0.03730514645576477, -0.0025112733710557222, 0.06176276504993439, -0.013466248288750648, 0.028006156906485558, -0.03854258731007576, 0.045130129903554916 ]
6
websocket
_read_until
null
def _read_until(self): bytes = [] while True: byte = self.rfile.read(1) if ord(byte) != 0xff: bytes.append(byte) else: break return ''.join(bytes)
(self)
[ -0.03385533019900322, -0.02092122659087181, -0.08310925960540771, 0.058140505105257034, 0.017107555642724037, 0.023763492703437805, 0.008913557976484299, 0.021263018250465393, 0.060299187898635864, -0.0532115139067173, 0.06288960576057434, 0.011584927327930927, -0.00976803619414568, 0.028386669233441353, -0.00018003072182182223, 0.03556428849697113, -0.034089189022779465, 0.024141261354088783, -0.03452092409133911, 0.02047150209546089, -0.045656125992536545, 0.030347472056746483, 0.004937985446304083, -0.004256651271134615, -0.010541563853621483, 0.05832039564847946, -0.02685760334134102, -0.03158871456980705, -0.03315376117825508, 0.008571767248213291, 0.002911972114816308, -0.06612762808799744, 0.00637260964140296, 0.007636338006705046, -0.05170043557882309, 0.06587578356266022, 0.030671274289488792, -0.0011973939836025238, 0.0007493550074286759, 0.005180837120860815, -0.006201713811606169, 0.02248627133667469, 0.02673167921602726, -0.041482675820589066, -0.0392160564661026, -0.03770498186349869, 0.020039765164256096, -0.021550843492150307, 0.016298050060868263, 0.006898788269609213, 0.06972543150186539, 0.11671274900436401, -0.009516190737485886, -0.004681641701608896, 0.07418670505285263, -0.035924069583415985, -0.0644366592168808, 0.0032402717042714357, -0.06569588929414749, 0.07512214034795761, -0.03910812363028526, -0.04619579762220383, -0.005859922617673874, -0.032452188432216644, 0.018852490931749344, 0.03759704530239105, 0.027217384427785873, -0.04137473925948143, -0.007227087859064341, 0.03608597069978714, -0.030833175405859947, 0.06227798014879227, -0.04457678645849228, 0.022864041849970818, -0.032793980091810226, -0.03239822015166283, 0.016585873439908028, 0.025976141914725304, 0.0011153190862387419, 0.013033043593168259, 0.07425866276025772, 0.02876443974673748, 0.06706305593252182, 0.03702139854431152, 0.026227988302707672, -0.030617307871580124, 0.02209051325917244, 0.0005154978134669363, -0.02757716365158558, -0.0037686992436647415, -0.002612904878333211, 0.03979170694947243, -0.03164268285036087, 0.0021755467168986797, 0.08289339393377304, -0.027757054194808006, 0.0006717773503623903, 0.07569778710603714, -0.037165310233831406, -0.03211039677262306, -0.0664154514670372, 0.09987502545118332, 0.00897202268242836, -0.019068358466029167, 0.007775752805173397, -0.013078016228973866, -0.023313766345381737, 0.025130657479166985, 0.02536451444029808, -0.03059931844472885, 0.05105283111333847, -0.06414883583784103, -0.013635675422847271, 0.015362621285021305, -0.041014961898326874, -0.03556428849697113, 0.015110774897038937, 0.03444897010922432, 0.029142208397388458, -0.03720128908753395, 0.09325506538152695, -0.02633592113852501, -0.04911001771688461, 0.02595815248787403, 0.0041644577868282795, 0.005792463663965464, -0.01787208952009678, 0.016001231968402863, 0.04094300419092178, 0.003977821674197912, -0.014355235733091831, 0.06490437686443329, 0.018744556233286858, -0.012619296088814735, -0.04097898304462433, 0.027685098350048065, -0.029340088367462158, 0.052455976605415344, 0.014328252524137497, -0.05634160339832306, 0.004789575934410095, -0.002914220793172717, 0.07048097252845764, 0.02255822718143463, -0.010370668955147266, -0.005351732950657606, 0.036823518574237823, -0.027505207806825638, -0.011171179823577404, -0.00841436255723238, -0.021550843492150307, 0.027559174224734306, -0.06684719026088715, 0.03309979289770126, 0.03612194582819939, -0.00235206400975585, -0.026102064177393913, -0.002203654730692506, -0.05418292060494423, -0.06835826486349106, -0.03950388357043266, 0.008832607418298721, 0.0209931842982769, -0.04263397306203842, 0.027882976457476616, -0.0015515527920797467, -0.05590986832976341, -0.017710188403725624, 0.019572051241993904, 0.05051315948367119, 0.014957868494093418, 0.0691857635974884, 0.028224768117070198, -0.012790191918611526, -0.03045540675520897, 0.007937653921544552, -0.025274569168686867, -0.003141332184895873, 0.022810073569417, -0.0025004735216498375, -0.03151676058769226, -0.0270015150308609, -0.030185570940375328, -0.012619296088814735, 0.09692482650279999, -0.015434577129781246, -0.00021361958351917565, 0.018420754000544548, 0.017206495627760887, -0.04594394937157631, -0.05288771167397499, 0.026030108332633972, -0.008256958797574043, 0.03329767286777496, -0.007263065781444311, -0.022378338500857353, 0.050621096044778824, 0.05018935725092888, -0.013060026802122593, -0.04256201535463333, -0.038856279104948044, -0.015920281410217285, -0.015803351998329163, 0.006174730136990547, -0.06789055466651917, 0.037489112466573715, 0.022846052423119545, 0.05177239328622818, -0.0572410523891449, 0.026713691651821136, -0.045332323759794235, 0.0025724295992404222, -0.006143249571323395, -0.02209051325917244, -0.01811494119465351, -0.02523859217762947, -0.04972164332866669, -0.0034943667706102133, 0.00910694058984518, 0.03734520077705383, -0.04025942087173462, 0.029376065358519554, -0.04817458987236023, -0.01593826897442341, -0.005608076229691505, 0.010289718396961689, -0.06098277121782303, -0.004391568712890148, -0.02647983469069004, 0.01777314953505993, 0.037489112466573715, 0.020759325474500656, 0.04936186596751213, 0.02039954625070095, 0.06051505357027054, 0.03738117963075638, -0.02667771279811859, -0.004650161135941744, -0.014589093625545502, 0.013833554461598396, -0.03856845200061798, -0.013536735437810421, -0.015407593920826912, 0.026192009449005127, 0.047095246613025665, -0.04047529026865959, 0.07490626722574234, 0.036445748060941696, 0.0131049994379282, 0.022810073569417, 0.04241810366511345, -0.006224200129508972, -0.025976141914725304, -0.0353843979537487, 0.03588809072971344, -0.05040522664785385, 0.008634728379547596, -0.10570346564054489, 0.024734899401664734, 0.07332323491573334, 0.023907404392957687, -0.022702140733599663, -0.001119254156947136, -0.008787634782493114, -0.048678282648324966, 0.013392823748290539, -0.03126491233706474, 0.006102774292230606, 0.008283942937850952, 0.031156977638602257, 0.03642776235938072, -0.051016852259635925, -0.07350312918424606, 0.0020192672964185476, 0.009399261325597763, -0.04410907253623009, 0.07120053470134735, 0.0068763019517064095, 0.05130467936396599, -0.01908634789288044, -0.02392539381980896, 0.07008521258831024, 0.034556902945041656, 0.04281386360526085, 0.0006605342496186495, 0.016118159517645836, -0.029789812862873077, -0.07332323491573334, -0.010010887868702412, -0.004285883624106646, 0.038928233087062836, -0.006808842997997999, 0.000018164691937272437, -0.09332702308893204, 0.03806476294994354, -0.04328157752752304, -0.021622799336910248, -0.034808747470378876, 0.03734520077705383, -0.032847944647073746, -0.057816702872514725, -0.03207441791892052, -0.06051505357027054, 0.03390929847955704, -0.11275516450405121, -0.03313577175140381, 0.016127154231071472, -0.022864041849970818, -0.0334056057035923, -0.03993561863899231, -0.011297103017568588, -0.00001766402056091465, 0.06407687813043594, -0.02777504362165928, 0.026066087186336517, -0.003881130600348115, 0.005927381105720997, 0.09742851555347443, 0.03326169401407242, 0.009741052985191345, 0.0035978034138679504, 0.007928659208118916, -0.00837838463485241, 0.021388942375779152, -0.025598371401429176, 0.023547623306512833, -0.0018225123640149832, 0.00887308269739151, -0.021658776327967644, 0.018600644543766975, 0.0027860491536557674, -0.024788865819573402, -0.04497254267334938, 0.012169570662081242, -0.0009612881112843752, 0.0330098457634449, 0.017071576789021492, -0.021658776327967644, 0.020273622125387192, -0.029699867591261864, 0.047167204320430756, -0.036823518574237823, 0.06458057463169098, 0.016271065920591354, 0.036823518574237823, 0.026623746380209923, 0.044540807604789734, 0.016028214246034622, 0.005288771353662014, 0.02084927074611187, 0.04472069814801216, -0.01908634789288044, -0.003247017739340663, -0.0022834809496998787, 0.017602253705263138, 0.06058701127767563, -0.00980401411652565, 0.06702707707881927, 0.04065518081188202, 0.06389699131250381, 0.0017865343252196908, 0.030419427901506424, -0.019661996513605118, -0.014571104198694229, -0.05695322901010513, -0.011944707483053207, -0.03286593407392502, 0.058212459087371826, 0.004875023849308491, 0.02862052619457245, -0.08476424962282181, 0.024824844673275948, -0.04580003768205643, -0.076057568192482, -0.007015716750174761, -0.06123461574316025, -0.019122324883937836, -0.016819732263684273, 0.009399261325597763, 0.0239973496645689, -0.035528309643268585, -0.0031638185027986765, -0.06260178238153458, 0.026497822254896164, 0.007847708649933338, 0.0028310215566307306, -0.05943571403622627, -0.045979928225278854, -0.017827115952968597, 0.014616076834499836, 0.0073035410605371, 0.03979170694947243, 0.0250227227807045, 0.007667818572372198, 0.0017786640673875809, -0.018600644543766975, 0.008792132139205933, 0.00416895467787981, 0.023781482130289078, -0.00836489349603653, -0.02896231785416603, 0.0627816691994667, -0.036913465708494186, 0.03799280524253845, 0.012160575948655605, 0.04266994819045067, 0.029573945328593254, -0.07314334809780121, -0.02759515307843685, -0.024303162470459938, -0.023745503276586533, 0.024231206625699997, -0.013203938491642475, -0.04295777529478073, 0.03694944083690643, -0.027990911155939102, -0.022900018841028214, -0.06979738920927048, 0.04169854149222374, 0.02392539381980896, -0.04594394937157631, 0.020705359056591988, 0.0016842217883095145, 0.020705359056591988, 0.015470555052161217, 0.013392823748290539, 0.021155085414648056, 0.03412516787648201, -0.04299375042319298, 0.05947169288992882, 0.029969703406095505, 0.008405368775129318, -0.036445748060941696, -0.0026016617193818092, 0.009102443233132362, 0.0023767990060150623, 0.01146799884736538, -0.04943381994962692, 0.0052617876790463924, 0.026443855836987495, -0.016226094216108322, 0.03824464976787567, 0.024788865819573402, -0.01242141705006361, 0.016298050060868263, -0.020957205444574356, -0.0026196506805717945, 0.01863662153482437, -0.02523859217762947, -0.007564381696283817, -0.0400075763463974, -0.04281386360526085, -0.023493656888604164, -0.018384775146842003, 0.00015304719272535294, 0.01104525662958622, 0.023817459121346474, 0.05555008724331856, -0.04105093702673912, -0.049002084881067276, -0.025130657479166985, 0.0692577213048935, -0.020039765164256096, -0.06094679236412048, 0.036049991846084595, -0.04410907253623009, -0.012763207778334618, -0.01186375692486763, -0.04587199538946152, 0.021910622715950012, 0.004166705999523401, -0.03531244024634361, 0.011252130381762981, 0.0042836349457502365, 0.02333175577223301, -0.008463832549750805, 0.03939594700932503, 0.08893769979476929, -0.02576027251780033, -0.013015054166316986, -0.030941110104322433, -0.08533989638090134, -0.03993561863899231, -0.01948210597038269, -0.02012971043586731, -0.03687748685479164, -0.024411097168922424, -0.031013065949082375, -0.017503313720226288, -0.015839330852031708, -0.028350692242383957, 0.030311495065689087, -0.04864230379462242, 0.03117496706545353, 0.049002084881067276, -0.015299659222364426, 0.021406931802630424, 0.038028784096241, 0.014085400849580765, -0.02757716365158558, -0.014256296679377556, -0.01664883643388748, -0.02189263515174389, 0.0008398622740060091, -0.013257905840873718, -0.005630562547594309, 0.018087957054376602, -0.031067034229636192, 0.05295966938138008, 0.0019484354415908456, 0.07756864279508591, 0.05080098658800125, 0.001952932681888342, 0.002477987203747034, -0.023223821073770523, -0.026569778099656105, 0.02039954625070095, 0.019697973504662514, -0.04705927148461342, 0.04907403886318207, -0.045728083699941635, 0.051412612199783325, 0.020687369629740715, 0.02295398712158203, -0.02367354743182659, 0.03178659453988075, -0.033891309052705765, -0.03248816728591919, -0.03720128908753395, -0.028224768117070198, -0.017206495627760887, 0.0006386101013049483, 0.05752887949347496, -0.0679984837770462, -0.021676765754818916, -0.03896421194076538, 0.014499148353934288, 0.022666161879897118, -0.10045067220926285, -0.01811494119465351, 0.013221927918493748, -0.008616738952696323, 0.0460159070789814, -0.042921796441078186, -0.052527930587530136, 0.030347472056746483, -0.020111721009016037, 0.021263018250465393, 0.04914599657058716, -0.006867307238280773, -0.03777693584561348, -0.013707631267607212, -0.01153995469212532, -0.036715585738420486, 0.05896800011396408, -0.011198163032531738, -0.027954934164881706, -0.00836489349603653, -0.04946979880332947, 0.002203654730692506, 0.04986555501818657, 0.007042700424790382, -0.00815352238714695, 0.028800416737794876, -0.060227230191230774, 0.014858928509056568, -0.008504307828843594, -0.013689642772078514, -0.009848986752331257, -0.021658776327967644, -0.016990626230835915, 0.06889794021844864, -0.025598371401429176, -0.00003938611189369112, 0.05375118553638458, -0.020543457940220833, -0.004249905236065388, -0.022522250190377235, 0.016423972323536873, -0.02712743915617466, 0.020759325474500656, -0.08591555058956146, 0.02471690997481346, -0.06497633457183838, 0.003085116622969508, -0.03058132901787758, -0.0036652623675763607, 0.01434624195098877, 0.026120053604245186, 0.016253076493740082, 0.03599602356553078, -0.05170043557882309, 0.03720128908753395, -0.04371331259608269, 0.0005497893434949219, 0.00967809185385704, 0.03599602356553078, 0.008185002952814102, -0.041194848716259, 0.015173736028373241, 0.02687559276819229, 0.012727229855954647, -0.0039463406428694725, 0.007240579463541508, 0.018978413194417953, 0.022108502686023712, -0.058212459087371826, 0.02692955918610096, 0.0005157788400538266, 0.04896610602736473, -0.0030671274289488792, -0.009228366427123547, 0.023781482130289078, 0.04400113597512245, 0.002761314157396555, 0.04378527030348778, -0.016199110075831413, -0.06598372012376785, 0.0010888976976275444, 0.07476235926151276, -0.005918386857956648, 0.05443476885557175, 0.016810737550258636, 0.02883639559149742, -0.022989964112639427, 0.006179227493703365, -0.03613993525505066, -0.0024869816843420267, 0.03345957398414612, 0.038928233087062836, -0.019805908203125, 0.001947311102412641, 0.012214543297886848, 0.05188032612204552, -0.0118997348472476, 0.01274521928280592, -0.022810073569417, -0.003424659138545394, -0.007420469541102648, -0.02005775459110737, 0.03806476294994354, -0.018375782296061516, -0.0792236328125, -0.05306760221719742, -0.010046866722404957, -0.014849933795630932, 0.018780535086989403, 0.03581613302230835, -0.040691155940294266, -0.034341033548116684, 0.0025611864402890205, 0.04133876413106918, 0.052707821130752563, 0.029376065358519554, 0.01595625840127468, -0.06771066039800644, 0.09670896083116531, 0.036373794078826904, 0.0022834809496998787, -0.003395427018404007, 0.028872372582554817, -0.02881840616464615, 0.0017325672088190913, -0.029052263125777245, 0.012502367608249187, 0.02065139263868332, -0.03950388357043266, 0.021622799336910248, -0.0022025303915143013, -0.05551410838961601, -0.023889414966106415, 0.036715585738420486, -0.03313577175140381, -0.08253361284732819, 0.0271993950009346, 0.007011219393461943, 0.021586820483207703, -0.005814949981868267, 0.09030486643314362, 0.03196648508310318, 0.005666540469974279, 0.009300322271883488, -0.03471880406141281, -0.028854385018348694, 0.009201382286846638, 0.011521966196596622, -0.020039765164256096, -0.01598324254155159, 0.004171203356236219, -0.04231017082929611, 0.006404090207070112, 0.009857981465756893, -0.001857366063632071, 0.06781859695911407, -0.04263397306203842, 0.034089189022779465, -0.006201713811606169, 0.015110774897038937, -0.01863662153482437, 0.01725146733224392, 0.04216625541448593, -0.04295777529478073, 0.010388657450675964, -0.04551221430301666, -0.020867260172963142, 0.0118997348472476, -0.016990626230835915, 0.02072334848344326, -0.08224578946828842, 0.03961181640625, -0.013815565034747124, 0.05616171285510063, -0.08289339393377304, -0.057169098407030106, -0.018177902325987816, 0.01851069927215576, -0.022198447957634926, 0.002504970645532012, 0.012925108894705772, 0.03946790471673012, -0.049253929406404495, 0.04018746688961983, -0.012115603312849998, 0.07138042151927948, -0.08418860286474228, 0.02066938206553459, -0.06306949257850647, 0.04831850156188011, -0.06713501363992691, 0.05889604240655899, 0.04320961982011795, -0.018528688699007034, 0.01903238147497177, 0.022846052423119545, -0.011719845235347748, -0.014238307252526283, 0.0038743845652788877, -0.022000567987561226, 0.04231017082929611, 0.009052973240613937, -0.0007499171770177782, 0.010379662737250328, -0.017881084233522415, 0.023493656888604164, 0.025382503867149353, -0.06432873010635376, 0.0250227227807045, 0.03943192586302757, 0.001379532739520073, 0.03187653794884682, -0.012484378181397915, -0.026030108332633972, -0.021334974095225334, 0.025310548022389412, 0.006435571238398552, 0.021209051832556725, -0.0475989393889904, 0.046375688165426254, -0.004618680104613304, 0.07353910058736801, -0.01690068282186985, -0.029268130660057068, -0.000514654559083283, 0.0512327216565609, -0.047814808785915375, 0.016352016478776932, -0.03308180347084999, 0.03943192586302757 ]
7
websocket
_reply_400
null
def _reply_400(self, message): self._send_reply('400 Bad Request', [('Content-Length', str(len(message))), ('Content-Type', 'text/plain')], message) self.socket = None self.rfile = None
(self, message)
[ -0.02454221248626709, 0.03832029551267624, -0.024057826027274132, 0.03781796991825104, -0.04542462155222893, -0.03065982647240162, -0.019823936745524406, 0.0740572065114975, 0.06634291261434555, -0.06196549907326698, 0.0227481909096241, -0.00874585472047329, 0.014056157320737839, -0.014989049173891544, -0.014379081316292286, 0.02517011947929859, 0.00787126924842596, 0.05037612095475197, -0.015939880162477493, -0.051524292677640915, -0.002077701035887003, 0.027215303853154182, -0.024147527292370796, 0.023896364495158195, -0.029027266427874565, 0.057121641933918, -0.04233890399336815, 0.008261468261480331, 0.06200138106942177, -0.036203350871801376, -0.025259820744395256, -0.03126979246735573, -0.004180070012807846, 0.043989405035972595, -0.006323925219476223, 0.016083402559161186, -0.03241796791553497, -0.07272962480783463, -0.04359472170472145, -0.017778752371668816, -0.05435884743928909, 0.015527254901826382, -0.016953501850366592, 0.003150750184431672, 0.005983061157166958, -0.0223714467138052, -0.027968794107437134, -0.010997351258993149, -0.02188706025481224, 0.049479108303785324, -0.06289838999509811, 0.04703924059867859, -0.002190948696807027, -0.014567453414201736, 0.00508605083450675, 0.022156164050102234, -0.02603125013411045, 0.0328485332429409, -0.029888397082686424, -0.057229284197092056, -0.042374785989522934, 0.022120283916592598, -0.029134906828403473, -0.03015749901533127, 0.002518357476219535, -0.003834720700979233, 0.032974112778902054, -0.021295033395290375, -0.01280034240335226, -0.0228737723082304, 0.0004681274585891515, 0.04520934075117111, -0.06727579981088638, 0.043307676911354065, 0.06149905174970627, 0.00021360066602937877, -0.043738242238759995, 0.019088387489318848, 0.011598348617553711, 0.00010960349754896015, 0.07850637286901474, -0.008355654776096344, 0.03218474239110947, 0.013607651926577091, -0.017805662006139755, -0.04183657839894295, 0.02719736471772194, 0.011140872724354267, -0.04768509045243263, -0.03042660281062126, 0.0012726339045912027, 0.0051936921663582325, -0.03575484827160835, 0.00269775977358222, 0.02039802260696888, -0.014926258474588394, 0.025923609733581543, -0.004651000257581472, 0.03302793204784393, -0.03839205950498581, -0.008180737495422363, 0.07850637286901474, -0.01916014775633812, -0.02658739686012268, 0.011957152746617794, -0.0076559861190617085, 0.015060809440910816, -0.07312431186437607, 0.023340217769145966, -0.0009996063308790326, 0.02077476866543293, -0.035503681749105453, -0.0207209475338459, 0.011454826220870018, -0.04370236024260521, 0.021097691729664803, 0.035396043211221695, 0.019823936745524406, 0.0740572065114975, 0.00471379142254591, 0.03035484254360199, -0.058628618717193604, -0.02595948986709118, -0.08604126423597336, 0.028973445296287537, 0.0566193163394928, -0.046644557267427444, -0.03222062438726425, 0.04546050354838371, -0.0033570625819265842, -0.033225275576114655, 0.017680080607533455, 0.027000021189451218, 0.01329369843006134, -0.06795752793550491, -0.006265619769692421, -0.012934894300997257, 0.021869121119379997, 0.07477480918169022, -0.04456349089741707, 0.015285062603652477, -0.0012916954001411796, 0.02509835921227932, 0.005915785674005747, -0.02195882238447666, 0.04470701143145561, 0.016818949952721596, -0.02459603361785412, -0.008261468261480331, 0.007194025907665491, -0.03121597319841385, 0.013688383623957634, -0.017985064536333084, 0.02904520556330681, 0.0223714467138052, 0.058628618717193604, -0.06440536677837372, -0.06727579981088638, -0.025977429002523422, -0.00019762266310863197, -0.010351503267884254, -0.09558545798063278, 0.06354423612356186, -0.03356613963842392, 0.01706114411354065, -0.0156707763671875, -0.04431232810020447, -0.002314287703484297, 0.01229801680892706, 0.041764818131923676, -0.045783426612615585, 0.029152847826480865, -0.023089054971933365, -0.04215950146317482, 0.03814089670777321, 0.05755220726132393, 0.023214636370539665, -0.024703674018383026, -0.048008013516664505, 0.008965621702373028, 0.0049156188033521175, -0.005489705596119165, 0.004695850890129805, 0.02974487468600273, 0.014074097387492657, 0.04854621738195419, -0.019572773948311806, 0.006095187738537788, 0.034588731825351715, 0.03451697155833244, 0.017554499208927155, -0.022281745448708534, 0.008310804143548012, 0.02954753302037716, 0.0116880489513278, -0.004242860712110996, 0.05019671842455864, -0.009938878938555717, 0.08173561841249466, -0.011849511414766312, 0.012253166176378727, 0.04790037125349045, -0.013365459628403187, -0.020326262339949608, -0.03457079082727432, 0.024954836815595627, -0.017222605645656586, -0.01802094466984272, -0.07003859430551529, 0.010037549771368504, -0.04047312214970589, 0.029888397082686424, 0.04341531917452812, 0.019877757877111435, 0.02534952200949192, 0.02360932156443596, -0.023519620299339294, -0.023035233840346336, 0.0015563135966658592, 0.006660304497927427, 0.02572626620531082, -0.006776915863156319, -0.06889042258262634, -0.06942863017320633, 0.009019442833960056, 0.008813129737973213, -0.01941131241619587, -0.03666979819536209, -0.01784154213964939, 0.05830569565296173, -0.05439472943544388, 0.033476438373327255, -0.03735152631998062, -0.016056491062045097, 0.02676679939031601, -0.02115151286125183, 0.018388720229268074, -0.023842545226216316, -0.005924755707383156, 0.003013955894857645, -0.025241881608963013, -0.024631913751363754, -0.020487723872065544, 0.01607443206012249, 0.03146713599562645, -0.030372781679034233, -0.02479337528347969, 0.05482529476284981, -0.015060809440910816, 0.01124851405620575, -0.048187416046857834, 0.010225921869277954, -0.017276426777243614, 0.014190709218382835, 0.07068444043397903, -0.027035903185606003, -0.07527713477611542, -0.05565054342150688, -0.006140038371086121, 0.02348374016582966, 0.011176752857863903, 0.036328934133052826, -0.062288422137498856, 0.021061811596155167, 0.026425935328006744, 0.008925256319344044, -0.04337943717837334, 0.04456349089741707, 0.07064856588840485, 0.02219204418361187, 0.1127363070845604, -0.009992699138820171, 0.011661139316856861, 0.006229739170521498, -0.006359805818647146, 0.0505555234849453, 0.03518075868487358, 0.0070146238431334496, -0.005660137627273798, -0.009813296608626842, 0.025313641875982285, 0.008853496052324772, 0.08173561841249466, 0.03146713599562645, -0.011427916586399078, 0.054251205176115036, -0.006687214598059654, 0.046895720064640045, -0.06106849014759064, -0.026497695595026016, 0.026856500655412674, 0.06361600011587143, 0.010844859294593334, 0.009786386974155903, -0.009938878938555717, 0.0330996960401535, 0.0025699357502162457, 0.05342595651745796, 0.013338549062609673, -0.008530572056770325, 0.022299686446785927, 0.013733233325183392, 0.020290382206439972, -0.011104992590844631, -0.01802094466984272, -0.05945386737585068, 0.02027244120836258, 0.028650522232055664, -0.042195383459329605, -0.033422619104385376, -0.013625592924654484, 0.005368608981370926, -0.025439223274588585, -0.03164653852581978, 0.08338611572980881, 0.0695003867149353, 0.05019671842455864, 0.017303336411714554, 0.005435884930193424, 0.01960865408182144, 0.03170035779476166, -0.05676283687353134, 0.03417610749602318, 0.03417610749602318, 0.007144690025597811, 0.037495046854019165, 0.0290631465613842, -0.010808979161083698, -0.010145191103219986, -0.0037068966776132584, 0.06558942049741745, 0.007490039337426424, -0.06401067972183228, -0.10089576244354248, 0.03745916858315468, -0.06756284832954407, 0.0281840767711401, -0.01761729083955288, -0.0038145380094647408, -0.031198032200336456, -0.014011306688189507, -0.01654984802007675, 0.08525189757347107, -0.00508605083450675, 0.05504057556390762, -0.013544861227273941, -0.01100632082670927, -0.022963473573327065, -0.006314955186098814, 0.026300353929400444, -0.03245384618639946, 0.013562801294028759, 0.025080418214201927, 0.018361808732151985, 0.029942216351628304, -0.009005987085402012, -0.0356292650103569, 0.009768446907401085, 0.00008416482887696475, 0.0457475446164608, -0.0414418950676918, 0.004043275490403175, -0.01768905110657215, 0.016971442848443985, -0.04933558776974678, 0.006996683310717344, -0.03148507699370384, -0.003188872942700982, -0.057157520204782486, 0.06440536677837372, -0.052206020802259445, -0.05464589223265648, -0.048115652054548264, 0.018164467066526413, -0.0032180259004235268, 0.0009042989113368094, -0.0662352666258812, -0.02138473466038704, -0.051021967083215714, 0.020559486001729965, 0.02057742513716221, -0.05977679416537285, -0.008418445475399494, -0.06329307705163956, 0.027466466650366783, -0.05884390324354172, -0.017455827444791794, -0.002075458411127329, -0.03318939730525017, 0.031431253999471664, 0.021169451996684074, -0.06038676202297211, 0.0664864331483841, 0.021725598722696304, -0.058951541781425476, -0.004514206200838089, -0.016711309552192688, -0.005651167593896389, -0.00409485399723053, -0.042015980929136276, -0.04585518687963486, 0.04291299358010292, -0.11546321958303452, 0.0515601746737957, 0.01072824839502573, 0.00046139987534843385, 0.008310804143548012, 0.06035088002681732, 0.0036149530205875635, 0.032794710248708725, 0.009920937940478325, 0.01898074708878994, 0.025313641875982285, 0.018873104825615883, -0.009562133811414242, 0.03275883197784424, -0.003363790223374963, -0.004406564868986607, 0.001945391995832324, 0.02769969031214714, 0.01761729083955288, 0.013966456986963749, 0.09537018090486526, 0.02472161501646042, -0.041693057864904404, 0.01551828533411026, -0.05464589223265648, -0.0017132904613390565, 0.02107975073158741, -0.03602394834160805, -0.03957611322402954, 0.0353781022131443, 0.0076290760189294815, -0.025259820744395256, -0.024470452219247818, -0.0026775768492370844, -0.060745563358068466, -0.01576944813132286, -0.012037883512675762, 0.00397375738248229, 0.06921334564685822, -0.02800467424094677, 0.04298475384712219, 0.00751246465370059, 0.058879781514406204, -0.06232430413365364, -0.008575422689318657, 0.0036553186364471912, 0.012925923801958561, 0.02967311441898346, 0.00827940832823515, -0.05547114089131355, 0.0116880489513278, -0.011526587419211864, 0.008180737495422363, 0.009571104310452938, -0.019680414348840714, 0.030211320146918297, -0.02979869581758976, -0.032920293509960175, 0.018388720229268074, 0.06002795696258545, -0.04352295771241188, -0.04538873955607414, 0.00590233039110899, 0.06078144535422325, -0.014172769151628017, -0.012082734145224094, 0.009275090880692005, -0.020003339275717735, -0.04797213152050972, -0.017384067177772522, -0.012567119672894478, -0.012262136675417423, 0.02762793004512787, -0.0080237602815032, -0.0011291122063994408, 0.021779419854283333, 0.022479088976979256, 0.006619939114898443, 0.04678807780146599, -0.053210675716400146, 0.03419404849410057, -0.017150845378637314, 0.014432902447879314, -0.04969439283013344, -0.001687501324340701, -0.03821265697479248, -0.024649854749441147, -0.026497695595026016, 0.06314955651760101, -0.0038055679760873318, -0.0055300709791481495, -0.02949371188879013, 0.06271898746490479, -0.04154953733086586, -0.04226714372634888, 0.01647808589041233, -0.011975092813372612, -0.049371469765901566, -0.02466779388487339, -0.11811836808919907, -0.06002795696258545, 0.012513299472630024, 0.022120283916592598, -0.014199679717421532, 0.0624319463968277, 0.03523458167910576, 0.05378476157784462, -0.01329369843006134, -0.04259006679058075, 0.04215950146317482, 0.023196697235107422, 0.024775436148047447, -0.015464464202523232, 0.015249181538820267, 0.007054989226162434, 0.00839153490960598, 0.008158312179148197, 0.017070112749934196, 0.04097544774413109, 0.010064460337162018, 0.00031367343035526574, -0.026372114196419716, 0.016146192327141762, -0.05823393538594246, -0.01153555791825056, -0.018657822161912918, 0.029134906828403473, 0.019070448353886604, 0.012136554345488548, 0.051847219467163086, 0.08941402286291122, -0.01424452941864729, 0.00034787197364494205, 0.020559486001729965, 0.012809312902390957, -0.011158812791109085, -0.09379144012928009, -0.01811961643397808, 0.013195027597248554, 0.054753534495830536, -0.051775459200143814, -0.018998686224222183, -0.055722303688526154, -0.024147527292370796, -0.07222729921340942, 0.0057902042753994465, -0.007777082733809948, -0.035396043211221695, -0.031808000057935715, -0.011078082025051117, -0.013822934590280056, -0.031126271933317184, -0.044922295957803726, 0.01489934790879488, 0.0341222882270813, 0.018765464425086975, 0.005624257028102875, 0.016845861449837685, 0.0233760979026556, -0.01632559485733509, 0.0457475446164608, -0.027305005118250847, 0.00011906415602425113, 0.04147777333855629, -0.029134906828403473, -0.007552830036729574, -0.06598410755395889, 0.0017525346484035254, -0.018747523427009583, 0.007261301390826702, 0.03643657639622688, 0.03810501471161842, 0.009284060448408127, -0.05217014253139496, -0.017357157543301582, 0.013562801294028759, -0.002563208108767867, -0.010414293967187405, 0.04406116530299187, 0.0022156164050102234, -0.02694620192050934, -0.03634687513113022, -0.06002795696258545, 0.00428322609513998, -0.015231241472065449, 0.009023928083479404, 0.0011750840349122882, -0.0035858002956956625, -0.03098274953663349, -0.06063792482018471, 0.028094375506043434, -0.06820869445800781, 0.013177087530493736, 0.10886121541261673, 0.019877757877111435, -0.02305317483842373, -0.026479756459593773, 0.0505555234849453, 0.0200930405408144, 0.08991635590791702, 0.025116300210356712, 0.051524292677640915, 0.0070235938765108585, 0.013526921160519123, -0.008037216030061245, 0.0391814261674881, -0.010521935299038887, -0.017419947311282158, -0.0331176333129406, -0.032489728182554245, -0.01329369843006134, -0.02181529998779297, -0.09271502494812012, 0.013876755721867085, 0.031233912333846092, 0.04933558776974678, 0.04029371961951256, 0.028345538303256035, 0.011759810149669647, -0.06820869445800781, -0.03986315429210663, -0.012728582136332989, -0.00025382600142620504, 0.08108976483345032, -0.0007506858091801405, 0.03806913271546364, -0.12077352404594421, -0.004516448825597763, -0.040401361882686615, 0.07122264802455902, 0.002345683053135872, 0.023645201697945595, 0.015590045601129532, 0.027233244851231575, 0.004718276206403971, 0.004875252954661846, -0.020128920674324036, 0.05260070785880089, 0.06106849014759064, 0.01036047376692295, -0.0760665088891983, -0.06856749951839447, -0.053820643573999405, 0.02127709425985813, -0.00039973040111362934, -0.020613305270671844, 0.05439472943544388, 0.0016101341461762786, 0.03781796991825104, -0.004906648304313421, 0.00994784850627184, -0.008144857361912727, 0.009974759072065353, 0.028722282499074936, -0.0356292650103569, -0.006642364431172609, 0.009284060448408127, -0.027789391577243805, 0.011158812791109085, -0.015015958808362484, 0.06881865859031677, -0.027556167915463448, 0.004276498686522245, 0.01885516569018364, 0.038858503103256226, -0.09537018090486526, 0.03338673710823059, -0.027968794107437134, 0.0032225109171122313, -0.018998686224222183, -0.00113864301238209, 0.04822329431772232, 0.005292362999171019, 0.01996745727956295, 0.032543547451496124, -0.039899036288261414, 0.028919624164700508, 0.048008013516664505, -0.008588877506554127, 0.006978743243962526, -0.012100674211978912, -0.058341577649116516, 0.014684065245091915, 0.038356177508831024, 0.006898012477904558, 0.02813025563955307, -0.009777416475117207, -0.003868358675390482, 0.000537926098331809, -0.034893717616796494, -0.02974487468600273, 0.039970796555280685, -0.0894857868552208, -0.023106995970010757, -0.02206646278500557, -0.06598410755395889, -0.006799341179430485, 0.04804389178752899, 0.02057742513716221, 0.014504662714898586, -0.00806412659585476, 0.026874439790844917, -0.024649854749441147, -0.03710036352276802, -0.03227444365620613, 0.0037382920272648335, -0.07728644460439682, 0.01946513168513775, 0.008046185597777367, -0.0017200179863721132, 0.013984397053718567, 0.0010539875365793705, -0.007427248638123274, 0.01477376651018858, -0.025259820744395256, -0.009409641847014427, -0.005368608981370926, 0.0070774145424366, -0.04513757675886154, 0.02929637022316456, 0.011015291325747967, 0.019626593217253685, -0.008248013444244862, -0.06939274817705154, -0.013006655499339104, -0.06070968508720398, 0.028327597305178642, 0.011320275254547596, 0.054000042378902435, 0.00832874421030283, -0.015966789796948433, -0.007799508050084114, 0.021564137190580368, -0.028148194774985313, -0.008207648061215878, 0.06078144535422325, 0.09917350113391876, 0.06361600011587143, -0.037674449384212494, 0.03153889626264572, -0.027179423719644547, -0.01935749128460884, -0.03507312014698982, 0.03518075868487358, 0.0024533241521567106, 0.04409704729914665, -0.020505664870142937, 0.04815153405070305, -0.004272013437002897, -0.03832029551267624, -0.01267476100474596, 0.04779272899031639, -0.015688717365264893, -0.020756827667355537, -0.028471119701862335, 0.038858503103256226, 0.022209985181689262, 0.022084403783082962, 0.010225921869277954, 0.05163193494081497, 0.006750005297362804, 0.008180737495422363, -0.030211320146918297, 0.05816217511892319, 0.01670233905315399, 0.0697515532374382 ]
8
websocket
_send_reply
null
def _send_reply(self, status, headers, message=None): self.status = status self.headers_sent = True towrite = ['HTTP/1.1 %s\r\n' % self.status] for header in headers: towrite.append("%s: %s\r\n" % header) towrite.append("\r\n") if message: towrite.append(message) self.socket.sendall(''.join(towrite))
(self, status, headers, message=None)
[ -0.0509067103266716, 0.02246098965406418, -0.10590055584907532, -0.03526977449655533, 0.025362124666571617, -0.029978396371006966, -0.07984507828950882, 0.08320236951112747, 0.016914164647459984, 0.0071342382580041885, -0.016731703653931618, -0.037057895213365555, 0.03156581148505211, -0.01390355359762907, -0.005784024018794298, -0.023865941911935806, 0.052001480013132095, -0.010865571908652782, -0.004292402882128954, -0.02738744579255581, 0.024084895849227905, 0.06747420132160187, 0.03621857613325119, 0.024796495214104652, -0.026000740006566048, 0.007645129691809416, -0.01806367188692093, -0.04784136265516281, 0.0010001162299886346, -0.009542727842926979, -0.021420961245894432, -0.06842300295829773, -0.014952706173062325, 0.002211203332990408, 0.023537511005997658, 0.04390019550919533, -0.020727606490254402, -0.05338818579912186, 0.025964247062802315, 0.04349878057837486, -0.056015629321336746, 0.01524464413523674, -0.008046545088291168, -0.005378047935664654, -0.004328894894570112, 0.005916308611631393, -0.011540679261088371, 0.0416741669178009, 0.09349318593740463, 0.025964247062802315, -0.05867956578731537, 0.0595918707549572, 0.004600306507200003, -0.06462780386209488, -0.016676966100931168, 0.04076186195015907, 0.014259353280067444, -0.0028760468121618032, -0.027953075245022774, -0.03225916251540184, -0.0149253373965621, 0.002192957093939185, 0.023008374497294426, -0.010756095871329308, -0.0030357004143297672, -0.016248181462287903, 0.0068559846840798855, 0.021129021421074867, 0.007631445303559303, -0.014843229204416275, 0.004445214290171862, -0.011896478943526745, -0.012525970116257668, -0.02481474168598652, 0.022898897528648376, 0.0501403734087944, -0.0918145403265953, 0.008288306184113026, 0.01945037767291069, -0.015144290402531624, 0.034704145044088364, -0.024960709735751152, 0.05539526045322418, 0.0012874928070232272, -0.021712899208068848, -0.01433233730494976, -0.04565182700753212, -0.03636454418301582, -0.05659950524568558, -0.017324702814221382, -0.011349095031619072, -0.03532451391220093, -0.013502138666808605, -0.0599202997982502, 0.006687207613140345, 0.01610221341252327, 0.019705824553966522, -0.023318558931350708, -0.0337006077170372, -0.006354216020554304, -0.06072312965989113, 0.03131036460399628, -0.0038408110849559307, -0.021019546315073967, 0.03101842664182186, -0.027788860723376274, -0.02620144747197628, -0.041017308831214905, -0.0004632807394955307, 0.026128463447093964, -0.003108684904873371, -0.035397499799728394, -0.028482213616371155, -0.07991806417703629, 0.02749692276120186, 0.0035716805141419172, 0.03680245205760002, -0.013538630679249763, -0.003786072600632906, -0.02229677513241768, 0.052329909056425095, -0.031474579125642776, 0.03882777318358421, -0.027715876698493958, -0.044338103383779526, 0.024449817836284637, 0.0014893406769260764, -0.033134978264570236, 0.038718294352293015, -0.029193812981247902, -0.025635818019509315, 0.045688316226005554, 0.03676595911383629, 0.048790160566568375, 0.03882777318358421, 0.02335505001246929, -0.10991470515727997, 0.026456892490386963, 0.08809233456850052, 0.01527201384305954, 0.031912487000226974, -0.09101171046495438, -0.03627331182360649, 0.013420031405985355, 0.03176651895046234, -0.0033504462335258722, -0.01983354613184929, 0.027296215295791626, -0.024230865761637688, -0.015463598072528839, -0.05174603313207626, 0.012507724575698376, -0.013246692717075348, 0.024887725710868835, -0.036893680691719055, 0.025708802044391632, 0.0018668074626475573, -0.028646430000662804, 0.003355007851496339, 0.04152819886803627, 0.02224203571677208, -0.04163767769932747, 0.01398566085845232, -0.01175963319838047, 0.011878232471644878, 0.009259912185370922, -0.030671749264001846, 0.03242337703704834, 0.008922358974814415, 0.018446840345859528, 0.010354680940508842, -0.019359147176146507, -0.004554690793156624, 0.0035808037500828505, 0.03773300349712372, -0.0043083680793643, 0.01498007494956255, 0.02165815979242325, -0.047987330704927444, -0.014879721216857433, -0.009679573588073254, -0.012945631518959999, -0.030361564829945564, -0.020161977037787437, -0.009305528365075588, 0.04561533406376839, 0.03280654922127724, 0.0019261074485257268, -0.0006830896018072963, 0.013502138666808605, 0.007334945723414421, -0.036474019289016724, 0.004867156036198139, 0.05065126717090607, 0.022971881553530693, -0.008872182108461857, 0.038243893533945084, -0.07013813406229019, 0.07415228337049484, 0.02946750447154045, -0.02990541234612465, -0.005879816599190235, 0.011622786521911621, 0.02169465273618698, 0.03988604620099068, 0.03944813832640648, -0.007097745779901743, -0.029923658818006516, 0.02379295788705349, -0.040105000138282776, -0.02030794695019722, 0.0002852383768185973, -0.005742970388382673, 0.03634629771113396, -0.00967045035213232, 0.0022146243136376143, -0.010892941616475582, -0.029485750943422318, 0.026219693943858147, -0.05951888486742973, -0.009296405129134655, -0.004552410449832678, -0.042476996779441833, 0.003120088716968894, 0.009127628058195114, -0.0032158810645341873, -0.02047216147184372, -0.02368348091840744, -0.0020834803581237793, 0.041126783937215805, 0.026986030861735344, 0.04174715280532837, -0.024851232767105103, 0.0014323215000331402, -0.047293975949287415, -0.036565251648426056, -0.04207558184862137, 0.039521124213933945, -0.04379072040319443, 0.06214632838964462, -0.01417724508792162, -0.004319772124290466, 0.007891452871263027, -0.0029878043569624424, 0.031912487000226974, -0.04572480916976929, -0.012243155390024185, 0.014049522578716278, -0.010673987679183483, 0.016996273770928383, -0.07272908836603165, -0.048680681735277176, -0.021019546315073967, -0.03955761715769768, 0.021895360201597214, -0.0038088802248239517, -0.038973741233348846, 0.013456523418426514, -0.011248741298913956, 0.009661327116191387, -0.015153413638472557, -0.0024449818301945925, -0.050614774227142334, 0.00988940428942442, 0.03641928359866142, 0.002816746709868312, -0.07021111994981766, 0.04623570293188095, -0.007430737838149071, 0.04116327688097954, 0.11319901049137115, 0.003311673179268837, -0.05546824634075165, -0.009451497346162796, -0.010135727003216743, 0.06116103753447533, 0.015819396823644638, -0.040798354893922806, -0.0748821273446083, -0.0417836457490921, 0.019924776628613472, -0.009770804084837437, 0.05116215720772743, -0.03516029939055443, 0.022169051691889763, 0.06510220468044281, 0.0340290367603302, 0.08181565999984741, 0.024249110370874405, -0.03516029939055443, 0.01654924266040325, 0.08393221348524094, 0.08064790815114975, -0.013611615635454655, -0.007480914704501629, -0.0005088960751891136, -0.012097186408936977, 0.03532451391220093, 0.003893268760293722, -0.01470638345927, 0.009136751294136047, -0.013620738871395588, 0.017087504267692566, -0.05769427493214607, -0.035233281552791595, -0.04780486971139908, 0.010008004494011402, 0.02476000227034092, 0.012608078308403492, -0.05499384552240372, -0.021293237805366516, 0.022898897528648376, -0.023592250421643257, 0.0340837761759758, 0.09721539914608002, 0.02476000227034092, -0.010254327207803726, -0.026073724031448364, 0.009246228262782097, 0.023008374497294426, -0.016010981053113937, -0.012060694396495819, 0.04050641506910324, 0.028737660497426987, 0.01092943362891674, 0.03787897154688835, 0.02246098965406418, -0.009962388314306736, 0.020234961062669754, -0.006714576855301857, 0.017999811097979546, -0.018519824370741844, -0.0037723879795521498, -0.04481250420212746, 0.02808079868555069, -0.017945071682333946, 0.059080980718135834, 0.0766337588429451, 0.01803630217909813, -0.00241761258803308, -0.0505782812833786, 0.020289700478315353, 0.059664856642484665, 0.014432691037654877, 0.046965546905994415, 0.002946750493720174, -0.04506794735789299, 0.03995903208851814, -0.009259912185370922, 0.03579891473054886, -0.05878904089331627, -0.0013274061493575573, 0.09254438430070877, 0.01621168851852417, 0.030252089723944664, -0.02041742391884327, -0.02974119782447815, -0.004830663558095694, 0.0010120902443304658, 0.006044031586498022, -0.040323954075574875, 0.06546712666749954, -0.005788585636764765, 0.036090850830078125, -0.07626883685588837, 0.04379072040319443, 0.004356264136731625, 0.035506974905729294, 0.006577731110155582, 0.007307576481252909, -0.004693817812949419, -0.027478676289319992, -0.03247811645269394, 0.03236864134669304, 0.01160454098135233, 0.02235151268541813, -0.04816979169845581, -0.010710480622947216, -0.009150436148047447, -0.066853828728199, 0.027132000774145126, -0.06262072920799255, -0.004020991735160351, -0.016996273770928383, 0.0251249261200428, -0.011257864534854889, 0.10670338571071625, -0.0029900851659476757, -0.04678308591246605, 0.022004837170243263, -0.03154756501317024, -0.039411649107933044, -0.006180877797305584, -0.02105603739619255, -0.08874919265508652, -0.011540679261088371, 0.008817443624138832, 0.0023948049638420343, 0.006308600772172213, -0.08590279519557953, 0.02395717240869999, 0.02501544915139675, -0.09546376764774323, 0.07648778706789017, -0.021566929295659065, 0.029139075428247452, -0.021950097754597664, -0.02036268450319767, 0.03977657109498978, 0.0013217042433097959, -0.01566430553793907, 0.02642040140926838, 0.014204614795744419, 0.0587160550057888, -0.01577378250658512, 0.04379072040319443, -0.05419101566076279, -0.041236262768507004, 0.019486870616674423, 0.02598249353468418, -0.019359147176146507, -0.010819956660270691, 0.05740233510732651, 0.05524929240345955, -0.018437717109918594, 0.013930922374129295, 0.009734312072396278, -0.03955761715769768, -0.014149876311421394, -0.027040770277380943, -0.04349878057837486, -0.0067921229638159275, -0.01917668618261814, -0.0051819016225636005, 0.0427689366042614, -0.0009864316089078784, -0.03076297976076603, -0.03820740431547165, -0.03842635825276375, 0.006477377377450466, 0.004509075544774532, -0.01577378250658512, -0.07192625850439072, 0.00024119106819853187, 0.039995525032281876, 0.020326191559433937, -0.0003783221764024347, -0.11298006027936935, -0.01344740018248558, 0.02733270823955536, -0.04871717467904091, -0.05670898035168648, 0.015545705333352089, 0.00913218967616558, 0.010829079896211624, 0.004547848831862211, 0.0019625998102128506, 0.01582852005958557, -0.056453537195920944, -0.04930105060338974, 0.03141983970999718, 0.009998881258070469, -0.05773076415061951, 0.04083484783768654, -0.022388005629181862, -0.018902994692325592, 0.036090850830078125, -0.0047075022011995316, 0.016202567145228386, -0.019797055050730705, -0.0062812315300107, -0.0006619925261475146, -0.00899078231304884, 0.03652875870466232, 0.017324702814221382, 0.0344669446349144, -0.03486835956573486, 0.020216716453433037, -0.024997202679514885, -0.024905972182750702, -0.004178364295512438, 0.0013981099473312497, 0.02786184474825859, -0.0513446182012558, 0.060577161610126495, -0.020764099434018135, 0.07480914890766144, -0.014186368323862553, 0.020216716453433037, -0.022752927616238594, 0.08561085909605026, -0.01757102645933628, 0.0019067209213972092, -0.014186368323862553, 0.013620738871395588, 0.002880608197301626, -0.07378736138343811, -0.010372926481068134, -0.042732443660497665, -0.0835672914981842, 0.021202007308602333, -0.06626995652914047, -0.03868180140852928, 0.05711039528250694, 0.02915732003748417, 0.015609567053616047, 0.04072536900639534, 0.04984843730926514, 0.004068887792527676, -0.012525970116257668, -0.00494470214471221, 0.00790057610720396, -0.03141983970999718, -0.0105827571824193, 0.020490407943725586, 0.02700427733361721, -0.00969782005995512, 0.026000740006566048, -0.01645801216363907, -0.026383908465504646, 0.00831567496061325, 0.015326752327382565, -0.013584245927631855, -0.0010748113272711635, -0.03054402768611908, 0.03798845037817955, -0.053351692855358124, 0.036401037126779556, 0.05831464007496834, 0.030927196145057678, -0.003083596471697092, 0.05284080281853676, 0.03922918811440468, -0.016467135399580002, 0.05305975675582886, 0.021074283868074417, 0.04528690129518509, -0.0008718230528756976, 0.006769315339624882, 0.00475311791524291, 0.027040770277380943, 0.03101842664182186, -0.021877113729715347, -0.046746592968702316, -0.07101394981145859, -0.016521872952580452, 0.03773300349712372, -0.03556171432137489, 0.007727237418293953, -0.07517407089471817, -0.03526977449655533, -0.012963877990841866, 0.015071306377649307, 0.014779367484152317, -0.07933418452739716, 0.028172029182314873, -0.0071342382580041885, -0.031638793647289276, 0.04893612861633301, -0.011111895553767681, 0.01301861647516489, -0.010445911437273026, 0.05466541647911072, 0.029394520446658134, 0.002657093107700348, 0.036893680691719055, 0.010026250034570694, -0.013675476424396038, -0.012142801657319069, -0.034649405628442764, 0.016010981053113937, 0.039411649107933044, -0.03693017363548279, -0.01001712679862976, 0.029540490359067917, -0.008698844350874424, 0.022698190063238144, 0.007845837622880936, 0.0024563856422901154, 0.04269595071673393, -0.02888362854719162, -0.02041742391884327, -0.0340290367603302, -0.08101283013820648, -0.026858307421207428, 0.0212202537804842, -0.01615695096552372, 0.012115432880818844, 0.03098193369805813, -0.01834648661315441, -0.056344058364629745, -0.00116889295168221, 0.047075022011995316, -0.07345893234014511, 0.06418989598751068, -0.0069791460409760475, -0.01165015622973442, 0.023026620969176292, -0.013036862015724182, 0.05594264343380928, 0.07342243939638138, 0.03654700517654419, 0.009551851078867912, 0.028007814660668373, 0.034320976585149765, -0.047439947724342346, -0.027661137282848358, 0.025909509509801865, -0.0170692577958107, -0.03733158856630325, -0.028172029182314873, 0.028172029182314873, 0.008274621330201626, -0.01726084202528, -0.029996642842888832, 0.014606029726564884, -0.012161048129200935, 0.050505295395851135, -0.012443862855434418, 0.005674547515809536, 0.00691072316840291, -0.09101171046495438, -0.053935568779706955, -0.002171289874240756, -0.0293580275028944, 0.08145073801279068, 0.05685495212674141, 0.003594488138332963, -0.026000740006566048, -0.027989568188786507, -0.036036111414432526, 0.06491973996162415, -0.015454474836587906, 0.008858497254550457, 0.025216156616806984, -0.01977880857884884, -0.03214968740940094, 0.004816979169845581, -0.009533604606986046, -0.016786443069577217, 0.02625618502497673, -0.005939116235822439, -0.021475698798894882, -0.08582980930805206, -0.03787897154688835, 0.031638793647289276, 0.008374975062906742, -0.018273502588272095, 0.01840122602880001, -0.03882777318358421, 0.017917701974511147, 0.021822376176714897, 0.029759442433714867, 0.07006514817476273, 0.031219134107232094, 0.07119641453027725, -0.03076297976076603, 0.006559485103935003, 0.02249748259782791, -0.025745293125510216, 0.017352072522044182, -0.06335057318210602, 0.1009376123547554, -0.04459355026483536, -0.037477556616067886, 0.0343574695289135, -0.0055650705471634865, -0.07765554636716843, 0.025763539597392082, -0.06550361961126328, 0.06178140640258789, -0.00450223358348012, -0.0007195819052867591, 0.032824791967868805, 0.027989568188786507, 0.05419101566076279, -0.003010611981153488, -0.04612622410058975, -0.025763539597392082, -0.006345092784613371, 0.019377393648028374, -0.0037723879795521498, 0.005952801089733839, -0.055431753396987915, 0.05619809031486511, -0.018218763172626495, 0.026675846427679062, 0.030124366283416748, -0.06367900222539902, -0.04601674899458885, -0.012845277786254883, -0.053716614842414856, 0.01379407662898302, 0.0664159283041954, -0.039302170276641846, 0.01811840943992138, -0.028573444113135338, -0.07137887179851532, -0.015874136239290237, 0.0026730585377663374, 0.024030158296227455, -0.005642616655677557, -0.02224203571677208, 0.0023948049638420343, -0.008292867802083492, -0.023592250421643257, 0.03773300349712372, 0.00969782005995512, 0.017196981236338615, -0.0049675097689032555, -0.00943325087428093, 0.030142612755298615, 0.04995791241526604, 0.015646059066057205, -0.02733270823955536, 0.018547194078564644, 0.025143170729279518, -0.003699403489008546, 0.01561869028955698, 0.051089171320199966, -0.0334816537797451, -0.0040437993593513966, 0.04149170592427254, -0.009725188836455345, 0.005788585636764765, -0.083786241710186, -0.007115991786122322, -0.001856544055044651, -0.029649967327713966, -0.0055650705471634865, -0.005437347572296858, 0.021512191742658615, -0.02030794695019722, 0.051417604088783264, -0.04174715280532837, 0.021621668711304665, 0.0586065798997879, 0.0417836457490921, 0.038280386477708817, 0.09889404475688934, -0.025088433176279068, -0.02609197050333023, 0.04871717467904091, -0.066525399684906, -0.039302170276641846, -0.029193812981247902, 0.013830568641424179, -0.008297429420053959, 0.02459578774869442, 0.015235520899295807, 0.03682069852948189, -0.02486947923898697, -0.012078939937055111, 0.011896478943526745, 0.09524481743574142, 0.00043762210407294333, -0.05214744806289673, 0.058752547949552536, 0.015317629091441631, -0.007375999353826046, 0.014533044770359993, 0.01825525611639023, -0.014514799229800701, 0.020399177446961403, -0.06039470061659813, 0.06532115489244461, 0.010902064852416515, 0.05813217908143997 ]
9
websocket
close
null
def close(self): # XXX implement graceful close with 0xFF frame if self.socket is not None: try: self.socket.close() except Exception: pass self.socket = None self.rfile = None
(self)
[ 0.007682926952838898, -0.054943498224020004, -0.016643404960632324, 0.04507552087306976, -0.049657080322504044, -0.057903893291950226, -0.05441485717892647, 0.09325240552425385, -0.008537564426660538, -0.016229301691055298, -0.006141054909676313, -0.0436658076941967, 0.03767453506588936, -0.016440758481621742, 0.0030837436206638813, 0.040529198944568634, -0.02979777380824089, -0.03282865136861801, -0.0027709638234227896, -0.007343715056777, -0.04088163003325462, 0.008304080925881863, -0.03869657590985298, -0.07915528863668442, 0.004376713186502457, 0.06079380214214325, -0.039859589189291, 0.03395642340183258, -0.030784571543335915, -0.022396788001060486, -0.058679234236478806, -0.021304262802004814, 0.02618538774549961, 0.05360427498817444, 0.010564024560153484, 0.02424703538417816, -0.05920787528157234, -0.06051185727119446, 0.019559744745492935, 0.029357237741351128, -0.0030418927781283855, -0.025498153641819954, -0.01864343322813511, -0.021727176383137703, -0.009083827026188374, 0.00552430609241128, -0.0417979396879673, 0.03795647621154785, 0.0352604053914547, -0.02070513553917408, -0.033463023602962494, 0.05325184389948845, -0.029885880649089813, 0.005387740675359964, 0.04800067096948624, 0.03180661052465439, 0.029515830799937248, 0.057903893291950226, -0.020370328798890114, -0.062097784131765366, 0.018167654052376747, 0.013665389269590378, -0.06847672909498215, -0.03464365750551224, 0.009665333665907383, 0.033850692212581635, 0.00691639631986618, 0.05667039379477501, 0.053780488669872284, 0.01588568463921547, -0.007837113924324512, 0.0285114124417305, -0.0070485565811395645, 0.0629083663225174, 0.0147050516679883, -0.02357742190361023, -0.00020126932940911502, -0.00044796880683861673, 0.009859168902039528, -0.02595631033182144, 0.03270530328154564, 0.06340176612138748, -0.010176354087889194, 0.04246755316853523, 0.03823842108249664, -0.059419333934783936, 0.05166592076420784, 0.023172130808234215, -0.06907585263252258, 0.017348259687423706, -0.004956016317009926, 0.06350749731063843, -0.03448506444692612, -0.024687569588422775, 0.04370105266571045, -0.03006209433078766, -0.05015048012137413, 0.026749271899461746, -0.006524320226162672, -0.052265048027038574, -0.05275844782590866, 0.019365908578038216, -0.07066178321838379, -0.03483749181032181, 0.02292543090879917, 0.020035522058606148, -0.0033062135335057974, -0.02734839916229248, -0.0761244148015976, -0.018361490219831467, -0.03300486505031586, -0.05363951623439789, -0.0003868446219712496, 0.0437362939119339, -0.02170955389738083, -0.022167710587382317, -0.020634649321436882, 0.04898746684193611, 0.022396788001060486, 0.012942912057042122, -0.0005214830744080245, 0.018502460792660713, -0.04257328063249588, -0.0331105962395668, -0.0180971696972847, 0.08105839788913727, 0.0009521057945676148, -0.003405333962291479, 0.009171933867037296, 0.025850581005215645, -0.007440632674843073, 0.06181584298610687, 0.016229301691055298, 0.03682870790362358, -0.021973874419927597, 0.001319401664659381, -0.005568359512835741, 0.026819758117198944, -0.0018954009283334017, -0.04137502610683441, -0.017506852746009827, 0.014379055239260197, 0.025269076228141785, -0.0019394544651731849, 0.03126034885644913, 0.06833575665950775, -0.004722532816231251, -0.03911948949098587, -0.07682926952838898, -0.04715484380722046, -0.002502237679436803, 0.012872426770627499, -0.01694296859204769, 0.021039942279458046, 0.0051718782633543015, -0.00041162470006383955, -0.06819478422403336, 0.04405348002910614, -0.017383502796292305, -0.021762419492006302, -0.01857294701039791, 0.008431836031377316, 0.003590358654037118, -0.0532870888710022, 0.008132272399961948, -0.06051185727119446, -0.0416569709777832, 0.028617139905691147, 0.03219428285956383, 0.012035410851240158, -0.06195681169629097, 0.02047605626285076, 0.016185248270630836, -0.018625810742378235, -0.017691876739263535, 0.0608995296061039, -0.015268935821950436, -0.051842134445905685, -0.046168044209480286, 0.026132524013519287, 0.0067225610837340355, -0.0873316153883934, -0.028564276173710823, -0.03714589402079582, 0.035137053579092026, 0.002806206699460745, -0.014960561878979206, 0.02412368543446064, 0.025374803692102432, -0.026273494586348534, 0.016493622213602066, 0.0035815478768199682, 0.01580638810992241, 0.023066401481628418, 0.07164857536554337, -0.004951611161231995, 0.02070513553917408, 0.012211624532938004, 0.05360427498817444, 0.02077561989426613, 0.006731371395289898, 0.049163684248924255, -0.003804018022492528, -0.06491720676422119, -0.04821212589740753, 0.029568694531917572, 0.04912843927741051, -0.03189471736550331, -0.04246755316853523, 0.01128650177270174, 0.01493412908166647, 0.017277775332331657, -0.015251314267516136, -0.012634538114070892, 0.05705806612968445, -0.012669780291616917, -0.05582457035779953, -0.03378020599484444, -0.01212351769208908, 0.03890803083777428, 0.006312863435596228, -0.021427612751722336, -0.0030088527128100395, 0.0021222764626145363, -0.029568694531917572, 0.03430885076522827, -0.03259957581758499, -0.02241441048681736, 0.0275422353297472, 0.02054654248058796, -0.03469651937484741, 0.03300486505031586, -0.0247051902115345, 0.014863643795251846, -0.01860819011926651, 0.0035815478768199682, -0.021392369642853737, 0.02828233316540718, -0.0759129524230957, -0.031101755797863007, -0.04595658928155899, -0.04909319803118706, -0.02077561989426613, -0.028775732964277267, 0.02828233316540718, 0.017031075432896614, 0.060229916125535965, 0.01367419958114624, 0.06537536531686783, -0.0012522201286628842, 0.022749217227101326, -0.03795647621154785, 0.02089896984398365, -0.021956253796815872, 0.019718337804079056, -0.1062217503786087, -0.06569255143404007, -0.09980756044387817, 0.018502460792660713, 0.03399166464805603, 0.03379783034324646, 0.015427527949213982, 0.022819701582193375, 0.01491650752723217, 0.02357742190361023, -0.011418662033975124, 0.034009285271167755, -0.04021201655268669, 0.029973987489938736, -0.01647600159049034, 0.07704072445631027, -0.08874132484197617, -0.03492559865117073, -0.024405626580119133, -0.013083883561193943, -0.0033766990527510643, 0.01857294701039791, -0.06953401118516922, -0.012766698375344276, -0.020846106112003326, 0.0835958793759346, 0.04874077066779137, 0.058326806873083115, 0.012740266509354115, 0.007039745803922415, 0.049586594104766846, -0.011771089397370815, 0.015568499453365803, -0.03281103074550629, -0.0039009356405586004, -0.026749271899461746, -0.025780096650123596, -0.004766586236655712, 0.05046766623854637, 0.0313836969435215, -0.005660871975123882, -0.02179766073822975, 0.028581896796822548, 0.036300066858530045, -0.009304095059633255, -0.03289913758635521, -0.01829100400209427, 0.03481987118721008, 0.036335308104753494, -0.022326303645968437, -0.020916592329740524, 0.032652437686920166, -0.017612580209970474, 0.022432031109929085, 0.05497874319553375, 0.038555603474378586, 0.02590344473719597, -0.042784739285707474, -0.03728686645627022, 0.05966603010892868, 0.02909291721880436, -0.0027907879557460546, -0.005462631583213806, 0.02038794942200184, 0.050749607384204865, 0.0005996779655106366, -0.06992167979478836, 0.03022068738937378, 0.04024725779891014, 0.02999160811305046, 0.01818527653813362, 0.0165552981197834, 0.022467274218797684, 0.004621210042387247, -0.045780375599861145, 0.008674129843711853, 0.00469169532880187, 0.0014240286545827985, -0.05917263403534889, 0.019365908578038216, -0.05272320285439491, 0.004969232250005007, -0.014863643795251846, 0.006986881606280804, -0.056846607476472855, -0.08662676066160202, -0.020617028698325157, 0.07633586972951889, -0.003033082000911236, -0.055648352950811386, 0.016211681067943573, -0.06784235686063766, -0.018238140270113945, 0.022238196805119514, -0.004222525749355555, 0.027947526425123215, 0.019718337804079056, -0.0013282124418765306, 0.01361252460628748, -0.0266083013266325, 0.02350693568587303, 0.03954240307211876, 0.08387782424688339, 0.061780598014593124, -0.0049912589602172375, 0.04736630246043205, -0.00010751801892183721, -0.011603686027228832, -0.020176492631435394, -0.0071146367117762566, -0.008489105850458145, -0.023788878694176674, 0.038590848445892334, -0.00985035765916109, 0.04898746684193611, -0.045745134353637695, -0.06012418866157532, -0.006224756594747305, -0.011718225665390491, 0.020634649321436882, 0.006101406645029783, 0.05804486572742462, 0.0009592645219527185, 0.029339617118239403, -0.05064387992024422, -0.013621335849165916, 0.009823925793170929, 0.016987022012472153, -0.05473204329609871, 0.012784319929778576, -0.03492559865117073, -0.011471525765955448, -0.01670507900416851, -0.03593001887202263, -0.013471554033458233, 0.018749160692095757, -0.032846275717020035, 0.0379212349653244, -0.03353350982069969, -0.011365797370672226, 0.03240573778748512, 0.008356944657862186, 0.021180912852287292, 0.03170088306069374, 0.007326093502342701, -0.05392145738005638, 0.02722504921257496, -0.06192157045006752, 0.030696464702486992, 0.03732210770249367, 0.05589505285024643, 0.06185108423233032, -0.02889908291399479, 0.05469679832458496, -0.03118986263871193, -0.04549843445420265, 0.025145726278424263, -0.023647908121347427, -0.008105840533971786, 0.06311982125043869, 0.04246755316853523, 0.07048556953668594, 0.054168157279491425, 0.11559633165597916, 0.034943219274282455, -0.013956142589449883, 0.020423192530870438, 0.03057311475276947, -0.01422046311199665, -0.05610651150345802, -0.03585953265428543, 0.000499456305988133, -0.012696213088929653, -0.021304262802004814, 0.013154368847608566, -0.046203289180994034, -0.013542039319872856, -0.010828345082700253, 0.02283732406795025, 0.03161277621984482, 0.034943219274282455, -0.024617083370685577, 0.005823869723826647, -0.006568373646587133, 0.025110483169555664, 0.07513761520385742, -0.020176492631435394, -0.00005506684829015285, -0.0180971696972847, 0.028810976073145866, -0.07668829709291458, 0.023824121803045273, 0.004594777710735798, 0.006251188460737467, -0.005678493529558182, -0.024053199216723442, -0.023824121803045273, -0.02044081501662731, -0.04137502610683441, -0.043947748839855194, 0.03922521695494652, 0.009533172473311424, 0.038978517055511475, 0.006339295767247677, -0.037745021283626556, -0.015172017738223076, 0.048811253160238266, 0.03823842108249664, -0.03487273305654526, -0.07859140634536743, 0.0020606014877557755, 0.023489315062761307, -0.06051185727119446, 0.011348175816237926, 0.014000196009874344, -0.005035312846302986, 0.01019397471100092, -0.014458351768553257, -0.002174039138481021, 0.030203064903616905, 0.018925374373793602, 0.01689891517162323, 0.04838833957910538, 0.0011839373037219048, -0.04838833957910538, -0.02237916737794876, -0.07309353351593018, -0.012282109819352627, -0.036335308104753494, -0.05064387992024422, -0.00012809925829060376, -0.0055727651342749596, -0.05096106603741646, 0.006779830437153578, 0.020423192530870438, 0.002929556416347623, 0.0055199009366333485, -0.049234166741371155, -0.04782445728778839, 0.06713750213384628, 0.01666102558374405, -0.06079380214214325, -0.05705806612968445, -0.027630342170596123, -0.10227455943822861, -0.0094979302957654, -0.04112832620739937, -0.07929626107215881, 0.005568359512835741, 0.008806290104985237, -0.06315506994724274, 0.010669752955436707, -0.03427360579371452, 0.02054654248058796, -0.007123447488993406, -0.06548108905553818, 0.005889950320124626, 0.040035802870988846, 0.04229133948683739, 0.02105756290256977, 0.012925290502607822, -0.005282012280076742, -0.003158634528517723, -0.0012786522274836898, 0.01941877417266369, 0.035101812332868576, 0.0052599855698645115, 0.023295478895306587, 0.015515635721385479, -0.00016409921227023005, -0.03693443536758423, 0.04511076211929321, 0.026502573862671852, 0.017841659486293793, 0.0030903515871614218, 0.018326247110962868, 0.01857294701039791, 0.005215931683778763, -0.04155123978853226, 0.01973595842719078, -0.0055727651342749596, -0.010132299736142159, -0.0475425161421299, -0.07633586972951889, -0.03672298043966293, -0.015489202924072742, 0.014335001818835735, 0.04782445728778839, -0.019982658326625824, -0.06315506994724274, -0.05744573846459389, -0.009541983716189861, 0.014669808559119701, 0.04676717147231102, -0.014599323272705078, 0.028070876374840736, 0.0493398979306221, 0.05346330255270004, -0.040811143815517426, -0.02637922391295433, 0.04986853897571564, 0.03256433084607124, 0.009929654188454151, 0.009180745109915733, -0.026114901527762413, -0.01275788713246584, 0.036687735468149185, 0.06026516109704971, -0.002047385321930051, 0.013013397343456745, 0.027066458016633987, 0.043454352766275406, -0.038520362228155136, 0.012810751795768738, -0.02292543090879917, -0.017348259687423706, -0.025039996951818466, 0.08387782424688339, -0.015136775560677052, 0.07210673391819, -0.013903277926146984, -0.018854888156056404, 0.06294360756874084, -0.02186814695596695, -0.008185136131942272, 0.009207176975905895, -0.0033084163442254066, -0.04634426161646843, -0.08465316891670227, -0.034978460520505905, 0.027806555852293968, 0.019947415217757225, -0.008947261609137058, -0.019982658326625824, -0.0009201670181937516, 0.047331057488918304, -0.016141194850206375, 0.01023802813142538, -0.060582343488931656, 0.004187283106148243, 0.06424759328365326, 0.02512810379266739, 0.01911921054124832, 0.0013920898782089353, 0.03448506444692612, 0.024652326479554176, 0.004933989606797695, 0.015982601791620255, 0.011154340580105782, -0.03679346665740013, 0.06319031119346619, -0.05628272518515587, 0.09846833348274231, -0.014211651869118214, 0.022713974118232727, -0.042679011821746826, 0.006484671961516142, 0.02260824479162693, 0.007449443452060223, -0.03060835786163807, 0.013647767715156078, -0.02637922391295433, 0.061005257070064545, -0.045780375599861145, 0.03233525529503822, 0.0049119628965854645, -0.02948058769106865, -0.02606203779578209, 0.03957764431834221, -0.05346330255270004, 0.06128719821572304, -0.03686395287513733, 0.01970071531832218, -0.06618594378232956, 0.030872678384184837, 0.0026189794298261404, -0.04105784371495247, 0.013823981396853924, 0.06287312507629395, -0.02637922391295433, 0.0025617098435759544, 0.012423081323504448, 0.029427723959088326, 0.011330555193126202, 0.02260824479162693, 0.06748992949724197, -0.04017677158117294, 0.02370077185332775, -0.022308681160211563, -0.04363056644797325, 0.017735930159687996, 0.03767453506588936, -0.03964813053607941, 0.005850302055478096, -0.03240573778748512, -0.012343784794211388, 0.028564276173710823, -0.0018480434082448483, -0.06819478422403336, 0.04514600709080696, -0.055295925587415695, 0.042326584458351135, 0.010211596265435219, 0.00010917002509813756, 0.05952506139874458, 0.004006663803011179, -0.023683151230216026, 0.04454687610268593, -0.015039857476949692, 0.010308514349162579, 0.007370146922767162, 0.007682926952838898, -0.014282138086855412, -0.028793353587388992, -0.0550844706594944, -0.014757915399968624, 0.03053787164390087, -0.05007999390363693, 0.03282865136861801, -0.011568443849682808, 0.07129614800214767, 0.01697821170091629, -0.00864329282194376, -0.022132467478513718, -0.0020022306125611067, -0.0022753621451556683, 0.03356875106692314, -0.04148075729608536, -0.038626089692115784, 0.08803647011518478, 0.014449541456997395, -0.011163151822984219, 0.010696184821426868, -0.032722923904657364, -0.05007999390363693, 0.02703121490776539, 0.019277801737189293, -0.024617083370685577, -0.0018039899878203869, -0.08845938742160797, 0.0002926803135778755, -0.02160382643342018, -0.025462910532951355, -0.02183290384709835, 0.0014515621587634087, 0.004964827094227076, 0.008815101347863674, 0.009453876875340939, 0.02512810379266739, 0.03228238970041275, 0.028775732964277267, -0.011912060901522636, 0.0030462981667369604, 0.000988449901342392, 0.038943275809288025, 0.015832820907235146, -0.0128548052161932, -0.03554234653711319, 0.060582343488931656, -0.0067357770167291164, 0.0724591612815857, -0.057199038565158844, -0.008559591136872768, 0.007079394068568945, 0.013586092740297318, -0.009823925793170929, 0.029321996495127678, 0.03760404884815216, 0.0037291268818080425, 0.003693884238600731, -0.06237972527742386, -0.030714085325598717, 0.035947639495134354, -0.006647670175880194, 0.03212379664182663, -0.029709666967391968, -0.038590848445892334, 0.002641006140038371, 0.05857350677251816, -0.06544584780931473, -0.04715484380722046, 0.05353378877043724, 0.026555437594652176, 0.01778879389166832, 0.02222057431936264, -0.022273438051342964, -0.012220434844493866, -0.018343867734074593, -0.013039830140769482, 0.03286389634013176, -0.0027335183694958687, -0.04260852560400963, 0.06192157045006752, 0.008986909873783588, 0.002211484592407942, 0.012960533611476421, -0.028299955651164055, 0.036617252975702286, 0.011788710951805115, 0.019876929000020027, 0.0024714001920074224, -0.10213358700275421, 0.046203289180994034, -0.013559660874307156, 0.05092582106590271, 0.02835281938314438, 0.018308626487851143, 0.026132524013519287, -0.013868034817278385, -0.0009377884562127292, 0.02396509237587452, -0.014035438187420368, 0.02590344473719597 ]
10
websocket
do_handshake
This method is called automatically in the first send() or receive()
def do_handshake(self): """This method is called automatically in the first send() or receive()""" assert not self.handshaked, 'Already did handshake' if self.key1 is not None: # version 76 if not self.key1: message = "Missing HTTP_SEC_WEBSOCKET_KEY1 header in the request" self._reply_400(message) raise IOError(message) if not self.key2: message = "Missing HTTP_SEC_WEBSOCKET_KEY2 header in the request" self._reply_400(message) raise IOError(message) headers = [ ("Upgrade", "WebSocket"), ("Connection", "Upgrade"), ("Sec-WebSocket-Origin", self.origin), ("Sec-WebSocket-Protocol", self.protocol), ("Sec-WebSocket-Location", "ws://" + self.host + self.path_info), ] self._send_reply("101 Web Socket Protocol Handshake", headers) challenge = self._get_challenge() self.socket.sendall(challenge) else: # version 75 headers = [ ("Upgrade", "WebSocket"), ("Connection", "Upgrade"), ("WebSocket-Origin", self.websocket.origin), ("WebSocket-Protocol", self.websocket.protocol), ("WebSocket-Location", "ws://" + self.host + self.path_info), ] self._send_reply("101 Web Socket Protocol Handshake", headers) self.handshaked = True
(self)
[ -0.06672488152980804, -0.039717189967632294, -0.09143780171871185, -0.0036539817228913307, -0.0361514687538147, -0.01620461419224739, -0.02319484017789364, 0.055180419236421585, -0.03968188911676407, 0.009505648165941238, 0.022418148815631866, -0.00009508681978331879, 0.021747369319200516, 0.006465076003223658, -0.02707829885184765, -0.04007023200392723, 0.08289419114589691, -0.026495778933167458, 0.010856032371520996, -0.049249317497015, 0.0049293446354568005, 0.004077631514519453, 0.02766081690788269, 0.0030030610505491495, -0.0200880728662014, 0.012683022767305374, -0.047872453927993774, 0.04063510149717331, 0.06390054523944855, -0.0443420372903347, -0.06718383729457855, 0.0020818428602069616, 0.044200822710990906, 0.02217101864516735, 0.016257571056485176, -0.03682224825024605, -0.0008053763885982335, -0.07540971040725708, -0.0024271616712212563, 0.04084692522883415, 0.020900068804621696, 0.0057545797899365425, 0.02993793599307537, -0.021765021607279778, -0.0037974047008901834, 0.03373313322663307, -0.06736035645008087, 0.13931025564670563, 0.01594865880906582, -0.014015755616128445, -0.03692816197872162, 0.045507077127695084, 0.005313277710229158, 0.006142925471067429, 0.021076589822769165, -0.001011685119010508, 0.021429631859064102, -0.0443420372903347, -0.034421566873788834, 0.029478982090950012, -0.01895833946764469, 0.013283194042742252, -0.008596565574407578, 0.04501281678676605, -0.03805789723992348, -0.07322084903717041, -0.012594763189554214, 0.016716524958610535, 0.04783714935183525, 0.01586039923131466, 0.02518952637910843, 0.06220594793558121, 0.003962893038988113, 0.025330742821097374, -0.021341370418667793, 0.033574264496564865, -0.04935523122549057, 0.0024823243729770184, -0.010352947749197483, 0.04084692522883415, 0.023088926449418068, -0.01987624727189541, -0.006142925471067429, 0.00750654935836792, 0.022965362295508385, 0.038587458431720734, 0.01776682399213314, 0.003503938904032111, -0.03458043560385704, -0.031491320580244064, -0.039646584540605545, 0.03961127996444702, -0.030997062101960182, 0.005392712075263262, 0.06898435205221176, -0.016310526058077812, -0.055745285004377365, -0.00817732885479927, -0.02490709163248539, -0.03316826745867729, -0.03277992084622383, 0.06566575914621353, -0.03961127996444702, 0.021994497627019882, 0.041164662688970566, -0.03558660298585892, 0.0024536398705095053, -0.02160615287721157, -0.050626181066036224, -0.007572744507342577, 0.0471663698554039, -0.06280612200498581, 0.01742260716855526, 0.03968188911676407, 0.004485836252570152, -0.039434757083654404, 0.003605438396334648, 0.029779067263007164, 0.04529524967074394, -0.00693726958706975, -0.0035723408218473196, -0.005984056740999222, 0.04780184477567673, -0.026354562491178513, 0.00660629291087389, 0.04889627546072006, 0.035004083067178726, -0.02367144636809826, 0.026089781895279884, 0.011270856484770775, 0.02132371813058853, 0.05274442955851555, 0.0015114598209038377, 0.03267401084303856, -0.016910698264837265, -0.03267401084303856, -0.02644282393157482, -0.026319259777665138, 0.07131442427635193, -0.0249953530728817, 0.027731426060199738, -0.062276557087898254, 0.041164662688970566, 0.02661934494972229, -0.03059106320142746, 0.07837525755167007, -0.04886097088456154, -0.017449086531996727, -0.005083800293505192, -0.0367516428232193, 0.04289456829428673, 0.04384778067469597, -0.016716524958610535, -0.036222077906131744, 0.0022793253883719444, 0.007943438366055489, -0.06220594793558121, 0.018887730315327644, -0.006787226535379887, 0.014307014644145966, -0.016001615673303604, -0.04660150408744812, 0.029196549206972122, -0.025401350110769272, 0.003276668256148696, 0.025436654686927795, -0.015348488464951515, -0.033680178225040436, 0.03539242967963219, 0.03901110962033272, -0.0339273065328598, 0.04734289273619652, -0.011014901101589203, 0.015807442367076874, 0.10746589303016663, 0.016584133729338646, -0.04871975630521774, -0.05846370756626129, -0.026301607489585876, -0.016566481441259384, -0.013715670444071293, -0.047978367656469345, -0.016301700845360756, -0.01388336531817913, -0.0026080955285578966, 0.07442118972539902, 0.03798728808760643, 0.01694600097835064, 0.04621315747499466, -0.003901110729202628, -0.056980930268764496, 0.002751518739387393, 0.005361821036785841, 0.05069679021835327, 0.06301794201135635, 0.03879928216338158, 0.03890519589185715, 0.005308864638209343, 0.004154859576374292, 0.0011826896807178855, -0.017546173185110092, -0.013715670444071293, -0.0034642217215150595, -0.018340516835451126, -0.005975230596959591, -0.027148906141519547, 0.0036208839155733585, -0.017643259838223457, 0.013080195523798466, -0.021941542625427246, 0.02547195926308632, -0.02017633244395256, 0.031667839735746384, 0.017343172803521156, 0.05069679021835327, -0.054686158895492554, -0.030944105237722397, -0.03731650859117508, 0.017802128568291664, -0.010811902582645416, 0.03412147983908653, 0.00961156003177166, -0.04829610511660576, 0.01506605464965105, 0.000349731941241771, 0.0008974982192739844, -0.007360919378697872, -0.0733620673418045, -0.05864022672176361, 0.0534152090549469, 0.010432382114231586, 0.01761678047478199, 0.047695934772491455, 0.041270576417446136, -0.052991557866334915, 0.04045857861638069, -0.036327991634607315, 0.018781818449497223, 0.0305028036236763, -0.011429725214838982, -0.024695267900824547, -0.0360102541744709, 0.05493328720331192, -0.014386449009180069, 0.0004865356022492051, 0.02104128524661064, 0.05436842143535614, -0.010194079019129276, 0.019064251333475113, 0.05976996198296547, -0.07491544634103775, 0.018781818449497223, -0.024854136630892754, -0.04564829170703888, -0.026954734697937965, -0.06270020455121994, -0.009876341558992863, 0.004717519972473383, -0.009024628438055515, 0.0024249551352113485, -0.03297409415245056, 0.04363595321774483, -0.032550446689128876, 0.058852050453424454, -0.01761678047478199, -0.026019172742962837, -0.0010806386126205325, 0.050908613950014114, -0.020388158038258553, 0.008751020766794682, 0.011579767800867558, -0.06259429454803467, -0.034245043992996216, 0.04169422388076782, 0.016504699364304543, 0.0007932405569590628, 0.013539149425923824, 0.012277024798095226, 0.002592650009319186, -0.013415584340691566, 0.05285034328699112, 0.02414805255830288, -0.00546773336827755, 0.0027559318114072084, -0.044659774750471115, 0.032356273382902145, -0.012488850392401218, -0.05927570164203644, 0.013141977600753307, -0.03126184269785881, -0.028066815808415413, 0.011871026828885078, 0.027254819869995117, -0.006006122101098299, 0.015931006520986557, 0.027501948177814484, 0.0024337812792509794, 0.0562395416200161, 0.06827826797962189, -0.010838380083441734, -0.011932809837162495, 0.06149986386299133, -0.016460569575428963, -0.048366714268922806, 0.007519788108766079, -0.07449179887771606, -0.004115142393857241, 0.021376674994826317, -0.012868369929492474, -0.015701530501246452, -0.02993793599307537, 0.011341464705765247, 0.019717378541827202, -0.007157920394092798, 0.04628376662731171, 0.006094382610172033, 0.02160615287721157, 0.01326554175466299, 0.007965503260493279, 0.07675126940011978, -0.011668028309941292, -0.030255673453211784, 0.0034200914669781923, 0.060405436903238297, 0.030290978029370308, -0.028278639540076256, 0.04596602916717529, -0.08840164542198181, 0.0015975136775523424, -0.029779067263007164, -0.1011817529797554, 0.019735030829906464, -0.0016791545785963535, -0.03961127996444702, -0.025789696723222733, -0.011491507291793823, 0.003715764032676816, 0.04377717152237892, -0.020052768290042877, -0.0009796906961128116, 0.015807442367076874, -0.02670760452747345, 0.056133631616830826, 0.007007877808064222, 0.018534690141677856, -0.05948752537369728, -0.06492436677217484, 0.041270576417446136, -0.03569251671433449, -0.021094242110848427, -0.002769170794636011, -0.08112898468971252, 0.0520736500620842, 0.049037493765354156, 0.07198520004749298, -0.020335201174020767, -0.05330929532647133, -0.01339793298393488, 0.03549834340810776, -0.011085509322583675, 0.06079377979040146, 0.029426025226712227, -0.013141977600753307, 0.02444813773036003, -0.07322084903717041, 0.0034002328757196665, 0.03417443856596947, 0.004304902162402868, -0.05747519060969353, 0.0048013669438660145, -0.022488756105303764, 0.0009322507539764047, -0.005220604129135609, 0.006376815959811211, 0.004646911285817623, -0.011632723733782768, 0.0016118560452014208, 0.028437508270144463, -0.004366684705018997, -0.07177338004112244, 0.03890519589185715, 0.03657511994242668, -0.010847206227481365, 0.006125273648649454, -0.017166653648018837, -0.019946856424212456, -0.007841939106583595, -0.019858594983816147, -0.004867562558501959, 0.027025341987609863, 0.014916012063622475, 0.02556021884083748, 0.03819911181926727, 0.004902866668999195, -0.01978798769414425, 0.05189713090658188, 0.012806587852537632, 0.05066148564219475, 0.025683782994747162, -0.04441264644265175, 0.05500389635562897, -0.05454494431614876, -0.0027647577226161957, 0.028931766748428345, -0.0401761457324028, 0.03401556983590126, 0.00568397156894207, 0.029284808784723282, 0.007497723214328289, -0.02776673063635826, -0.04525994509458542, 0.01761678047478199, -0.027131255716085434, 0.03549834340810776, -0.025895608589053154, -0.004655737429857254, 0.006941682659089565, 0.02273588627576828, 0.024695267900824547, 0.09475639462471008, -0.024183357134461403, -0.018640602007508278, 0.02681351639330387, 0.06647775322198868, -0.033380091190338135, 0.00009881030564429238, -0.04367125779390335, 0.02054702676832676, -0.03560425713658333, 0.0071932245045900345, 0.03618677332997322, 0.011341464705765247, -0.0058075361885130405, -0.009390909224748611, 0.0027669642586261034, 0.031191233545541763, -0.015630921348929405, 0.03200323134660721, 0.020794156938791275, 0.00592227466404438, -0.03495112806558609, 0.002321249106898904, -0.03247983753681183, 0.026742909103631973, 0.055745285004377365, -0.02983202412724495, -0.03295644372701645, 0.003971719183027744, -0.01739612966775894, 0.031967926770448685, -0.05825188010931015, 0.0002474049979355186, -0.06612470746040344, -0.011429725214838982, 0.003331830957904458, 0.022682929411530495, 0.04102344438433647, 0.04762532562017441, 0.0046601505018770695, -0.06612470746040344, 0.07329145818948746, 0.020776504650712013, 0.002215336775407195, 0.03495112806558609, -0.053662337362766266, -0.021535543724894524, -0.00914377998560667, -0.009390909224748611, 0.013194933533668518, 0.030449846759438515, 0.007939024828374386, 0.025930913165211678, 0.004216641653329134, -0.0006503690383397043, 0.030855845659971237, -0.03865806758403778, 0.01668122038245201, -0.008848107419908047, -0.05556876212358475, -0.0778103917837143, -0.08345905691385269, 0.006826943717896938, 0.018128691241145134, -0.05376825109124184, 0.0259662177413702, -0.06181760132312775, -0.0028508116956800222, -0.09080232679843903, 0.007828699424862862, 0.010732468217611313, -0.015374965965747833, 0.007537440396845341, -0.02282414585351944, -0.017069566994905472, 0.05521572381258011, 0.0034884933847934008, -0.024801179766654968, -0.004620433319360018, -0.036998771131038666, -0.013821582309901714, -0.014421753585338593, -0.02681351639330387, -0.00004440602788235992, 0.03346835449337959, -0.011959287337958813, -0.0034355369862169027, -0.028472812846302986, 0.0025154221802949905, 0.028490465134382248, 0.028737595304846764, -0.020423462614417076, -0.006478315219283104, 0.017502041533589363, -0.01502192486077547, 0.02974376268684864, 0.006544510368257761, -0.013159629888832569, 0.028260989114642143, -0.024306921288371086, 0.032726965844631195, 0.015622095204889774, 0.016028093174099922, 0.06612470746040344, 0.04261213168501854, -0.014924838207662106, 0.011191422119736671, -0.0006514722481369972, -0.041270576417446136, 0.030343934893608093, -0.014421753585338593, -0.014483535662293434, 0.030908800661563873, -0.020688243210315704, 0.06400646269321442, -0.011579767800867558, -0.006826943717896938, -0.02614273875951767, 0.0006509206141345203, -0.09461517632007599, -0.0706789493560791, 0.0009769325843080878, 0.01477479562163353, -0.06647775322198868, -0.08402392268180847, -0.05408598855137825, 0.01633700542151928, -0.009549777954816818, 0.007802221458405256, -0.08190567791461945, -0.06757218390703201, -0.07922255992889404, 0.058852050453424454, 0.033009398728609085, -0.00984986312687397, -0.02367144636809826, -0.10294695943593979, 0.04335352033376694, -0.011403246782720089, -0.0023058035876601934, 0.03004384972155094, -0.01415697205811739, -0.04670741781592369, -0.025030655786395073, -0.013512670993804932, 0.009487995877861977, 0.011782767251133919, 0.01668122038245201, 0.014412927441298962, -0.0541565977036953, 0.01571035571396351, -0.018587645143270493, 0.07957559823989868, 0.028825854882597923, -0.01411284226924181, -0.02868463844060898, -0.03202088177204132, -0.017016610130667686, 0.010017558000981808, 0.01998216100037098, -0.01895833946764469, 0.02254171296954155, 0.0036539817228913307, -0.008680412545800209, -0.027343079447746277, 0.023336056619882584, 0.017916865646839142, 0.0409175343811512, 0.029426025226712227, -0.014307014644145966, -0.016257571056485176, -0.04843732342123985, -0.0915084108710289, -0.0008478517411276698, -0.037846069782972336, 0.03770485520362854, 0.030714627355337143, 0.02291240729391575, 0.0046601505018770695, 0.019170165061950684, 0.05200304463505745, -0.0007215289515443146, 0.0380931980907917, 0.07322084903717041, -0.0228417981415987, 0.043530043214559555, 0.01922312006354332, -0.039540670812129974, 0.0858597457408905, 0.008684826083481312, -0.034139133989810944, -0.0036936989054083824, 0.05115574225783348, 0.019717378541827202, -0.022983014583587646, -0.023071276023983955, 0.06485375761985779, -0.03985840827226639, -0.02518952637910843, -0.0129831088706851, 0.020141029730439186, 0.045330554246902466, -0.057545796036720276, -0.06471254676580429, -0.0020476419012993574, -0.06976103782653809, 0.02330075204372406, 0.034721650183200836, 0.03341539576649666, -0.05899326875805855, -0.018834775313735008, 0.03276227042078972, -0.03950536623597145, 0.06513619422912598, -0.023636141791939735, 0.05976996198296547, 0.017060739919543266, -0.03135010227560997, 0.010291165672242641, -0.007572744507342577, 0.0051146917976439, 0.059452224522829056, 0.022947710007429123, 0.05969935283064842, -0.03894050046801567, -0.04458916559815407, 0.03341539576649666, 0.05969935283064842, -0.012153460644185543, -0.01653117686510086, -0.030749931931495667, 0.0034818737767636776, 0.008936367928981781, 0.015886876732110977, 0.05722805857658386, 0.01368036586791277, 0.007210876792669296, 0.008799564093351364, -0.0450834259390831, 0.05030844360589981, -0.025736739858984947, 0.02074120007455349, 0.047307588160037994, 0.0706789493560791, 0.0010320954024791718, 0.016734177246689796, 0.05736927688121796, 0.03454513102769852, -0.03276227042078972, 0.022965362295508385, -0.029531938955187798, 0.013062543235719204, 0.020317550748586655, -0.03366252779960632, 0.036786943674087524, -0.01670769788324833, 0.02907298505306244, -0.010141123086214066, -0.04783714935183525, -0.03175609931349754, -0.03989371284842491, -0.0036473621148616076, 0.025242481380701065, -0.05486268177628517, -0.040211450308561325, 0.012718327343463898, -0.017166653648018837, 0.06181760132312775, 0.007577157579362392, -0.037387117743492126, -0.10810136795043945, 0.01117376983165741, -0.052920952439308167, -0.022382844239473343, 0.033027052879333496, -0.07548031955957413, -0.051367565989494324, -0.0014596068067476153, -0.027925599366426468, -0.02245345152914524, -0.04197665676474571, 0.004735171794891357, 0.013565627858042717, -0.010997248813509941, 0.022276930510997772, 0.018058083951473236, 0.02954959124326706, 0.0006746406434103847, -0.0409175343811512, 0.02963785082101822, 0.014465883374214172, -0.03131479769945145, -0.04338882490992546, -0.007577157579362392, -0.026601692661643028, -0.024112747982144356, 0.00375327467918396, -0.025136569514870644, 0.0023521403782069683, 0.023336056619882584, 0.02833159640431404, -0.03664572909474373, -0.010485338978469372, -0.002605888992547989, -0.03286818414926529, 0.02397153154015541, -0.04356534779071808, 0.05313277617096901, 0.030838193371891975, -0.00872012972831726, -0.008119959384202957, -0.006954921409487724, -0.052038345485925674, -0.02255936525762081, 0.1261771023273468, 0.032056186348199844, -0.015145489014685154, 0.019452597945928574, 0.03352130949497223, 0.01028233952820301, 0.04670741781592369, -0.005185300018638372, -0.05373294651508331, 0.004296076018363237, -0.011191422119736671, 0.009108476340770721, -0.019664423540234566, 0.010052862577140331, 0.0028574313037097454, 0.016151657328009605, 0.046177852898836136, -0.012877196073532104, -0.03366252779960632, -0.0001445264497306198, -0.060687869787216187, -0.008556848391890526, 0.029284808784723282, -0.10344121605157852, 0.02416570484638214, -0.0006823634030297399, 0.006209121085703373, 0.009902819991111755, 0.04112935811281204, 0.017881562933325768, 0.0343686081469059, -0.002934659132733941, 0.01904659904539585, 0.09694524854421616, 0.03777546063065529 ]

Dataset embedded with jina-code-v2

Downloads last month
5
Edit dataset card