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
320
dateutil.relativedelta
normalized
Return a version of this object represented entirely using integer values for the relative attributes. >>> relativedelta(days=1.5, hours=2).normalized() relativedelta(days=+1, hours=+14) :return: Returns a :class:`dateutil.relativedelta.relativedelta` object.
def normalized(self): """ Return a version of this object represented entirely using integer values for the relative attributes. >>> relativedelta(days=1.5, hours=2).normalized() relativedelta(days=+1, hours=+14) :return: Returns a :class:`dateutil.relativedelta.relativedelta` object. """ # Cascade remainders down (rounding each to roughly nearest microsecond) days = int(self.days) hours_f = round(self.hours + 24 * (self.days - days), 11) hours = int(hours_f) minutes_f = round(self.minutes + 60 * (hours_f - hours), 10) minutes = int(minutes_f) seconds_f = round(self.seconds + 60 * (minutes_f - minutes), 8) seconds = int(seconds_f) microseconds = round(self.microseconds + 1e6 * (seconds_f - seconds)) # Constructor carries overflow back up with call to _fix() return self.__class__(years=self.years, months=self.months, days=days, hours=hours, minutes=minutes, seconds=seconds, microseconds=microseconds, leapdays=self.leapdays, year=self.year, month=self.month, day=self.day, weekday=self.weekday, hour=self.hour, minute=self.minute, second=self.second, microsecond=self.microsecond)
(self)
[ -0.024740224704146385, 0.013915219344198704, -0.012740197591483593, -0.004237480461597443, 0.0031572929583489895, -0.055993955582380295, -0.027497362345457077, 0.012814215384423733, -0.053921476006507874, -0.0015370119363069534, -0.021501975134015083, 0.028681635856628418, 0.057918399572372437, 0.028700141236186028, -0.007114896085113287, 0.05958378687500954, -0.020058641210198402, 0.025017788633704185, -0.0622854121029377, -0.04663078859448433, 0.06705951690673828, 0.012638424523174763, -0.026331592351198196, 0.0322529636323452, -0.025480395182967186, 0.008090997114777565, -0.005847353022545576, 0.004447966814041138, -0.01708870381116867, -0.01747729443013668, 0.04344805330038071, 0.10051525384187698, 0.0036083348095417023, -0.03121672384440899, 0.007637642323970795, -0.08252909779548645, -0.03476954624056816, 0.01810644008219242, -0.08400943875312805, 0.038303863257169724, 0.011565175838768482, -0.03482505679130554, 0.01747729443013668, 0.021575992926955223, 0.03071710653603077, -0.007753293961286545, 0.08423148840665817, 0.01690366119146347, -0.003943725023418665, -0.04996155947446823, -0.0031110323034226894, 0.057400282472372055, 0.055142760276794434, 0.006185056176036596, -0.07875422388315201, 0.056771136820316315, 0.01681113988161087, 0.04515044763684273, -0.041375573724508286, -0.01802317053079605, -0.07794003188610077, 0.0369715541601181, 0.0313277505338192, -0.039266087114810944, -0.03747117146849632, -0.027478858828544617, -0.026109540835022926, -0.03055056929588318, -0.006351594813168049, -0.013915219344198704, -0.04718591645359993, 0.006837332155555487, 0.025313857942819595, 0.005884361453354359, 0.024351634085178375, 0.057696349918842316, 0.009464940056204796, 0.010121841914951801, 0.027423344552516937, 0.020521247759461403, -0.013138039968907833, 0.0012952997349202633, 0.007105644326657057, 0.0009396705427207053, 0.02918125130236149, -0.019947616383433342, -0.0012571346014738083, -0.00012627727119252086, 0.01576564833521843, 0.0165890883654356, -0.024222103878855705, 0.004249045625329018, -0.010001564398407936, 0.008803412318229675, 0.002488825935870409, 0.019762571901082993, -0.07105644047260284, 0.007600633427500725, -0.026146549731492996, -0.055993955582380295, 0.00903934147208929, 0.05199703201651573, -0.04707489162683487, 0.03340022638440132, -0.010454919189214706, 0.024000052362680435, 0.007392460480332375, -0.09229935705661774, 0.028903687372803688, 0.012240582145750523, -0.04929540678858757, -0.003189675509929657, -0.019836589694023132, 0.01839325577020645, -0.057696349918842316, -0.04548352584242821, -0.013119535520672798, 0.005898239556699991, 0.022519711405038834, -0.010094085708260536, -0.06047199293971062, 0.0330856554210186, -0.004940642975270748, -0.005444884765893221, -0.021501975134015083, -0.04437326639890671, 0.026794198900461197, -0.0007893232395872474, -0.03147578239440918, 0.011084064841270447, -0.019077913835644722, -0.014155775308609009, 0.022686248645186424, 0.023111848160624504, 0.028459584340453148, 0.0004325375775806606, 0.05036865547299385, 0.1066586822271347, -0.01651507057249546, 0.08067866414785385, 0.04851822555065155, 0.00830842275172472, 0.03785976022481918, 0.04781506210565567, -0.01816195249557495, 0.03432544320821762, 0.024703215807676315, 0.06798473000526428, -0.09947901964187622, 0.04637172818183899, -0.03510262072086334, -0.03079112432897091, 0.08808038383722305, 0.03166082501411438, 0.03423292189836502, -0.03116120956838131, -0.038525912910699844, -0.027885952964425087, -0.0367865115404129, 0.022630736231803894, -0.04822215810418129, 0.021279923617839813, 0.0598798543214798, -0.055179767310619354, -0.01659834012389183, 0.01591368205845356, 0.011814983561635017, -0.07368405163288116, -0.026109540835022926, 0.04755600541830063, 0.054735664278268814, 0.0158026572316885, 0.04970249906182289, 0.009585217572748661, 0.009575965814292431, -0.024370139464735985, 0.07372105866670609, -0.006615280639380217, -0.054365579038858414, 0.06328464299440384, 0.04640873894095421, -0.01730150356888771, -0.03214193880558014, -0.06606028228998184, 0.005347737576812506, 0.03238249197602272, -0.03227146714925766, 0.006365472916513681, -0.023666976019740105, -0.021446462720632553, 0.05177497863769531, 0.007202791515737772, 0.01784737966954708, 0.010260623879730701, -0.009090228006243706, 0.037360142916440964, -0.006832705810666084, 0.010528936050832272, 0.07035327702760696, -0.01665385253727436, -0.041893694549798965, 0.057067204266786575, 0.04918438196182251, -0.058473531156778336, 0.0167278703302145, 0.027830438688397408, -0.070982426404953, -0.006490376777946949, -0.04433625936508179, -0.026054028421640396, 0.020539753139019012, -0.025498900562524796, -0.019633043557405472, -0.00920125376433134, -0.028792662546038628, -0.019781077280640602, 0.010408658534288406, -0.022020095959305763, 0.011602184735238552, 0.03314116969704628, -0.013646908104419708, -0.0330856554210186, 0.025443386286497116, -0.08067866414785385, 0.0072814347222447395, -0.04840720072388649, -0.040117282420396805, -0.001885123667307198, -0.01781962253153324, -0.04563155770301819, 0.03241950273513794, -0.1011073961853981, -0.10236568748950958, -0.04814814031124115, 0.03708257898688316, 0.03180886059999466, 0.005014660302549601, 0.00937704462558031, 0.00837781373411417, 0.013424856588244438, -0.04204172641038895, 0.020946847274899483, 0.04781506210565567, 0.03180886059999466, 0.006943731568753719, -0.022686248645186424, 0.014821929857134819, 0.004367010667920113, -0.042892925441265106, 0.004383201710879803, -0.038525912910699844, -0.00009064206824405119, 0.020521247759461403, 0.054846689105033875, 0.0706123411655426, 0.042448822408914566, -0.019836589694023132, 0.041338566690683365, -0.04837019369006157, 0.028459584340453148, 0.027423344552516937, -0.0888945683836937, 0.0037170476280152798, -0.015312292613089085, -0.01836549863219261, 0.011694706045091152, -0.00426292372867465, -0.020909838378429413, -0.00732769537717104, 0.023185864090919495, 0.0029884413816034794, -0.03774873539805412, -0.029514329507946968, -0.01509024202823639, -0.01847652532160282, -0.004963773302733898, 0.025313857942819595, -0.028903687372803688, -0.03351125493645668, 0.021446462720632553, -0.03784125670790672, -0.03728612884879112, 0.024129582569003105, -0.023407915607094765, -0.0032498145010322332, 0.006300707813352346, -0.03119821846485138, 0.025591421872377396, -0.001885123667307198, 0.014109514653682709, 0.019799580797553062, -0.01837475225329399, -0.01687590405344963, -0.039562154561281204, 0.01588592492043972, 0.039673179388046265, -0.039673179388046265, -0.06261848658323288, -0.006740184500813484, -0.0014248297084122896, -0.03700856491923332, 0.01954052224755287, -0.0013982297386974096, 0.056030966341495514, -0.027904456481337547, 0.00739708635956049, 0.04777805507183075, -0.005967631004750729, 0.04618668556213379, 0.011398637667298317, -0.04737095907330513, 0.011851992458105087, 0.010343893431127071, 0.023481933400034904, -0.004175028298050165, -0.0165428277105093, 0.03073561191558838, 0.03214193880558014, 0.0027340075466781855, 0.0613601990044117, -0.05029463768005371, 0.057918399572372437, -0.009173497557640076, 0.034380953758955, -0.005338485352694988, -0.010214363224804401, -0.006365472916513681, 0.0322529636323452, 0.010057076811790466, -0.009279897436499596, -0.022630736231803894, -0.057067204266786575, -0.002863537520170212, 0.03045804798603058, -0.013295326381921768, -0.06557917594909668, 0.056845154613256454, 0.005000782199203968, 0.028903687372803688, -0.053921476006507874, 0.055549852550029755, 0.056364040821790695, -0.028811166062951088, -0.03554672375321388, 0.026738686487078667, -0.028293047100305557, 0.03517663851380348, 0.03395535796880722, 0.059472762048244476, 0.04629771411418915, 0.0025790343061089516, -0.004750974476337433, -0.023074839264154434, 0.012296095490455627, 0.0003287401341367513, -0.042300786823034286, -0.009020837023854256, -0.041930701583623886, 0.04326301068067551, -0.04640873894095421, -0.01713496446609497, -0.003550508990883827, 0.023778002709150314, -0.01777336187660694, 0.03093915805220604, -0.04337403550744057, -0.026775695383548737, -0.0643208846449852, -0.006767941173166037, 0.020817317068576813, -0.028126507997512817, -0.029366295784711838, 0.01585816964507103, -0.04566856846213341, 0.0319753997027874, 0.025905994698405266, 0.007068635430186987, 0.055549852550029755, -0.04966549202799797, -0.006129543296992779, 0.05084976553916931, 0.012990005314350128, -0.04948044940829277, 0.027034755796194077, 0.01829148270189762, -0.010029320605099201, 0.11220996081829071, -0.028570611029863358, 0.01755131036043167, 0.004656139761209488, -0.027793431654572487, -0.054402586072683334, -0.004517357796430588, -0.01601545512676239, -0.04555753991007805, -0.007600633427500725, 0.025369370356202126, -0.011056308634579182, -0.011518915183842182, 0.006573645863682032, 0.05347737297415733, -0.003555135102942586, 0.0063700987957417965, 0.03258603811264038, -0.039895232766866684, 0.025073301047086716, 0.03306715190410614, 0.020206674933433533, -0.0159414391964674, 0.07890225946903229, -0.014562869444489479, 0.012222077697515488, -0.025665437802672386, 0.025054797530174255, 0.03421441838145256, 0.0017671588575467467, -0.015303040854632854, -0.11835338175296783, -0.005976882763206959, -0.010991543531417847, -0.025776464492082596, 0.0027178162708878517, -0.028459584340453148, 0.03291911631822586, 0.04718591645359993, -0.011916757561266422, 0.04814814031124115, -0.013831950724124908, -0.04907335340976715, 0.04422523453831673, 0.05939874425530434, 0.0029722503386437893, -0.0602499395608902, -0.03624988719820976, 0.04318899288773537, 0.010371649637818336, 0.006027769763022661, 0.06443190574645996, -0.03082813322544098, 0.03793377801775932, -0.020132659003138542, -0.022963812574744225, 0.07808806747198105, -0.021372444927692413, 0.040228307247161865, -0.026775695383548737, -0.026886720210313797, -0.004917512647807598, -0.04781506210565567, -0.012508894316852093, 0.06032395735383034, 0.0082945441827178, 0.03656446188688278, -0.04507642984390259, 0.00012280771625228226, -0.0661713108420372, -0.03055056929588318, -0.004552053287625313, 0.0009495009435340762, -0.021724026650190353, 0.020558256655931473, 0.040413349866867065, 0.0360463410615921, -0.006943731568753719, -0.03774873539805412, 0.00841019582003355, 0.02990291826426983, -0.04666779935359955, -0.070982426404953, -0.010186607018113136, 0.07205567508935928, 0.00040882895700633526, 0.038970015943050385, 0.023315394297242165, -0.05273720249533653, 0.005074799060821533, -0.010269876569509506, -0.05033164471387863, 0.006925227586179972, -0.04466933757066727, 0.044040191918611526, -0.024869754910469055, 0.04548352584242821, 0.010205111466348171, 0.011759471148252487, 0.020854325965046883, -0.01896688900887966, -0.0011299176840111613, 0.023148857057094574, -0.009418679401278496, -0.015395562164485455, 0.019225949421525, -0.01821746490895748, 0.00465382682159543, -0.03241950273513794, -0.04470634460449219, -0.021131889894604683, -0.027182789519429207, 0.012536650523543358, -0.026960738003253937, -0.020058641210198402, 0.01616349071264267, 0.06813276559114456, -0.0027178162708878517, 0.021039368584752083, 0.07002019882202148, -0.026572149246931076, 0.020280692726373672, -0.024647703394293785, -0.04936942458152771, -0.011259855702519417, -0.023389412090182304, 0.038970015943050385, 0.03593531623482704, -0.0165428277105093, 0.040968477725982666, -0.04248582944273949, -0.041412580758333206, 0.038525912910699844, -0.037970785051584244, 0.03062458522617817, 0.0009263706160709262, -0.0007893232395872474, 0.006582898087799549, -0.054032500833272934, -0.0019915231969207525, -0.10007115453481674, -0.019503513351082802, 0.055845919996500015, 0.0033562141470611095, 0.03295612707734108, -0.05018361285328865, 0.012971501797437668, -0.022834284231066704, 0.009983059950172901, 0.039932239800691605, -0.05129386857151985, -0.08053063601255417, -0.029514329507946968, 0.020798811689019203, 0.005851978901773691, 0.0096129747107625, -0.0023731740657240152, 0.04692685976624489, 0.0029791893903166056, 0.01788438856601715, 0.0005305524682626128, 0.07853217422962189, 0.0314202718436718, 0.008160388097167015, -0.003242875449359417, -0.014590625651180744, 0.00197417545132339, 0.039673179388046265, 0.007545121014118195, -0.03626839071512222, 0.00928452331572771, 0.006800323259085417, 0.008775655180215836, 0.020280692726373672, 0.002875102683901787, -0.03543569892644882, 0.08489764481782913, -0.002300313441082835, -0.08534174412488937, 0.05395848676562309, 0.029144244268536568, 0.04581660032272339, -0.006189682055264711, 0.03630540147423744, -0.04537249729037285, 0.06076806038618088, -0.012314599007368088, 0.011352377012372017, -0.021872060373425484, 0.05084976553916931, -0.04492839425802231, -0.041819676756858826, -0.015312292613089085, 0.00047214829828590155, -0.006814201828092337, -0.04951745644211769, -0.023833515122532845, -0.08208499103784561, -0.024351634085178375, 0.020225180312991142, 0.039562154561281204, 0.01798616163432598, 0.023167360574007034, -0.03351125493645668, -0.00844720471650362, -0.041597623378038406, -0.04711190238595009, 0.006772567052394152, 0.025535909458994865, -0.04537249729037285, -0.06824379414319992, -0.038858991116285324, -0.01703319139778614, 0.04663078859448433, 0.04326301068067551, 0.010029320605099201, -0.023167360574007034, 0.09155918657779694, -0.011537419632077217, -0.042633865028619766, 0.06243344768881798, -0.04951745644211769, -0.015219771303236485, -0.04918438196182251, -0.013609899207949638, -0.005440258886665106, 0.01799541339278221, 0.0304025337100029, 0.05980583652853966, -0.03219744935631752, -0.038858991116285324, -0.025665437802672386, -0.040524378418922424, -0.019947616383433342, -0.057696349918842316, -0.020410222932696342, -0.03232698142528534, 0.028126507997512817, -0.0367865115404129, -0.019836589694023132, 0.04674181342124939, 0.019873598590493202, -0.019485007971525192, -0.07009422034025192, 0.041449591517448425, 0.03204941749572754, -0.024795737117528915, -0.057289253920316696, -0.023833515122532845, 0.07138951867818832, 0.0007875884766690433, 0.0017937588272616267, 0.01758831925690174, 0.05051668733358383, 0.06750361621379852, -0.01607096940279007, -0.00930765364319086, 0.0005698740715160966, -0.039599161595106125, -0.01770859770476818, -0.027756422758102417, -0.06317361444234848, -0.008951446041464806, 0.014026245102286339, -0.018587550148367882, 0.011759471148252487, 0.011139577254652977, -0.03708257898688316, -0.024795737117528915, 0.002690059831365943, -0.012555154971778393, -0.04936942458152771, -0.004348506219685078, -0.0016642288537696004, -0.04948044940829277, -0.0022251398768275976, 0.0032521274406462908, 0.0079244589433074, 0.0720926821231842, 0.06332165002822876, -0.03149428591132164, 0.01634853333234787, 0.05318130552768707, -0.011713210493326187, -0.010279128327965736, -0.003062458708882332, 0.006772567052394152, 0.02988441474735737, -0.03658296540379524, 0.023907531052827835, 0.007424843031913042, 0.05329233035445213, 0.01629301905632019, -0.0073647042736411095, 0.04737095907330513, 0.028237532824277878, -0.04581660032272339, -0.020410222932696342, 0.03010646626353264, -0.06124917045235634, 0.021668514236807823, -0.005236711818724871, 0.011509663425385952, -0.003643030533567071, 0.04766703024506569, 0.01788438856601715, -0.05029463768005371, 0.013202805072069168, 0.022464197129011154, -0.03569475933909416, -0.04444728419184685, 0.013350838795304298, 0.02988441474735737, 0.010232867673039436, 0.06902097165584564, 0.0072166696190834045, 0.01826372556388378, 0.0170516949146986, 0.02969937212765217, 0.006268325261771679, 0.05432857200503349, 0.00896995048969984, 0.04370711371302605, 0.024610694497823715, 0.029088729992508888, 0.09785064309835434, 0.028589114546775818, -0.03488057106733322, 0.11080364137887955, -0.0023141917772591114, 0.013054770417511463, -0.004255984909832478, -0.027682404965162277, 0.01806943118572235, 0.019207444041967392, -0.00107498315628618, 0.004242106340825558, -0.008007727563381195, -0.06942806392908096, -0.04999857023358345, 0.029958432540297508, -0.024980779737234116, -0.038784973323345184, -0.019855093210935593, -0.007498859893530607, 0.003363153198733926, 0.0386369414627552, -0.03515813499689102, 0.06657840311527252, 0.024314625188708305, 0.028330055996775627, 0.022445693612098694, 0.021724026650190353, 0.008734021335840225, -0.0621003694832325, -0.0065227593295276165, 0.0030485803727060556, -0.019762571901082993, -0.012018530629575253, -0.010713978670537472, 0.0156638752669096, 0.009770261123776436, 0.020965350791811943, -0.03116120956838131, 0.023204369470477104, -0.03630540147423744, -0.023204369470477104, -0.012148060835897923, 0.025887489318847656, -0.03695305064320564, -0.027256807312369347, 0.020521247759461403, 0.03230847418308258, -0.014183531515300274, 0.03071710653603077, -0.05495771765708923, 0.001964923460036516, 0.04651976376771927, -0.005976882763206959, 0.026035524904727936, 0.03569475933909416, 0.03684202581644058 ]
323
datetime
timedelta
Difference between two datetime values. timedelta(days=0, seconds=0, microseconds=0, milliseconds=0, minutes=0, hours=0, weeks=0) All arguments are optional and default to 0. Arguments may be integers or floats, and may be positive or negative.
class timedelta: """Represent the difference between two datetime objects. Supported operators: - add, subtract timedelta - unary plus, minus, abs - compare to timedelta - multiply, divide by int In addition, datetime supports subtraction of two datetime objects returning a timedelta, and addition or subtraction of a datetime and a timedelta giving a datetime. Representation: (days, seconds, microseconds). Why? Because I felt like it. """ __slots__ = '_days', '_seconds', '_microseconds', '_hashcode' def __new__(cls, days=0, seconds=0, microseconds=0, milliseconds=0, minutes=0, hours=0, weeks=0): # Doing this efficiently and accurately in C is going to be difficult # and error-prone, due to ubiquitous overflow possibilities, and that # C double doesn't have enough bits of precision to represent # microseconds over 10K years faithfully. The code here tries to make # explicit where go-fast assumptions can be relied on, in order to # guide the C implementation; it's way more convoluted than speed- # ignoring auto-overflow-to-long idiomatic Python could be. # XXX Check that all inputs are ints or floats. # Final values, all integer. # s and us fit in 32-bit signed ints; d isn't bounded. d = s = us = 0 # Normalize everything to days, seconds, microseconds. days += weeks*7 seconds += minutes*60 + hours*3600 microseconds += milliseconds*1000 # Get rid of all fractions, and normalize s and us. # Take a deep breath <wink>. if isinstance(days, float): dayfrac, days = _math.modf(days) daysecondsfrac, daysecondswhole = _math.modf(dayfrac * (24.*3600.)) assert daysecondswhole == int(daysecondswhole) # can't overflow s = int(daysecondswhole) assert days == int(days) d = int(days) else: daysecondsfrac = 0.0 d = days assert isinstance(daysecondsfrac, float) assert abs(daysecondsfrac) <= 1.0 assert isinstance(d, int) assert abs(s) <= 24 * 3600 # days isn't referenced again before redefinition if isinstance(seconds, float): secondsfrac, seconds = _math.modf(seconds) assert seconds == int(seconds) seconds = int(seconds) secondsfrac += daysecondsfrac assert abs(secondsfrac) <= 2.0 else: secondsfrac = daysecondsfrac # daysecondsfrac isn't referenced again assert isinstance(secondsfrac, float) assert abs(secondsfrac) <= 2.0 assert isinstance(seconds, int) days, seconds = divmod(seconds, 24*3600) d += days s += int(seconds) # can't overflow assert isinstance(s, int) assert abs(s) <= 2 * 24 * 3600 # seconds isn't referenced again before redefinition usdouble = secondsfrac * 1e6 assert abs(usdouble) < 2.1e6 # exact value not critical # secondsfrac isn't referenced again if isinstance(microseconds, float): microseconds = round(microseconds + usdouble) seconds, microseconds = divmod(microseconds, 1000000) days, seconds = divmod(seconds, 24*3600) d += days s += seconds else: microseconds = int(microseconds) seconds, microseconds = divmod(microseconds, 1000000) days, seconds = divmod(seconds, 24*3600) d += days s += seconds microseconds = round(microseconds + usdouble) assert isinstance(s, int) assert isinstance(microseconds, int) assert abs(s) <= 3 * 24 * 3600 assert abs(microseconds) < 3.1e6 # Just a little bit of carrying possible for microseconds and seconds. seconds, us = divmod(microseconds, 1000000) s += seconds days, s = divmod(s, 24*3600) d += days assert isinstance(d, int) assert isinstance(s, int) and 0 <= s < 24*3600 assert isinstance(us, int) and 0 <= us < 1000000 if abs(d) > 999999999: raise OverflowError("timedelta # of days is too large: %d" % d) self = object.__new__(cls) self._days = d self._seconds = s self._microseconds = us self._hashcode = -1 return self def __repr__(self): args = [] if self._days: args.append("days=%d" % self._days) if self._seconds: args.append("seconds=%d" % self._seconds) if self._microseconds: args.append("microseconds=%d" % self._microseconds) if not args: args.append('0') return "%s.%s(%s)" % (self.__class__.__module__, self.__class__.__qualname__, ', '.join(args)) def __str__(self): mm, ss = divmod(self._seconds, 60) hh, mm = divmod(mm, 60) s = "%d:%02d:%02d" % (hh, mm, ss) if self._days: def plural(n): return n, abs(n) != 1 and "s" or "" s = ("%d day%s, " % plural(self._days)) + s if self._microseconds: s = s + ".%06d" % self._microseconds return s def total_seconds(self): """Total seconds in the duration.""" return ((self.days * 86400 + self.seconds) * 10**6 + self.microseconds) / 10**6 # Read-only field accessors @property def days(self): """days""" return self._days @property def seconds(self): """seconds""" return self._seconds @property def microseconds(self): """microseconds""" return self._microseconds def __add__(self, other): if isinstance(other, timedelta): # for CPython compatibility, we cannot use # our __class__ here, but need a real timedelta return timedelta(self._days + other._days, self._seconds + other._seconds, self._microseconds + other._microseconds) return NotImplemented __radd__ = __add__ def __sub__(self, other): if isinstance(other, timedelta): # for CPython compatibility, we cannot use # our __class__ here, but need a real timedelta return timedelta(self._days - other._days, self._seconds - other._seconds, self._microseconds - other._microseconds) return NotImplemented def __rsub__(self, other): if isinstance(other, timedelta): return -self + other return NotImplemented def __neg__(self): # for CPython compatibility, we cannot use # our __class__ here, but need a real timedelta return timedelta(-self._days, -self._seconds, -self._microseconds) def __pos__(self): return self def __abs__(self): if self._days < 0: return -self else: return self def __mul__(self, other): if isinstance(other, int): # for CPython compatibility, we cannot use # our __class__ here, but need a real timedelta return timedelta(self._days * other, self._seconds * other, self._microseconds * other) if isinstance(other, float): usec = self._to_microseconds() a, b = other.as_integer_ratio() return timedelta(0, 0, _divide_and_round(usec * a, b)) return NotImplemented __rmul__ = __mul__ def _to_microseconds(self): return ((self._days * (24*3600) + self._seconds) * 1000000 + self._microseconds) def __floordiv__(self, other): if not isinstance(other, (int, timedelta)): return NotImplemented usec = self._to_microseconds() if isinstance(other, timedelta):
null
[ 0.010722691193223, -0.014322451315820217, -0.005908421706408262, 0.03873298689723015, 0.008299143984913826, -0.04265005141496658, -0.02818535827100277, 0.04017726704478264, -0.03698234260082245, -0.015022709034383297, -0.004765032324939966, 0.07707207649946213, 0.05899668484926224, 0.02958587370812893, 0.014978942461311817, 0.06691834330558777, -0.007943544536828995, 0.007390997838228941, -0.03921441361308098, -0.020909247919917107, 0.03308716043829918, 0.00007868492684792727, 0.00751682510599494, 0.07431481033563614, -0.019771328195929527, 0.03536299616098404, 0.0034164900425821543, 0.008933751843869686, -0.017057832330465317, -0.002650583628565073, 0.027813347056508064, 0.07847259193658829, -0.038929931819438934, -0.02573445811867714, -0.008353851735591888, -0.0393894761800766, -0.006132722832262516, -0.0015400191769003868, -0.04862412065267563, 0.05352592095732689, 0.02993600256741047, -0.022025281563401222, 0.03612890467047691, -0.006395319011062384, 0.013118884526193142, -0.021259376779198647, 0.05672084540128708, 0.027069324627518654, -0.014016089029610157, -0.07199521362781525, 0.01684994250535965, 0.01702500693500042, 0.02385251596570015, 0.013961381278932095, -0.04936814308166504, 0.05448877438902855, -0.0054625547491014, 0.04752996936440468, -0.06030966714024544, 0.021379733458161354, -0.04529789835214615, 0.01846928708255291, 0.0512063205242157, 0.02385251596570015, -0.0787789523601532, 0.0006325566791929305, -0.03566936030983925, -0.05593305826187134, -0.03216807171702385, -0.031796060502529144, -0.005260136444121599, -0.018272340297698975, 0.04000220075249672, -0.02385251596570015, 0.03072379156947136, 0.06175394728779793, -0.0003576509770937264, -0.010629688389599323, 0.017955036833882332, 0.015898030251264572, -0.013611252419650555, 0.0005224576452746987, 0.011138468980789185, 0.0008787409169599414, 0.0678374320268631, 0.04914931207895279, 0.01339242234826088, 0.031533464789390564, -0.05011216923594475, 0.012451451271772385, -0.017528317868709564, -0.020953012630343437, 0.03466273844242096, 0.02398381568491459, -0.01973850466310978, 0.007571532856673002, -0.04643581807613373, -0.035691242665052414, -0.02512173354625702, -0.010492919012904167, 0.05365721881389618, -0.011926257982850075, -0.013250182382762432, -0.02757263369858265, -0.0068439217284321785, -0.0017287604277953506, -0.02284589596092701, -0.05939057841897011, 0.02547186240553856, -0.0046173217706382275, -0.019705679267644882, 0.009261997416615486, -0.030789440497756004, 0.018983539193868637, -0.04941191151738167, -0.04293452948331833, 0.014103621244430542, -0.005290225613862276, -0.009530064649879932, -0.0046966481022536755, -0.03361235186457634, 0.019858861342072487, -0.006138193421065807, 0.019705679267644882, 0.018141042441129684, -0.026237769052386284, 0.005695061758160591, 0.016532639041543007, -0.011970024555921555, 0.015919912606477737, 0.0033864008728414774, -0.00469391280785203, 0.036085136234760284, 0.05886538326740265, 0.03947700932621956, 0.015526019036769867, 0.0612725205719471, 0.10556379705667496, -0.0013389686355367303, 0.03575689345598221, 0.0323212556540966, -0.009075991809368134, 0.006641503423452377, 0.05422617867588997, -0.008414030075073242, 0.0035505236592143774, 0.0070189861580729485, 0.008113138377666473, -0.1098528727889061, 0.05711474269628525, -0.042124856263399124, -0.028644902631640434, 0.05330709367990494, 0.038579802960157394, 0.04170908033847809, -0.007117459550499916, -0.008353851735591888, -0.017867503687739372, -0.08276166766881943, 0.020635709166526794, -0.0350128673017025, -0.03094262257218361, -0.0014388100244104862, -0.027550751343369484, 0.03308716043829918, 0.003205865854397416, 0.043875500559806824, -0.028863733634352684, -0.05448877438902855, 0.0512063205242157, 0.04722360521554947, 0.01829422451555729, 0.034684620797634125, 0.0008418132783845067, -0.004442257806658745, -0.030964504927396774, 0.05015593394637108, -0.01799880340695381, 0.0023537948727607727, -0.04752996936440468, 0.017572082579135895, -0.01070080790668726, -0.07322066277265549, -0.004540731199085712, 0.0047841803170740604, 0.04516660049557686, -0.030920738354325294, 0.02354615367949009, 0.025887640193104744, -0.02516549825668335, 0.03599760681390762, -0.026150235906243324, 0.012637456879019737, 0.03146781399846077, -0.007254228461533785, 0.02862302027642727, -0.003197659505531192, 0.013819141313433647, 0.07322066277265549, 0.022780247032642365, -0.06976313889026642, 0.06779366731643677, 0.038054611533880234, -0.06057226285338402, 0.05374475196003914, 0.0006448659114539623, -0.040111616253852844, 0.002937798388302326, -0.05711474269628525, -0.05387604981660843, -0.017714323475956917, -0.042562518268823624, 0.018053509294986725, 0.01684994250535965, -0.00034329024492762983, -0.022824013605713844, -0.008501562289893627, -0.039849020540714264, -0.012987585738301277, -0.0010401284089311957, 0.029432691633701324, -0.03286832943558693, -0.03553806245326996, -0.04050551354885101, 0.020810773596167564, -0.0253843292593956, 0.0040292153134942055, 0.014606931246817112, 0.021609503775835037, -0.06451120972633362, 0.05658954754471779, -0.05063736066222191, -0.03299962729215622, -0.03212430700659752, 0.06013460084795952, 0.012593691237270832, -0.008627389557659626, 0.008988459594547749, 0.04048362746834755, -0.04098694026470184, -0.020679475739598274, -0.014289626851677895, 0.012090381234884262, 0.04415997862815857, 0.016784293577075005, -0.038536038249731064, 0.04748620092868805, 0.029038798063993454, -0.04949944093823433, 0.015963679179549217, -0.029301393777132034, -0.0020501676481217146, 0.04122765362262726, -0.00452979002147913, 0.036697860807180405, 0.017145363613963127, 0.011816843412816525, 0.027813347056508064, -0.003911593928933144, 0.0038760339375585318, 0.029388926923274994, -0.04131518304347992, 0.008304614573717117, -0.02315225824713707, -0.02682860940694809, 0.03221184015274048, -0.018239516764879227, -0.017845621332526207, -0.029782820492982864, 0.022780247032642365, 0.14005146920681, -0.07917284965515137, 0.0009074624394997954, -0.01558072678744793, -0.05089995637536049, -0.004464140627533197, 0.04704854264855385, 0.01205755677074194, -0.022561417892575264, -0.004573556128889322, -0.032496318221092224, 0.005320314783602953, -0.006083485670387745, -0.03446579352021217, -0.03873298689723015, 0.014278685674071312, -0.019847920164465904, 0.0240713469684124, 0.015493194572627544, 0.030526844784617424, -0.014278685674071312, -0.06092239171266556, 0.03435637801885605, -0.03304339572787285, 0.02853548713028431, 0.06315445899963379, -0.05685214325785637, -0.06162264943122864, 0.013578427955508232, -0.026150235906243324, -0.05593305826187134, 0.05002463608980179, 0.03330599144101143, 0.04418186470866203, -0.04897424951195717, -0.032627616077661514, 0.03693857416510582, 0.012134146876633167, 0.05396358296275139, -0.023392973467707634, -0.03435637801885605, -0.02586575597524643, 0.025056084617972374, 0.05186280980706215, 0.027550751343369484, 0.00684939231723547, -0.00188467709813267, 0.022069048136472702, -0.008764158934354782, 0.08648178726434708, -0.013293948024511337, 0.019071072340011597, -0.0004150939639657736, 0.04696100950241089, 0.05234423652291298, -0.04219050705432892, -0.0068439217284321785, -0.007544178981333971, 0.02809782698750496, -0.012363919056952, -0.012363919056952, -0.05895291641354561, 0.032452553510665894, 0.014234919100999832, -0.006876746192574501, -0.034028131514787674, 0.0203512292355299, 0.008424971252679825, -0.001434706966392696, -0.03667597845196724, 0.10468847304582596, 0.043043944984674454, -0.05286943167448044, -0.02197057567536831, 0.023699335753917694, -0.0332622230052948, 0.0005405795527622104, -0.011433890089392662, 0.07111988961696625, 0.009382354095578194, 0.026981791481375694, -0.03378741815686226, -0.035034749656915665, -0.0028311186470091343, 0.0017643203027546406, -0.005391434766352177, 0.006811096798628569, -0.05523280054330826, 0.03615078702569008, -0.0455167293548584, -0.025712575763463974, 0.04643581807613373, 0.010968875139951706, 0.020537234842777252, 0.02127031795680523, -0.03833908960223198, -0.008742275647819042, -0.04774880036711693, -0.0027353803161531687, -0.009683246724307537, -0.004075716715306044, -0.037529416382312775, 0.04446634277701378, -0.04516660049557686, 0.05982824042439461, 0.006526617333292961, 0.01720007136464119, 0.09050826728343964, -0.040199149399995804, -0.01304229348897934, 0.036654096096754074, -0.007265170104801655, -0.06236667186021805, 0.04827399179339409, 0.042015440762043, 0.007330819498747587, 0.05829642713069916, 0.006056132260710001, 0.05545163154602051, 0.04284699633717537, -0.06153511628508568, -0.03724493831396103, 0.02490290254354477, -0.008255377411842346, -0.03330599144101143, -0.0026902465615421534, 0.012932877987623215, 0.0027476896066218615, -0.039061229676008224, 0.01369878463447094, 0.0621478408575058, -0.03680727630853653, -0.004896330647170544, 0.06687457859516144, -0.00905958004295826, 0.04490400478243828, 0.04197167605161667, -0.001367006334476173, -0.044575758278369904, 0.07628428936004639, -0.03072379156947136, -0.06486133486032486, -0.03352482244372368, -0.0037064403295516968, -0.020230872556567192, -0.017495492473244667, -0.08656931668519974, -0.0704633966088295, 0.03717929124832153, -0.0006824773736298084, -0.025581276044249535, -0.04569179192185402, 0.02919197827577591, 0.0029870353173464537, -0.02617211826145649, 0.02131408266723156, 0.03658844903111458, 0.036260202527046204, -0.02131408266723156, 0.0014784730738028884, 0.04556049406528473, 0.028951264917850494, -0.02446524240076542, -0.03518793359398842, 0.037047989666461945, 0.013326773419976234, -0.03527546301484108, -0.008753216825425625, 0.005057718139141798, 0.021062428131699562, 0.00108868139795959, 0.005085072014480829, 0.00146342848893255, -0.0017547465395182371, 0.04700477421283722, -0.03814214468002319, -0.0008725863299332559, 0.01299852691590786, -0.02175174467265606, -0.0005269026150926948, 0.05615188926458359, 0.0027066587936133146, 0.041249535977840424, -0.0010182453552260995, -0.007215933408588171, -0.10144978761672974, -0.005137044470757246, 0.0026314358692616224, -0.007128401193767786, -0.04612945392727852, 0.007823187857866287, 0.015722965821623802, 0.006652445066720247, -0.00368729280307889, -0.04739867150783539, 0.0468297116458416, 0.0012972541153430939, -0.032014891505241394, -0.07405221462249756, 0.009486299008131027, 0.03833908960223198, 0.011740252375602722, 0.0019694739021360874, 0.004297282546758652, -0.010049787349998951, -0.0031566289253532887, -0.00375841255299747, -0.04512283578515053, -0.019716622307896614, -0.05068112537264824, 0.07610922306776047, -0.04083375632762909, 0.04227804020047188, -0.020898304879665375, 0.021740803495049477, -0.006072544492781162, 0.02017616480588913, -0.0025493744760751724, 0.07912908494472504, -0.0411401204764843, -0.02630341798067093, -0.01555884350091219, -0.004160513635724783, -0.0036954989191144705, -0.018359873443841934, -0.05466384068131447, -0.0652114674448967, -0.005495379213243723, -0.013250182382762432, -0.015679199248552322, -0.02704744040966034, 0.02183927595615387, 0.08193010836839676, -0.006121781188994646, 0.03838285803794861, 0.04836152493953705, -0.029563991352915764, 0.05068112537264824, -0.009026754647493362, -0.04556049406528473, -0.03733247146010399, -0.018447404727339745, 0.010339737869799137, 0.0002528517215978354, -0.02354615367949009, 0.010946991853415966, -0.0065813250839710236, -0.027988411486148834, -0.027638282626867294, -0.04170908033847809, 0.036566562950611115, 0.014760112389922142, -0.020110515877604485, 0.04560426250100136, -0.04717984050512314, 0.015526019036769867, -0.08998306840658188, -0.06818756461143494, 0.02569069154560566, 0.013797258026897907, 0.0015318129444494843, -0.05685214325785637, -0.05628318712115288, -0.03046119585633278, 0.0017328634858131409, 0.04446634277701378, -0.05895291641354561, -0.05685214325785637, -0.015876147896051407, 0.0009758469532243907, 0.01699218340218067, 0.018852241337299347, -0.0006677747005596757, 0.024049464613199234, -0.02612835355103016, 0.04967450723052025, 0.015263422392308712, 0.05750863626599312, 0.02897314913570881, 0.02901691384613514, -0.005137044470757246, 0.007090105675160885, 0.02757263369858265, 0.011849667876958847, 0.009316705167293549, -0.04512283578515053, 0.007604357320815325, -0.009404237382113934, 0.009437061846256256, 0.02608458697795868, 0.023392973467707634, -0.01623721793293953, 0.05335085839033127, -0.06691834330558777, -0.07720337808132172, -0.0015112976543605328, 0.04866788536310196, 0.019858861342072487, -0.07772856950759888, 0.019672855734825134, -0.09182124584913254, 0.05965317413210869, -0.016773352399468422, -0.007122930604964495, -0.04774880036711693, -0.008654743432998657, -0.043569136410951614, -0.0070189861580729485, 0.017670556902885437, -0.03405001387000084, -0.06814379245042801, 0.004234368912875652, -0.042474985122680664, -0.07055092602968216, 0.013950440101325512, -0.00783412903547287, 0.025187382474541664, -0.02433394268155098, -0.011794960126280785, 0.0015536959981545806, -0.016313808038830757, -0.026762960478663445, -0.05081242322921753, -0.007533237338066101, 0.03433449566364288, -0.02402758039534092, -0.04827399179339409, 0.021335966885089874, 0.020712299272418022, 0.05724604055285454, 0.02014334127306938, -0.05230047181248665, 0.006548500619828701, 0.015088357962667942, -0.007959956303238869, 0.022134697064757347, 0.06818756461143494, -0.0253843292593956, -0.026719195768237114, -0.06910664588212967, -0.004256251733750105, 0.004056569188833237, 0.023305440321564674, 0.041555896401405334, 0.03619455173611641, -0.039586424827575684, -0.070025734603405, 0.02586575597524643, -0.03155534714460373, -0.009513652883470058, -0.08263036608695984, 0.03980525583028793, -0.007653594017028809, 0.016084035858511925, -0.03116145357489586, -0.007090105675160885, 0.001568740583024919, -0.0013095632893964648, -0.011143939569592476, -0.06818756461143494, 0.006083485670387745, 0.06000330299139023, 0.039411358535289764, -0.07387714833021164, -0.025756340473890305, 0.0277914647012949, -0.009956784546375275, -0.01116035133600235, 0.006351552903652191, 0.05759616941213608, 0.06893158704042435, -0.009737953543663025, -0.03433449566364288, 0.0009587507811374962, -0.0393894761800766, -0.012177913449704647, -0.009513652883470058, -0.08503750711679459, 0.009289351291954517, 0.022112814709544182, -0.03444390743970871, 0.05597682297229767, 0.00485803559422493, -0.07050716131925583, -0.04661088064312935, 0.0010073038283735514, -0.009913017973303795, -0.07549649477005005, -0.009836427867412567, 0.034509558230638504, 0.05133761838078499, -0.024180762469768524, -0.026237769052386284, -0.01201379019767046, 0.027550751343369484, 0.0459543913602829, 0.013709725812077522, 0.0573335699737072, 0.09908641874790192, -0.00567864952608943, 0.014486574567854404, -0.02555939368903637, 0.021106194704771042, 0.04385361820459366, -0.023699335753917694, 0.011499539017677307, 0.014388100244104862, 0.019924510270357132, -0.0161606278270483, -0.008501562289893627, 0.01983697898685932, 0.011784018017351627, -0.02892938256263733, -0.0260408204048872, 0.008550798520445824, -0.02240823581814766, 0.02306472696363926, -0.05195034295320511, -0.01422397792339325, -0.07812245935201645, 0.05125008523464203, 0.013862907886505127, -0.02814159356057644, 0.015252480283379555, 0.025931404903531075, -0.006854862906038761, -0.04153401404619217, 0.0075879450887441635, 0.05781500041484833, -0.03558182716369629, 0.016915591433644295, -0.005640354473143816, 0.02319602482020855, 0.01253898348659277, 0.037879545241594315, 0.011773076839745045, 0.017933152616024017, -0.007062751799821854, 0.05763993412256241, -0.018852241337299347, 0.011269766837358475, 0.09068332612514496, 0.002450900850817561, -0.04818645864725113, 0.05816512554883957, -0.0547076053917408, 0.01385196577757597, 0.0060014245100319386, -0.02906068041920662, 0.0341375470161438, 0.006143664009869099, 0.05081242322921753, 0.038579802960157394, 0.025931404903531075, -0.09348435699939728, -0.024180762469768524, -0.004603645298629999, -0.031839825212955475, 0.015722965821623802, -0.003903387812897563, -0.011652720160782337, 0.03947700932621956, 0.04335030913352966, -0.00752776674926281, 0.007325348444283009, 0.016270041465759277, 0.03068002499639988, -0.013578427955508232, 0.033721767365932465, 0.05772746726870537, -0.023305440321564674, -0.005782593972980976, 0.017342310398817062, -0.015690142288804054, -0.040417980402708054, -0.005082336720079184, -0.002896767808124423, 0.04958697408437729, 0.009174465201795101, -0.03286832943558693, 0.011116585694253445, -0.05068112537264824, -0.07155755162239075, -0.00753870839253068, 0.025449978187680244, -0.03798896074295044, -0.02293342910706997, -0.02967340499162674, 0.016510754823684692, -0.02695990912616253, 0.01404891349375248, -0.0573335699737072, 0.03111768700182438, 0.0800919383764267, -0.0077630095183849335, 0.029914120212197304, -0.022999078035354614, 0.0630231648683548 ]
324
maya.core
to_iso8601
null
def to_iso8601(dt): return to_utc_offset_naive(dt).isoformat() + 'Z'
(dt)
[ -0.01898876018822193, 0.005848986096680164, 0.03444833308458328, 0.0037594474852085114, 0.000010280579772370402, -0.046619731932878494, -0.05398799106478691, 0.018282921984791756, 0.02818186953663826, -0.028646688908338547, 0.0006299818633124232, -0.021485017612576485, -0.032003723084926605, 0.004273762460798025, 0.012808375060558319, 0.04593110829591751, -0.02432558313012123, 0.0230860635638237, 0.01035515870898962, 0.009270577691495419, 0.03911374881863594, -0.030196089297533035, -0.025926630944013596, -0.04675745591521263, -0.009700966998934746, 0.029972286894917488, -0.01261900458484888, -0.011706579476594925, -0.015580080449581146, -0.03842512518167496, 0.02201869897544384, 0.015304631553590298, 0.0037938787136226892, -0.006219120230525732, 0.04865116626024246, 0.007669531274586916, 0.016260094940662384, 0.028956569731235504, -0.05891164019703865, 0.023292649537324905, -0.03155611827969551, -0.0788472592830658, -0.07795204967260361, -0.03907931596040726, 0.05643260106444359, 0.016251487657427788, 0.0054358127526938915, 0.09303287416696548, -0.038080815225839615, 0.027458814904093742, 0.02208756096661091, 0.030833065509796143, -0.0005334133165888488, -0.004060719627887011, -0.049511946737766266, -0.014986143447458744, 0.052714038640260696, -0.0029029734432697296, 0.0031870303209871054, 0.024463308975100517, -0.047273922711610794, 0.021243998780846596, 0.04723949357867241, -0.0013083823723718524, -0.04445056989789009, 0.06073648855090141, -0.0514056570827961, -0.050648171454668045, 0.0016031988197937608, 0.010570352897047997, 0.03646255284547806, 0.0037938787136226892, 0.010157179087400436, -0.005917848087847233, -0.02835402451455593, 0.057465534657239914, -0.013187117874622345, -0.032502975314855576, -0.017215557396411896, -0.005461635999381542, -0.024463308975100517, -0.06924097239971161, -0.0019206106662750244, 0.0801556408405304, 0.001525728846900165, 0.0031117121689021587, 0.009459949098527431, -0.020228281617164612, -0.05216314271092415, 0.038011953234672546, 0.04696404188871384, 0.007325219921767712, 0.02539294771850109, 0.0027587933000177145, -0.049752961844205856, 0.04913320392370224, -0.037013448774814606, 0.015347669832408428, -0.042178116738796234, -0.021502232179045677, -0.007092810235917568, -0.03513695299625397, -0.061011940240859985, 0.017645947635173798, -0.04083530604839325, 0.02160552516579628, 0.03131509944796562, 0.03444833308458328, -0.018713312223553658, -0.05498649179935455, -0.0037745111621916294, 0.0028018320444971323, -0.01629452593624592, -0.08752389997243881, 0.06896552443504333, -0.003193486016243696, 0.064455047249794, -0.004936561454087496, 0.03193486109375954, -0.027820341289043427, -0.011190112680196762, 0.04593110829591751, 0.037667643278837204, -0.0007892257417552173, -0.012524318881332874, -0.025513457134366035, 0.009270577691495419, 0.03400072827935219, 0.010785547085106373, -0.019264210015535355, -0.009744006209075451, 0.05688020586967468, -0.02556510455906391, 0.00821182131767273, 0.06063319742679596, -0.03632482886314392, 0.04648200795054436, 0.006227727979421616, -0.05863619223237038, 0.08049994707107544, 0.00982147641479969, -0.06283678859472275, -0.002788920421153307, 0.013901563361287117, 0.006761410739272833, -0.028939353302121162, -0.020021693781018257, -0.06662420928478241, 0.005995318293571472, -0.00969235971570015, 0.05181882902979851, 0.014306128956377506, -0.023791901767253876, 0.020262712612748146, -0.018610019236803055, -0.08731731027364731, -0.001074896426871419, -0.08470054715871811, 0.05856733024120331, -0.021880974993109703, -0.03432782366871834, 0.05595056340098381, -0.050648171454668045, -0.042281411588191986, 0.0034022247418761253, 0.027975281700491905, 0.01034655049443245, -0.025341302156448364, 0.03424174711108208, -0.05250745266675949, 0.03539518639445305, 0.0058662015944719315, 0.005018335301429033, 0.03863171115517616, 0.04111075401306152, -0.03436225280165672, -0.02792363613843918, 0.050889190286397934, -0.042763445526361465, -0.0435553640127182, 0.06304337084293365, 0.03344982862472534, -0.017000364139676094, 0.06782929599285126, -0.014082326553761959, -0.07629935443401337, 0.03040267527103424, 0.0070540751330554485, -0.04689517989754677, -0.036428119987249374, 0.01607072353363037, 0.027235012501478195, -0.0011867975117638707, 0.014796772040426731, 0.0374610535800457, 0.00424148328602314, 0.0035033661406487226, 0.0014331951970234513, 0.009959200397133827, 0.000932868046220392, -0.012007852084934711, 0.016174016520380974, 0.019109269604086876, -0.09620054066181183, 0.03560177609324455, 0.0034689349122345448, -0.00556923309341073, -0.06696852296590805, -0.03880386799573898, -0.03425896167755127, 0.045311350375413895, -0.030385460704565048, -0.03983680158853531, -0.030351029708981514, -0.021089058369398117, 0.017973043024539948, -0.012567357160151005, 0.026425881311297417, -0.04148949682712555, 0.02151944860816002, -0.07037720084190369, 0.022655675187706947, 0.010002239607274532, -0.030023934319615364, 0.0649026557803154, 0.01881660521030426, 0.02095133438706398, -0.024118997156620026, -0.030540401116013527, -0.09289515018463135, 0.0020637151319533587, -0.04772152751684189, -0.01629452593624592, -0.04686075076460838, 0.002328404225409031, 0.026391450315713882, 0.006649509537965059, -0.12601788341999054, 0.010708076879382133, -0.04348650202155113, 0.017955826595425606, 0.0034775426611304283, 0.030196089297533035, -0.012825590558350086, -0.0061803855933249, 0.01088884100317955, -0.032330818474292755, 0.038907162845134735, 0.03852842003107071, 0.02990342490375042, -0.005310999695211649, -0.00856043677777052, -0.032830070704221725, 0.01194759737700224, -0.01824849098920822, -0.004239330999553204, -0.007183191832154989, 0.008293595165014267, -0.013264588080346584, 0.036014948040246964, -0.021261215209960938, 0.01289445348083973, -0.045896679162979126, 0.030919142067432404, -0.013075216673314571, -0.02055537700653076, 0.020434867590665817, -0.04586224630475044, -0.006090003531426191, -0.0045190840028226376, 0.0019163067918270826, 0.0026189167983829975, -0.031349532306194305, -0.02931809611618519, -0.020434867590665817, -0.017938612028956413, 0.0003690585435833782, -0.05519308149814606, -0.046723026782274246, 0.025651181116700172, -0.005767212249338627, -0.019333072006702423, 0.00603835703805089, -0.003709952812641859, -0.029937855899333954, -0.016802385449409485, -0.0015386404702439904, 0.034207314252853394, -0.0021175136789679527, -0.005633791442960501, 0.0030686731915920973, 0.026752976700663567, -0.03563620522618294, -0.04989068955183029, 0.0027953763492405415, -0.006201904732733965, 0.013101039454340935, -0.05119907110929489, 0.06238918378949165, 0.029524682089686394, -0.030419891700148582, 0.0871107280254364, -0.014125365763902664, 0.021829327568411827, -0.004136038012802601, 0.013342057354748249, -0.03171105682849884, 0.010406805202364922, -0.02480761893093586, 0.001907699042931199, -0.03763321042060852, -0.042763445526361465, -0.03379414230585098, -0.022535165771842003, 0.01921256259083748, 0.07092809677124023, -0.004678328055888414, -0.05126793310046196, 0.06090864539146423, 0.06996402889490128, -0.008401192724704742, 0.01281698327511549, 0.030919142067432404, -0.03255461901426315, 0.011732403188943863, -0.07609276473522186, -0.025771690532565117, 0.04238470271229744, 0.0077685206197202206, 0.030041148886084557, -0.017172519117593765, -0.09165563434362411, -0.006967997178435326, 0.02695956453680992, -0.026907917112112045, 0.01833456940948963, 0.01347978226840496, -0.01631174236536026, -0.01759430021047592, 0.042281411588191986, 0.01955687440931797, 0.08270354568958282, 0.0025285352021455765, -0.011190112680196762, -0.0009581533959135413, -0.009993631392717361, 0.0037078007590025663, -0.03499922901391983, -0.06934426724910736, 0.07051492482423782, 0.002552206628024578, 0.002345619723200798, 0.024136213585734367, 0.005212010350078344, -0.000670868786983192, 0.01075972430408001, 0.06421403586864471, 0.04410625994205475, 0.0004637441015802324, 0.035532914102077484, -0.0013460414484143257, -0.03625596687197685, 0.08621551841497421, -0.0805688127875328, 0.037839796394109726, 0.006498873233795166, 0.05323050543665886, -0.061321817338466644, 0.012119753286242485, -0.08332329988479614, -0.05477990582585335, 0.0033505780156701803, 0.04937422275543213, -0.08655982464551926, 0.03573950007557869, 0.013040785677731037, -0.016346173360943794, -0.014082326553761959, -0.05522751063108444, -0.011181505396962166, 0.033570338040590286, -0.004773013759404421, 0.05519308149814606, 0.020589808002114296, 0.027803126722574234, -0.007363955024629831, -0.0006063104374334216, 0.015735020861029625, -0.059600263833999634, 0.008039665408432484, -0.01520133763551712, -0.04018111154437065, 0.05223200470209122, 0.05898050218820572, -0.023740254342556, -0.022466303780674934, -0.03193486109375954, -0.020400436595082283, 0.03055761568248272, 0.05026942864060402, 0.009459949098527431, -0.03162498027086258, 0.06669307500123978, -0.01988396979868412, 0.032571837306022644, -0.013092432171106339, -0.0012890149373561144, 0.04520805552601814, -0.038321834057569504, -0.006451530382037163, -0.06631433218717575, -0.024773187935352325, -0.02670133113861084, 0.001882951706647873, 0.061252955347299576, -0.00439857505261898, 0.0006030825315974653, 0.0034517194144427776, -0.021175136789679527, -0.005715565290302038, 0.0019647255539894104, -0.004661112558096647, -0.020159419625997543, 0.016905678436160088, 0.06376642733812332, -0.03133231773972511, 0.0200389102101326, 0.013135471381247044, -0.03732332959771156, 0.06514367461204529, 0.0368068628013134, 0.04018111154437065, 0.00454060360789299, -0.04331434518098831, 0.07202989608049393, 0.0206931009888649, 0.07802090793848038, -0.0633876845240593, 0.036600276827812195, 0.1095598116517067, 0.009520203806459904, 0.0829789936542511, 0.0024596729781478643, -0.001405219896696508, 0.029473036527633667, 0.0581541545689106, 0.02110627479851246, 0.03279563784599304, 0.05925595015287399, 0.009597674012184143, 0.0668652281165123, -0.00294816424138844, -0.006266463082283735, -0.052197571843862534, 0.00861208327114582, -0.0072305346839129925, 0.03165941312909126, 0.025530673563480377, -0.08635324239730835, -0.006378364283591509, -0.032830070704221725, 0.01638060435652733, 0.01972902938723564, -0.010690861381590366, 0.003950970713049173, 0.013505605049431324, -0.022208070382475853, 0.001882951706647873, -0.06862121820449829, 0.0036346346605569124, 0.01027768850326538, -0.015691980719566345, 0.013462566770613194, 0.02086525596678257, 0.0413862019777298, -0.00018762268882710487, -0.03728890046477318, -0.01574362814426422, 0.03425896167755127, 0.01766316220164299, -0.05629487708210945, -0.0015709196450188756, -0.006128738634288311, 0.014435245655477047, 0.026821840554475784, 0.054435595870018005, 0.008388280868530273, 0.031745489686727524, 0.0034883024636656046, -0.01907483860850334, 0.009787044487893581, 0.07967360317707062, -0.02769983373582363, -0.012644827365875244, 0.07691911607980728, 0.034792643040418625, -0.009425518102943897, -0.044967036694288254, -0.04968409985303879, -0.025926630944013596, -0.03047153726220131, 0.08938317745923996, 0.002086310414597392, -0.02021106518805027, -0.046447575092315674, -0.005207706242799759, -0.018764957785606384, -0.012558749876916409, 0.05374697223305702, -0.01681099273264408, 0.028061360120773315, 0.00939969439059496, -0.012636220082640648, -0.01133644487708807, -0.023929625749588013, 0.04024997353553772, 0.058773916214704514, -0.013212940655648708, -0.002842718968167901, -0.021381722763180733, -0.003301083343103528, -0.014022071845829487, 0.03252018988132477, -0.02670133113861084, -0.03752991557121277, 0.04248799756169319, -0.016785169020295143, 0.07065264880657196, -0.023929625749588013, 0.02343037538230419, 0.012136968784034252, 0.003966034390032291, 0.01453853864222765, -0.0033505780156701803, -0.028044143691658974, 0.044416140764951706, 0.017938612028956413, -0.04200596362352371, -0.030041148886084557, 0.0026189167983829975, -0.04438170790672302, -0.033811356872320175, 0.04482931271195412, -0.012059498578310013, -0.043004464358091354, 0.06238918378949165, 0.00953741930425167, 0.03133231773972511, 0.016277309507131577, 0.003395768813788891, 0.003533493261784315, -0.009666536003351212, 0.033966295421123505, 0.06793259084224701, -0.00731230853125453, 0.011654932983219624, 0.01847229339182377, 0.006864703726023436, -0.0344139002263546, 0.01746518351137638, -0.00041344237979501486, 0.07898498326539993, 0.053678110241889954, 0.014349168166518211, -0.05522751063108444, 0.047205060720443726, -0.0019066231325268745, 0.0015268048737198114, -0.0014654743717983365, 0.0655568465590477, -0.02556510455906391, 0.012068106792867184, -0.03114294447004795, -0.026735762134194374, -0.07030834257602692, 0.05002841353416443, -0.007880421355366707, -0.00358513998799026, 0.021571094170212746, 0.035291895270347595, 0.025100283324718475, -0.01507222093641758, 0.010613392107188702, -0.03656584396958351, 0.015795275568962097, -0.01773202419281006, 0.011818480677902699, -0.0008602399029769003, 0.014039287343621254, -0.04362422600388527, -0.020916903391480446, -0.01633756421506405, 0.031762704253196716, 0.010372374206781387, 0.013660545460879803, -0.09661371260881424, -0.008934875018894672, -0.002328404225409031, 0.012093929573893547, -0.032330818474292755, 0.034310609102249146, 0.013918778859078884, -0.005814554635435343, 0.07182330638170242, 0.022776182740926743, -0.009012345224618912, -0.03794309124350548, 0.0007865357911214232, -0.041696082800626755, -0.02423950657248497, 0.020021693781018257, 0.013230156153440475, -0.01692289300262928, -0.0193847194314003, 0.014159796759486198, -0.047032903879880905, -0.05057930946350098, 0.015390709042549133, -0.060667626559734344, -0.04741164669394493, 0.0023413158487528563, 0.007708266377449036, -0.03845955803990364, 0.010234649293124676, 0.01681099273264408, -0.06741612404584885, 0.032726775854825974, -0.0027480334974825382, 0.007622188422828913, -0.07306282967329025, 0.039320334792137146, -0.004553514998406172, -0.04197153076529503, -0.03591165319085121, -0.06672750413417816, -0.02678740955889225, -0.059290383011102676, 0.031177375465631485, -0.06648648530244827, 0.03031659871339798, 0.03190042823553085, 0.020486515015363693, 0.00792776420712471, -0.017800888046622276, 0.023137710988521576, 0.04438170790672302, -0.034878719598054886, -0.011715187691152096, -0.04978739470243454, -0.0420403927564621, 0.004833268001675606, -0.02859504148364067, 0.046619731932878494, 0.006197601091116667, -0.054194577038288116, 0.005810250993818045, -0.007622188422828913, 0.04806583747267723, 0.0496496707201004, -0.005302391946315765, -0.00497099244967103, -0.06593558937311172, -0.06187271699309349, 0.013643329963088036, 0.01125897467136383, -0.02449773997068405, -0.027544893324375153, -0.050992485135793686, 0.003038546070456505, 0.00243384949862957, -0.020262712612748146, 0.04861673712730408, 0.07409576326608658, 0.021588310599327087, 0.039320334792137146, -0.03131509944796562, 0.018954329192638397, 0.09985023736953735, 0.031418394297361374, 0.0035399491898715496, 0.051061347126960754, 0.0039810980670154095, 0.025324085727334023, 0.014572969637811184, -0.009967808611690998, -0.06862121820449829, 0.03260626643896103, -0.01888546720147133, 0.005900632590055466, 0.01962573640048504, 0.04469158872961998, -0.031504470854997635, -0.04641314595937729, 0.05113020911812782, 0.04730835556983948, -0.037667643278837204, 0.0035614685621112585, 0.06201044097542763, 0.039217039942741394, -0.006008229684084654, 0.03880386799573898, 0.006705460138618946, 0.02899100072681904, -0.014331952668726444, 0.0675194188952446, 0.003499062266200781, 0.045552365481853485, -0.02169160358607769, 0.06610774248838425, 0.004506172612309456, -0.0012362923007458448, 0.07636822015047073, -0.04696404188871384, 0.001846368657425046, 0.03513695299625397, 0.011706579476594925, 0.019040407612919807, 0.0008096692035906017, 0.009451341815292835, 0.021054627373814583, -0.02012498676776886, 0.004514780361205339, -0.06614217162132263, 0.005805946886539459, -0.0387694388628006, 0.0402844063937664, -0.031194591894745827, 0.04427841678261757, -0.02916315570473671, -0.0032774119172245264, -0.015760842710733414, -0.0124124176800251, 0.06242361292243004, -0.0308158490806818, 0.05546852946281433, 0.026718545705080032, -0.03270956128835678, -0.009726790711283684, -0.045139193534851074, 0.025427378714084625, -0.002015296369791031, 0.0666586384177208, -0.021708818152546883, 0.023723039776086807, 0.016544152051210403, -0.0413862019777298, 0.007256357930600643, -0.016449466347694397, -0.010613392107188702, 0.029386958107352257, 0.013402312062680721, -0.008237645030021667, -0.05588170140981674, -0.06369756907224655, 0.05285176262259483, 0.017714809626340866, -0.04035326838493347, 0.06755384802818298, -0.03632482886314392, -0.015304631553590298, -0.05267960950732231, -0.053127214312553406, 0.0035033661406487226, -0.02184654399752617, 0.004129582084715366, -0.00614165049046278, 0.005310999695211649, -0.013092432171106339 ]
325
maya.core
to_utc_offset_aware
null
def to_utc_offset_aware(dt): if dt.tzinfo is not None: return dt return pytz.utc.localize(dt)
(dt)
[ -0.007755299564450979, -0.0005706666852347553, 0.06165196746587753, 0.040178485214710236, -0.00910404697060585, -0.03171331807971001, 0.0034850044175982475, 0.04986817017197609, -0.02603437937796116, -0.011686189100146294, -0.034535039216279984, -0.03993003070354462, 0.025927899405360222, -0.005124353803694248, 0.0420951247215271, 0.11201705038547516, -0.051820307970047, 0.023106178268790245, 0.03247642517089844, 0.009565460495650768, 0.03128739818930626, -0.05032958462834358, -0.01653103344142437, -0.011189281940460205, -0.045537982136011124, 0.02188165672123432, -0.01724977418780327, -0.01216534897685051, 0.014907211996614933, -0.02573268674314022, -0.01623821258544922, 0.026691006496548653, 0.004716180264949799, 0.03231670334935188, 0.050790999084711075, -0.007613325957208872, 0.05554711073637009, 0.04021397605538368, -0.012112108990550041, 0.0008629323565401137, -0.005847531370818615, -0.027613835409283638, -0.00361144938506186, 0.0014807386323809624, 0.025519726797938347, 0.049087319523096085, -0.016717372462153435, 0.029282022267580032, -0.03914917632937431, 0.08653281629085541, 0.008478476665914059, 0.051678333431482315, 0.002258265158161521, 0.04216611385345459, 0.026708753779530525, -0.014960451982915401, 0.018917961046099663, -0.003635851200670004, -0.04152723401784897, -0.008908833377063274, -0.04166920483112335, -0.028341447934508324, 0.015439611859619617, -0.029051315039396286, 0.0125469034537673, 0.024437179788947105, -0.028909342363476753, -0.05938039347529411, 0.002662002108991146, -0.007426985539495945, -0.011748302727937698, -0.02427745796740055, -0.0007032122230157256, -0.012467042542994022, 0.04809350520372391, 0.04166920483112335, -0.011464355513453484, -0.022201096639037132, 0.011366749182343483, 0.028678635135293007, -0.014215091243386269, -0.013505224138498306, 0.010798854753375053, 0.08049894124269485, 0.021473484113812447, 0.03066626377403736, 0.009458980523049831, -0.020710375159978867, -0.02395801804959774, 0.03318629413843155, 0.07201603055000305, 0.011615202762186527, 0.03192627802491188, -0.02344336546957493, -0.021721936762332916, 0.06850218772888184, -0.008478476665914059, -0.0029237656854093075, -0.06488186120986938, -0.01062138844281435, 0.015528345480561256, 0.024685632437467575, -0.03723253682255745, 0.003212149254977703, 0.010931954719126225, 0.022591523826122284, 0.01596313901245594, 0.015927646309137344, -0.013842410407960415, -0.028430182486772537, -0.006650568451732397, -0.017436113208532333, -0.08113782107830048, -0.013070429675281048, 0.029228782281279564, -0.042201604694128036, -0.0003069621161557734, -0.0173917468637228, -0.03348798677325249, 0.027134673669934273, -0.034996453672647476, -0.004640757106244564, 0.018367813900113106, -0.056860364973545074, 0.03382517397403717, -0.06136802211403847, 0.010985195636749268, 0.018917961046099663, 0.013478604145348072, 0.006198028102517128, -0.010985195636749268, 0.040036510676145554, -0.08397728949785233, -0.009840534068644047, 0.005976194515824318, 0.03996552526950836, 0.04507656767964363, 0.03655816242098808, -0.07496197521686554, 0.0319795198738575, 0.021029816940426826, -0.009964761324226856, 0.0043235351331532, -0.007324942387640476, 0.00507111381739378, -0.05121691897511482, -0.07297434657812119, -0.002684185514226556, -0.039291150867938995, 0.008074739947915077, -0.006717118434607983, 0.0001906381658045575, -0.02662002108991146, 0.057996150106191635, -0.016619766131043434, -0.032778117805719376, -0.03066626377403736, -0.05636345595121384, 0.052814122289419174, -0.021579964086413383, -0.07375520467758179, 0.016131732612848282, -0.038226351141929626, -0.03673562780022621, 0.009831661358475685, 0.0016814980190247297, 0.004181561525911093, -0.03084373101592064, 0.026655513793230057, -0.001610511215403676, 0.011650695465505123, -0.0049025206826627254, 0.040675390511751175, 0.00273520709015429, 0.05082649365067482, -0.030737251043319702, -0.02921103686094284, -0.009033060632646084, -0.03481898829340935, 0.02257377840578556, 0.07808539271354675, 0.07208701223134995, 0.006340001709759235, 0.025129299610853195, 0.01672624610364437, -0.009210526943206787, 0.016610892489552498, 0.020763617008924484, -0.04394078254699707, -0.006828035227954388, 0.02085234969854355, -0.0012467042542994022, 0.026069873943924904, 0.009343626908957958, 0.00273520709015429, -0.006961135193705559, 0.010133354924619198, 0.03570632264018059, -0.03343474492430687, -0.03238769248127937, -0.02129601687192917, -0.042379073798656464, 0.007812975905835629, -0.031180918216705322, -0.013833537697792053, 0.04127877950668335, -0.03737450763583183, -0.011490975506603718, -0.009281514212489128, -0.05100395902991295, 0.0448991023004055, -0.00910404697060585, 0.005674500949680805, -0.02504056692123413, -0.040426939725875854, 0.04564446210861206, -0.025271272286772728, -0.013993257656693459, -0.005612387787550688, 0.0469222217798233, -0.03503194823861122, -0.02294645830988884, 0.03235219791531563, 0.0023869285359978676, 0.07052531093358994, -0.037906911224126816, -0.014206217601895332, -0.02099432237446308, 0.02402900531888008, -0.056292470544576645, 0.008939890190958977, -0.05107494443655014, -0.024934085085988045, -0.03244093060493469, 0.05941588431596756, 0.007586705964058638, 0.02477436512708664, -0.08624886721372604, 0.004720617085695267, -0.0014086427399888635, -0.03691309690475464, 0.05228171870112419, 0.04780955612659454, 0.04394078254699707, -0.0047117434442043304, 0.04709969088435173, -0.053133562207221985, 0.040107496082782745, 0.04134976491332054, 0.01852753385901451, 0.014907211996614933, -0.011668442748486996, 0.0028882722835987806, 0.017187660560011864, 0.032849106937646866, -0.04436670243740082, -0.014880591072142124, 0.0053550610318779945, -0.021633204072713852, 0.03323953226208687, -0.00654408847913146, 0.017586959525942802, -0.017178786918520927, 0.016761738806962967, -0.05267214775085449, -0.00807917583733797, 0.01583891175687313, -0.053453002125024796, -0.03957509621977806, 0.03281361237168312, 0.0007642164127901196, 0.00529294740408659, 0.012848597019910812, -0.008371996693313122, -0.016619766131043434, 0.053701456636190414, 0.005949574522674084, -0.015927646309137344, -0.02129601687192917, 0.03950411081314087, -0.005270764231681824, -0.036008015275001526, -0.012591269798576832, 0.031198663637042046, -0.04426022246479988, -0.03496095910668373, 0.011269141919910908, 0.050790999084711075, -0.0039486363530159, 0.010337441228330135, -0.023620830848813057, -0.016451172530651093, 0.024756619706749916, -0.03171331807971001, -0.03851029649376869, 0.013833537697792053, -0.06495285034179688, 0.02553747221827507, 0.026832981035113335, -0.029849916696548462, -0.06261029094457626, 0.0631781816482544, -0.04578643664717674, 0.06158098205924034, 0.0007143038674257696, 0.005270764231681824, -0.01444579754024744, 0.019503600895404816, -0.011899149045348167, 0.003329720813781023, -0.003023590659722686, -0.05245918780565262, 0.012493663467466831, -0.022218843922019005, -0.0010598095832392573, 0.00910404697060585, -0.002548866905272007, 0.0150758046656847, 0.05210425332188606, 0.052814122289419174, -0.03054203651845455, 0.02193489670753479, 0.04142075031995773, -0.024366192519664764, 0.029601462185382843, -0.022023631259799004, 0.036877602338790894, 0.04756110534071922, -0.016220465302467346, 0.06967346370220184, -0.021792924031615257, -0.06605314463376999, -0.02010698802769184, -0.020834602415561676, -0.01653103344142437, -0.0069212052039802074, -0.007786355912685394, -0.008327629417181015, 0.005576894152909517, 0.01555496547371149, 0.052210733294487, 0.08326742798089981, -0.015696939080953598, -0.027578340843319893, 0.041562724858522415, 0.060019273310899734, 0.011073928326368332, -0.005324004217982292, -0.01996501535177231, 0.08788156509399414, -0.007631072774529457, -0.008243332616984844, -0.03141162544488907, -0.05132339894771576, -0.038581281900405884, -0.005745487753301859, 0.04823547601699829, 0.04294696822762489, 0.0032276774290949106, 0.007741989102214575, -0.06158098205924034, -0.03247642517089844, 0.07787243276834488, -0.06040969863533974, 0.0012766518630087376, -0.01668187975883484, 0.034038133919239044, -0.05810263007879257, -0.002759608905762434, -0.054198361933231354, -0.06324917078018188, -0.004556460306048393, 0.065520741045475, -0.07865329086780548, 0.02047966979444027, 0.003917579539120197, 0.005217524245381355, 0.02440168522298336, -0.0631781816482544, 0.06488186120986938, 0.028022008016705513, -0.002917110687121749, 0.0017580304993316531, 0.03755197674036026, -0.00842523667961359, -0.027028193697333336, -0.005088860634714365, 0.024756619706749916, -0.07194504141807556, -0.010701248422265053, 0.014046497642993927, -0.018669508397579193, 0.023674070835113525, 0.060516178607940674, -0.024241965264081955, 0.030169356614351273, -0.04862590506672859, -0.02496957965195179, 0.035298146307468414, 0.027542848140001297, 0.02504056692123413, -0.018154853954911232, 0.05373694747686386, 0.009654194116592407, 0.05803164467215538, 0.06630159914493561, 0.0021540033631026745, 0.08773958683013916, -0.053701456636190414, 0.018296826630830765, -0.04734814167022705, -0.06083562225103378, 0.02630058117210865, 0.022786738350987434, 0.011419989168643951, -0.022396311163902283, -0.008096923120319843, -0.03465926647186279, 0.018296826630830765, -0.04252104461193085, 0.03355897217988968, -0.03235219791531563, -0.03386066481471062, -0.009308134205639362, 0.06555623561143875, -0.014880591072142124, 0.0469222217798233, 0.01099406834691763, -0.07098672538995743, -0.005270764231681824, 0.059131938964128494, -0.02035544253885746, 0.04688673093914986, -0.061155062168836594, 0.07879526168107986, 0.05324004217982292, 0.08383531868457794, -0.027826795354485512, -0.011730555444955826, 0.09923943877220154, 0.014782984741032124, 0.0291400495916605, -0.013336630538105965, 0.006566271651536226, 0.0071430387906730175, 0.04266301915049553, 0.014587771147489548, 0.017232026904821396, -0.0078972727060318, -0.0022482825443148613, 0.010745614767074585, -0.028980329632759094, -0.05650543048977852, -0.03425109386444092, -0.037339016795158386, -0.04433120787143707, -0.02472112514078617, 0.042379073798656464, -0.04564446210861206, -0.0014918303349986672, -0.04646081104874611, -0.031180918216705322, 0.05849305912852287, -0.002832813886925578, 0.01479185838252306, -0.0004708416236098856, -0.01628257893025875, 0.005173157434910536, -0.10506034642457962, 0.021029816940426826, 0.042201604694128036, -0.04152723401784897, 0.050542544573545456, 0.009210526943206787, 0.008221149444580078, 0.01838556118309498, -0.04337288811802864, -0.005976194515824318, 0.04482811316847801, 0.058812499046325684, -0.03604350611567497, 0.05757023021578789, 0.012316196225583553, -0.027347633615136147, 0.03167782351374626, 0.009121793322265148, -0.019627828150987625, -0.03936213627457619, -0.008221149444580078, 0.01628257893025875, 0.0015661445213481784, 0.04532502219080925, -0.033221784979104996, -0.04078187048435211, 0.03526265546679497, -0.025519726797938347, 0.01693033240735531, -0.0228754710406065, 0.04525403678417206, -0.033984892070293427, 0.008979820646345615, 0.07993105053901672, 0.019450360909104347, -0.020532909780740738, -0.05583105608820915, -0.02067488245666027, -0.039042696356773376, 0.02477436512708664, -0.004181561525911093, 0.022414056584239006, 0.04418923333287239, 0.06463340669870377, -0.0039331079460680485, -0.002256046747788787, 0.014552277512848377, 0.051855798810720444, 0.03268938511610031, -0.05551161617040634, 0.011748302727937698, -0.012750989757478237, -0.02370956540107727, -0.005971758160740137, 0.032849106937646866, -0.03570632264018059, 0.01941486820578575, 0.05302708223462105, -0.08610689640045166, 0.060658153146505356, -0.010958574712276459, -0.01941486820578575, -0.0008618231513537467, -0.06005476787686348, -0.02289321832358837, -0.03730352222919464, 0.03698408231139183, 0.0691765621304512, -0.048448435962200165, -0.06825373321771622, -0.06214887648820877, 0.0181104876101017, -0.04809350520372391, -0.06569821387529373, 0.036380693316459656, 0.0321747325360775, -0.09895548969507217, 0.04000101611018181, -0.041243284940719604, 0.04021397605538368, -0.033913906663656235, 0.06736639887094498, -0.05994828790426254, -0.019929522648453712, 0.09618701040744781, 0.10811277478933334, -0.03027583658695221, -0.04355035349726677, 0.018438801169395447, -0.035883788019418716, -0.03059527650475502, 0.0388297364115715, 0.020905589684844017, 0.09448332339525223, 0.061793942004442215, 0.04376331344246864, -0.006663878448307514, -0.004676250275224447, -0.017178786918520927, 0.0023359067272394896, -0.020053748041391373, 0.03336375951766968, -0.05941588431596756, 0.0019820823799818754, -0.08291248977184296, -0.01998276263475418, -0.06360410153865814, 0.02186390943825245, 0.009938141331076622, -0.0049025206826627254, 0.03263614699244499, 0.005851967725902796, -0.020958829671144485, -0.021828416734933853, -0.005186467431485653, 0.010355187579989433, -0.01680610701441765, -0.07418112456798553, 0.026336073875427246, 0.014144103974103928, -0.0007553430623374879, -0.04433120787143707, -0.0013931144494563341, 0.030382316559553146, 0.017019066959619522, 0.010319694876670837, 0.025874659419059753, -0.08702971786260605, -0.06647906452417374, -0.016575399786233902, 0.055227670818567276, -0.020248962566256523, 0.02977892942726612, 0.0008218931616283953, 0.004469945095479488, 0.010310821235179901, 0.014011004008352757, 0.013540716841816902, -0.03755197674036026, -0.017604706808924675, -0.079363152384758, -0.048448435962200165, 0.01058589480817318, 0.005319567397236824, 0.03299107775092125, -0.027542848140001297, 0.0008413035538978875, -0.10264679789543152, -0.06832472234964371, 0.07006389647722244, -0.02319491095840931, 0.009334754198789597, 0.015652572736144066, 0.015599331818521023, 0.009485600516200066, 0.008988693356513977, -0.017436113208532333, -0.010186594910919666, 0.033913906663656235, -0.021508976817131042, -0.013318883255124092, -0.0023381251376122236, 0.026832981035113335, 0.02459689974784851, 0.010248707607388496, -0.0009100719471462071, -0.021792924031615257, 0.011996756307780743, -0.048838865011930466, -0.02921103686094284, 0.018172601237893105, -0.005834221374243498, 0.006397678516805172, -0.015732431784272194, 0.049903664737939835, 0.008287699893116951, 0.029104555025696754, 0.024756619706749916, -0.033026572316884995, 0.012307322584092617, -0.03772944211959839, 0.0002119896380463615, 0.02390477806329727, -0.016717372462153435, 0.03691309690475464, -0.0228754710406065, -0.005315130576491356, -0.007844032719731331, -0.03299107775092125, 0.02743636816740036, 0.027028193697333336, -0.009751800447702408, -0.019698815420269966, -0.05171382799744606, -0.08206064999103546, 0.03943312540650368, 0.057996150106191635, 0.007200715597718954, -0.05089747905731201, -0.04362133890390396, -0.0044743819162249565, -0.006938952021300793, 0.004787167068570852, 0.023106178268790245, 0.024987326934933662, 0.02617635391652584, 0.035244908183813095, -0.09199879318475723, 0.0283237025141716, 0.06665652990341187, -0.0056035141460597515, -0.027826795354485512, 0.06119055300951004, -0.018367813900113106, 0.020266709849238396, 0.03939763084053993, 0.01077223476022482, -0.027596088126301765, 0.028341447934508324, -0.032653890550136566, 0.036629147827625275, -0.0076843127608299255, 0.06697597354650497, -0.028341447934508324, -0.02990315668284893, 0.06143900752067566, 0.02154446952044964, -0.06353311240673065, -0.040107496082782745, 0.04234357923269272, 0.018669508397579193, 0.03677112236618996, 0.027525100857019424, -0.02622959390282631, 0.0008485131547786295, -0.08220262080430984, 0.028110742568969727, 0.02333688549697399, 0.03471250832080841, 0.009095173329114914, 0.010736742056906223, -0.005000127013772726, -0.0029237656854093075, 0.00632225489243865, -0.0190244410187006, -0.062361836433410645, 0.04798702523112297, 0.017329633235931396, 0.017684567719697952, -0.012742116115987301, -0.0047250534407794476, 0.027542848140001297, -0.026513541117310524, -0.016788359731435776, -0.03462377190589905, 0.012777609750628471, -0.03242318332195282, 0.030684011057019234, -0.019698815420269966, -0.004294696729630232, -0.0631781816482544, 0.008979820646345615, 0.03758746758103371, -0.02129601687192917, 0.04557347670197487, -0.013798044063150883, 0.009574334137141705, 0.01583891175687313, -0.018687253817915916, -0.02990315668284893, -0.06630159914493561, 0.012804229743778706, 0.002111854963004589, 0.012183096259832382, -0.010985195636749268, 0.043266408145427704, 0.022609271109104156, -0.06239732727408409, -0.026336073875427246, -0.020781362429261208, 0.019894028082489967, 0.0364161878824234, 0.008088049478828907, 0.010985195636749268, -0.03281361237168312, -0.03299107775092125, 0.023052938282489777, 0.008633759804069996, -0.02921103686094284, 0.05898996442556381, -0.026407061144709587, 0.03964608535170555, -0.05803164467215538, 0.0031300708651542664, -0.01511129830032587, 0.0012544684577733278, 0.003995221573859453, -0.018421053886413574, 0.004223709926009178, 0.02862539514899254 ]
326
maya.core
to_utc_offset_naive
null
def to_utc_offset_naive(dt): if dt.tzinfo is None: return dt return dt.astimezone(pytz.utc).replace(tzinfo=None)
(dt)
[ -0.009943503886461258, 0.003035788657143712, 0.06656648218631744, 0.021509701386094093, -0.021203191950917244, -0.05625336617231369, -0.010646671056747437, 0.031173739582300186, -0.0101508479565382, 0.0037209258880466223, -0.034310948103666306, -0.024286309257149696, -0.005125006195157766, 0.021599849686026573, 0.0448945127427578, 0.09837126731872559, -0.03072299249470234, 0.05639760568737984, -0.0009060037555173039, 0.010141832754015923, 0.04017067328095436, -0.028865909203886986, -0.033265210688114166, -0.0056523815728724, -0.05066408962011337, 0.02318648435175419, -0.034184738993644714, -0.017633266746997833, 0.0028104146476835012, -0.04056733101606369, 0.008172063156962395, 0.041324589401483536, -0.008113466203212738, 0.02497144602239132, 0.04914957657456398, -0.015568840317428112, 0.021473640576004982, 0.046769626438617706, -0.03173266723752022, 0.016569500789046288, 0.013585548847913742, -0.04543540999293327, -0.03447321802377701, -0.003991374745965004, 0.0378267839550972, 0.03203917667269707, -0.012404588051140308, 0.03654665872454643, -0.05055591091513634, 0.04788748174905777, 0.00913215707987547, 0.07897107303142548, 0.021167131140828133, 0.05639760568737984, 0.0009076940477825701, 0.0034685067366808653, 0.017570162191987038, 0.007320149336010218, -0.05484703183174133, 0.03494199365377426, -0.060941144824028015, -0.028469251468777657, 0.02500750683248043, -0.017507057636976242, 0.03386019915342331, 0.016677681356668472, -0.02731533721089363, -0.045291170477867126, -0.026089301332831383, 0.0007797942380420864, 0.004356480669230223, -0.006017487496137619, 0.006959551014006138, 0.0004659608821384609, 0.01669570989906788, 0.04154094681143761, 0.004437615163624287, -0.030182095244526863, 0.006314981263130903, 0.025656582787632942, -0.04918563365936279, -0.027423515915870667, 0.011575211770832539, 0.06526833027601242, 0.003331028623506427, 0.05477491393685341, 0.023204512894153595, -0.03494199365377426, -0.06606164574623108, 0.031876906752586365, 0.0498347133398056, -0.006301458925008774, 0.03281446173787117, -0.026197481900453568, -0.02949695661664009, 0.09231321513652802, -0.013756833039224148, -0.0017984850564971566, -0.055099450051784515, -0.03299476206302643, 0.035879552364349365, 0.021708030253648758, -0.03564516082406044, -0.011971870437264442, 0.0048455423675477505, 0.024953415617346764, 0.016885025426745415, 0.01339623425155878, -0.00112743373028934, -0.008969888091087341, -0.03146221861243248, 0.01643427647650242, -0.044209375977516174, -0.041757307946681976, 0.0307590514421463, -0.05109680816531181, 0.015803229063749313, 0.0034775217063724995, -0.023168453946709633, 0.013459338806569576, -0.0249173566699028, 0.01708335429430008, -0.008172063156962395, -0.06195082142949104, 0.015235286206007004, -0.06526833027601242, 0.025728702545166016, 0.028343042358756065, 0.02361920103430748, 0.00645922077819705, -0.01656048558652401, 0.03739406540989876, -0.04330787807703018, 0.003340043593198061, -0.0072480300441384315, 0.035320624709129333, 0.07522084563970566, 0.009330485947430134, -0.07248029857873917, 0.0378267839550972, 0.023997830227017403, -0.024682966992259026, 0.03872827813029289, 0.012206259183585644, 0.02910029888153076, -0.03887251764535904, -0.05870543420314789, 0.010457356460392475, -0.011962855234742165, -0.01720956340432167, 0.006855878978967667, 0.005765068344771862, -0.024935387074947357, 0.051349226385354996, -0.008830156177282333, -0.038764338940382004, -0.01952640898525715, -0.05765970051288605, 0.028613490983843803, -0.032489925622940063, -0.08474064618349075, 0.03652862831950188, -0.045038752257823944, -0.04103611037135124, 0.0008136003743857145, -0.010430311784148216, 0.02109501138329506, -0.012693067081272602, 0.012206259183585644, 0.011593242175877094, 0.005467574577778578, -0.010123803280293941, 0.036005761474370956, 0.015343465842306614, 0.0599675290286541, -0.02688261866569519, -0.020463965833187103, 0.0060896072536706924, -0.018183179199695587, -0.0021421804558485746, 0.0723000019788742, 0.07493236660957336, -0.021113041788339615, 0.020283665508031845, 0.0083027807995677, -0.010844999924302101, 0.007815972901880741, 0.02100486308336258, -0.05358493700623512, -0.029605137184262276, 0.04056733101606369, 0.012539813295006752, 0.018020909279584885, 0.03369792923331261, 0.016668666154146194, 0.011106434278190136, 0.01782258041203022, 0.06021995097398758, -0.04103611037135124, -0.02709897793829441, -0.016064662486314774, -0.02801850438117981, 0.011133478954434395, -0.06104932725429535, -0.024989476427435875, 0.03322915360331535, -0.06631406396627426, -0.007468896452337503, -0.012864351272583008, -0.04031491279602051, 0.026071270927786827, 0.008555199019610882, 0.011421957053244114, -0.026395810768008232, -0.04363241791725159, 0.02527795545756817, -0.020031247287988663, -0.001931455684825778, -0.009028485044836998, 0.07294907420873642, -0.0014840882504358888, -0.03577136993408203, 0.04431755468249321, -0.018931420519948006, 0.06927096843719482, -0.015541795641183853, -0.020896682515740395, -0.001896522706374526, 0.010268041864037514, -0.07630264014005661, -0.002010336611419916, -0.059534814208745956, -0.06299655884504318, -0.04146882891654968, 0.06732373684644699, 0.03786284103989601, 0.028252892196178436, -0.10017426311969757, -0.008978902362287045, 0.0032093266490846872, -0.039197057485580444, 0.03746618330478668, 0.028920000419020653, 0.042153965681791306, 0.005458559840917587, 0.04698598384857178, -0.02780214510858059, 0.036366358399391174, 0.022194838151335716, 0.01603761874139309, 0.01224231906235218, -0.017606221139431, 0.006846864242106676, 0.03654665872454643, 0.03577136993408203, -0.05221466347575188, -0.010340161621570587, 0.023511022329330444, -0.011106434278190136, 0.05394553393125534, -0.005846203304827213, -0.019075660035014153, -0.05304403975605965, 0.005413484759628773, -0.043055459856987, 0.011899750679731369, -0.006774744484573603, -0.03405852988362312, -0.0159925427287817, 0.02131137065589428, 0.005381932482123375, -0.019183840602636337, 0.01577618531882763, -0.009673054330050945, 0.00311466958373785, 0.03423882648348808, -0.01694812998175621, -0.02479114755988121, -0.03486987575888634, 0.017894700169563293, -0.008226153440773487, -0.039593715220689774, -0.004917662125080824, -0.0066710724495351315, -0.05625336617231369, -0.040459152311086655, 0.02235710620880127, 0.039413414895534515, -0.0054495446383953094, -0.001373654929921031, -0.001642976887524128, -0.0043767644092440605, 0.012684051878750324, -0.01634412631392479, -0.012855337001383305, 0.040675509721040726, -0.06270807981491089, 0.021924389526247978, 0.013937132433056831, -0.02396177127957344, -0.046120546758174896, 0.04824807867407799, -0.053440697491168976, 0.04601236805319786, 0.024899326264858246, 0.015803229063749313, -0.016803890466690063, 0.043416060507297516, 0.0014345059171319008, 0.01629003696143627, 0.0010834857821464539, -0.05755152180790901, 0.011611271649599075, -0.02623354084789753, -0.005805635824799538, 0.0037795230746269226, 0.007775404956191778, -0.007856539450585842, 0.061554163694381714, 0.03761042281985283, -0.014613253995776176, 0.019724737852811813, 0.021293342113494873, -0.0008350108982995152, 0.00728859705850482, -0.05434219539165497, 0.032003115862607956, 0.040855810046195984, -0.018679002299904823, 0.061193566769361496, 0.00288704177364707, -0.0799807459115982, -0.04471421241760254, -0.011746495962142944, -0.029551047831773758, 0.00971812941133976, -0.02453872747719288, -0.013486383482813835, -0.016244962811470032, 0.023456932976841927, 0.028288953006267548, 0.07179515808820724, -0.02910029888153076, -0.025350075215101242, 0.04042309150099754, 0.06267201900482178, 0.01647935062646866, -0.023799501359462738, -0.016632605344057083, 0.09570284187793732, 0.01995912753045559, 0.010439326986670494, -0.02457478828728199, -0.019598528742790222, -0.01912975125014782, -0.0066665648482739925, 0.059498753398656845, 0.02414206974208355, 0.014234625734388828, 0.005846203304827213, -0.06854977458715439, -0.023150423541665077, 0.07594204694032669, -0.07500448822975159, 0.032309625297784805, -0.04388483613729477, 0.027117006480693817, -0.06461925059556961, 0.008329825475811958, -0.04720234498381615, -0.06602558493614197, -0.015298391692340374, 0.04813989996910095, -0.09649615734815598, 0.036672867834568024, -0.0004479309427551925, -0.002434039954096079, 0.029821496456861496, -0.06822523474693298, 0.043812718242406845, 0.007874569855630398, -0.007599613629281521, -0.004297883249819279, 0.05452249199151993, 0.026720348745584488, 0.002533204387873411, 0.014162505976855755, 0.036492567509412766, -0.035663191229104996, -0.02688261866569519, 0.006441190838813782, -0.03211129829287529, 0.047959599643945694, 0.029298627749085426, 0.0021241505164653063, 0.03288658335804939, -0.035663191229104996, -0.008379407227039337, 0.02470099739730358, 0.017597205936908722, 0.03180478885769844, 0.0053098127245903015, 0.05156558379530907, 0.015000897459685802, 0.04557964950799942, 0.06530439108610153, 0.011908765882253647, 0.04810383915901184, -0.04143276810646057, 0.008969888091087341, -0.037141647189855576, -0.024376459419727325, 0.027549725025892258, 0.014739464037120342, 0.028956059366464615, -0.027225187048316002, -0.026071270927786827, -0.028469251468777657, -0.007369732018560171, -0.0261433906853199, 0.021708030253648758, -0.040891870856285095, -0.03602379187941551, -0.007937674410641193, 0.07666324079036713, -0.003660074668005109, 0.05271949991583824, -0.006080592051148415, -0.05618124455213547, 0.020716384053230286, 0.04017067328095436, -0.02432236820459366, 0.03926917538046837, -0.04035097360610962, 0.08416368812322617, 0.04042309150099754, 0.08517336845397949, -0.05293586105108261, -0.009925473481416702, 0.12325257062911987, 0.020878653973340988, 0.03072299249470234, 0.0018627166282385588, 0.0037750154733657837, 0.026197481900453568, 0.04604842886328697, -0.0058957855217158794, 0.02401586063206196, 0.03499608486890793, 0.009447680786252022, 0.03661877661943436, -0.04763506352901459, -0.014000236988067627, -0.04662538692355156, -0.033012792468070984, -0.028793789446353912, -0.02792835421860218, 0.05358493700623512, -0.04446179419755936, -0.010863029398024082, -0.05311615765094757, -0.008591258898377419, 0.03887251764535904, -0.0016350888181477785, 0.028992120176553726, 0.009871384128928185, -0.011629302054643631, -0.004133360460400581, -0.11445396393537521, -0.014135461300611496, 0.028775760903954506, -0.0498347133398056, 0.04597630724310875, -0.01708335429430008, 0.0052286782301962376, 0.01327002514153719, -0.0442814975976944, -0.02313239313662052, 0.0412164069712162, 0.022645585238933563, -0.014802568592131138, 0.02626960165798664, 0.017939776182174683, -0.02396177127957344, 0.005710978526622057, 0.03133600950241089, -0.04197366535663605, -0.007031670771539211, -0.0007792308460921049, 0.001468311995267868, -0.008478572592139244, 0.04071157053112984, -0.04013461247086525, -0.04031491279602051, 0.02897408977150917, -0.0206082034856081, 0.03303082287311554, -0.006333011202514172, 0.05116892606019974, -0.03333733230829239, -0.0221407487988472, 0.08279341459274292, 0.026485959067940712, -0.03358975052833557, -0.05459461361169815, 0.002891549142077565, -0.04330787807703018, 0.026395810768008232, 0.0009448807686567307, 0.01925596036016941, 0.04453391581773758, 0.06937915086746216, -0.0005327279213815928, 0.00030171952676028013, 0.03023618459701538, 0.051529526710510254, 0.037971023470163345, -0.0734899714589119, 0.02414206974208355, -0.025764763355255127, -0.011043328791856766, -0.026197481900453568, 0.040855810046195984, -0.004448884166777134, 0.0018120075110346079, 0.0836588516831398, -0.07208363711833954, 0.05773181840777397, -0.006265399046242237, -0.03369792923331261, 0.014162505976855755, -0.06184264272451401, -0.01108840387314558, -0.022212868556380272, -0.006310473661869764, 0.03822344169020653, 0.0012282886309549212, -0.04770718142390251, -0.022032568231225014, 0.009961533360183239, -0.03952159732580185, -0.06278020143508911, 0.0203016959130764, 0.04471421241760254, -0.06869401782751083, 0.03423882648348808, -0.07255242019891739, 0.05181800574064255, -0.005070916377007961, 0.07118214666843414, -0.05809241905808449, 0.006743191741406918, 0.06451106816530228, 0.07024458795785904, -0.014784538187086582, -0.005972412880510092, 0.012476707808673382, -0.010186907835304737, -0.02771199494600296, 0.039016757160425186, 0.002594055375084281, 0.06671072542667389, 0.07204758375883102, -0.01581224426627159, -0.02021154575049877, 0.011944825761020184, -0.04356030002236366, 0.0028938029427081347, -0.022970125079154968, 0.03869221732020378, -0.04810383915901184, 0.006535847671329975, -0.05560429021716118, -0.021924389526247978, -0.05985935032367706, 0.03167857974767685, -0.020427905023097992, -0.016830934211611748, 0.042334262281656265, -0.012882381677627563, -0.007802450098097324, -0.027513666078448296, 0.025151744484901428, 0.002156829694285989, -0.026431869715452194, -0.08185586333274841, 0.006049039773643017, -0.0027292799204587936, 0.004480436444282532, -0.04092793166637421, -0.01511809229850769, 0.018769152462482452, 0.022807855159044266, 0.012954501435160637, -0.010926134884357452, -0.07233606278896332, -0.0344371572136879, 0.006693609524518251, 0.06707131862640381, -0.01433379016816616, 0.03268825262784958, -0.00947472546249628, 0.0041130767203867435, 0.019941097125411034, -0.0042640771716833115, -0.001229415531270206, -0.03578940033912659, 0.005372917745262384, -0.056758202612400055, -0.0547388531267643, 0.034310948103666306, 0.01433379016816616, 0.01878718100488186, -0.023853590711951256, -0.0030155049171298742, -0.10442932695150375, -0.06086902692914009, 0.0725884810090065, -0.04273092374205589, 0.007694270461797714, -0.01720956340432167, 0.009636995382606983, -0.007784420158714056, 0.0062789213843643665, -0.027567755430936813, -0.025512343272566795, 0.02998376451432705, 0.0006868274649605155, -0.000004194950633973349, 0.010195923037827015, 0.02506159618496895, 0.014802568592131138, -0.0341486781835556, -0.016371171921491623, -0.029857555404305458, 0.017750460654497147, -0.055532168596982956, -0.010745835490524769, -0.023511022329330444, 0.03010997548699379, -0.0004349719383753836, -0.022952094674110413, 0.04741870239377022, 0.011746495962142944, 0.011385898105800152, 0.0015347973676398396, -0.03807920217514038, 0.002075695199891925, -0.03847585991024971, 0.003653313498944044, 0.027946384623646736, -0.013937132433056831, 0.0593545138835907, -0.02718912623822689, -0.04136064648628235, -0.01350441388785839, -0.03604181855916977, 0.03786284103989601, 0.03642044961452484, -0.039593715220689774, -0.01931004971265793, -0.06393411755561829, -0.09418832510709763, 0.04312758147716522, 0.07204758375883102, -0.0074418517760932446, -0.016885025426745415, -0.05856119468808174, -0.01812007464468479, -0.021383490413427353, -0.003998135682195425, 0.04720234498381615, 0.0229160338640213, 0.025566434487700462, 0.03661877661943436, -0.07154273986816406, 0.012494738213717937, 0.0633571594953537, 0.009186246432363987, -0.005922830197960138, 0.06112144514918327, -0.01590239442884922, 0.0249173566699028, 0.04666144773364067, -0.027639875188469887, -0.05600094795227051, 0.04438967630267143, -0.044678155332803726, 0.034184738993644714, -0.01422561053186655, 0.06382593512535095, -0.027693964540958405, -0.033968377858400345, 0.07017246633768082, 0.04475027322769165, -0.061373863369226456, -0.046949923038482666, 0.06497985124588013, 0.006720654666423798, 0.03620408847928047, 0.03654665872454643, -0.01743493787944317, -0.0009161455673165619, -0.04684174433350563, 0.016100723296403885, 0.04496663436293602, 0.05318827927112579, 0.009961533360183239, -0.006991103291511536, -0.011367867700755596, 0.0070001184940338135, 0.031047530472278595, -0.06407835334539413, -0.04536329209804535, 0.035266533493995667, 0.04813989996910095, 0.0212212223559618, -0.019670648500323296, -0.021509701386094093, 0.024899326264858246, -0.005638859234750271, -0.0226095262914896, -0.05023137107491493, 0.06407835334539413, -0.0516737662255764, 0.027171097695827484, -0.04702204465866089, 0.0010277057299390435, -0.0547388531267643, 0.021058952435851097, 0.04157700762152672, -0.002528697019442916, 0.05722698196768761, -0.03611394017934799, 0.007239014841616154, 0.006639519706368446, -0.02562052384018898, -0.03149827942252159, -0.06743191927671432, 0.007401284296065569, -0.02731533721089363, 0.02967725694179535, -0.011800586245954037, 0.06061660870909691, 0.031011471524834633, -0.03402246907353401, -0.018047954887151718, -0.028920000419020653, 0.027297306805849075, 0.04853655770421028, 0.014126446098089218, 0.009172724559903145, -0.06332109868526459, -0.03346354141831398, 0.020445935428142548, 0.002438547322526574, -0.005796621087938547, 0.06079690903425217, -0.02623354084789753, 0.017795536667108536, -0.04806777834892273, -0.039629776030778885, -0.003331028623506427, -0.01122362818568945, 0.0022086657118052244, -0.006846864242106676, -0.0016193126793950796, 0.004868079908192158 ]
327
maya.core
utc_offset
Returns the time offset from UTC accounting for DST Keyword Arguments: time_struct {time.struct_time} -- the struct time for which to return the UTC offset. If None, use current local time.
def utc_offset(time_struct=None): """ Returns the time offset from UTC accounting for DST Keyword Arguments: time_struct {time.struct_time} -- the struct time for which to return the UTC offset. If None, use current local time. """ if time_struct: ts = time_struct else: ts = time.localtime() if ts[-1]: offset = time.altzone else: offset = time.timezone return offset
(time_struct=None)
[ 0.009898938238620758, -0.0279756560921669, 0.007872706279158592, 0.04436764121055603, -0.016792679205536842, -0.07919150590896606, 0.004211829509586096, -0.0114652831107378, -0.04334769770503044, 0.0240780059248209, -0.04403980076313019, -0.05085158348083496, -0.05372928828001022, -0.01648305170238018, 0.032182931900024414, 0.12166496366262436, -0.05048731714487076, -0.004318832885473967, -0.0145615478977561, -0.01644662581384182, 0.05919328331947327, -0.04014215245842934, -0.006802673917263746, 0.0433841235935688, -0.0057645151391625404, 0.020016435533761978, -0.032365065068006516, -0.015963973477482796, 0.0216920617967844, -0.03507884964346886, 0.029578428715467453, 0.010973524302244186, -0.04422193393111229, -0.004355259705334902, -0.0704491138458252, -0.029651280492544174, 0.022529873996973038, 0.030725866556167603, 0.004195893183350563, -0.02651859074831009, 0.04480476304888725, -0.010427124798297882, -0.005345608573406935, -0.0021412032656371593, 0.06050464138388634, 0.012904135510325432, -0.012193815782666206, -0.02050819620490074, -0.06509439647197723, 0.037373729050159454, 0.03537026420235634, 0.0559513121843338, -0.021855982020497322, 0.009079338982701302, 0.043639108538627625, -0.03427746519446373, 0.012548975646495819, -0.029815200716257095, -0.06465727835893631, 0.012339523062109947, -0.08086713403463364, -0.009853404946625233, -0.022056328132748604, 0.02549864538013935, 0.005181688815355301, -0.02267558127641678, -0.01135600358247757, -0.028849896043539047, 0.004170849919319153, -0.027301762253046036, -0.032510772347450256, 0.004152636509388685, 0.0007473151781596243, -0.0303616002202034, 0.04451334848999977, 0.00013083707017358392, -0.01078228373080492, -0.03799298033118248, 0.001296560512855649, 0.05726267024874687, -0.07780729234218597, 0.01339589525014162, -0.056206297129392624, 0.07299897819757462, 0.06644218415021896, 0.04057927057147026, 0.024351205676794052, -0.03890364617109299, -0.004168573301285505, 0.04342054948210716, 0.019306115806102753, -0.008027520030736923, 0.015554172918200493, -0.020945316180586815, -0.022438807412981987, 0.047536760568618774, -0.034787435084581375, -0.014352094382047653, -0.045205455273389816, -0.005823708139359951, 0.012603615410625935, -0.04039713740348816, -0.03509706258773804, 0.01766691729426384, 0.014725467190146446, 0.030051974579691887, 0.015900226309895515, -0.006679734215140343, 0.018222425132989883, -0.0010000249603763223, 0.055368486791849136, -0.030980853363871574, -0.09266936033964157, -0.014607081189751625, 0.03890364617109299, 0.013377681374549866, 0.009826084598898888, 0.018686864525079727, -0.018085824325680733, -0.007863599807024002, 0.009061125107109547, 0.001972730038687587, -0.005951201543211937, -0.0177488774061203, -0.01526276022195816, -0.029851628467440605, 0.01255808211863041, 0.006019501481205225, 0.006001288071274757, 0.032401490956544876, 0.030744079500436783, 0.031071919947862625, -0.02548043057322502, -0.003909033257514238, 0.01074585784226656, 0.08596686273813248, 0.07223401963710785, 0.020016435533761978, -0.04903025180101395, 0.020672116428613663, 0.02548043057322502, 0.04695393145084381, 0.034605301916599274, 0.02897738851606846, -0.018741503357887268, 0.030889786779880524, -0.04414908215403557, -0.016027718782424927, -0.06443871557712555, 0.011201190762221813, 0.006993914023041725, -0.05219936743378639, -0.0511794239282608, 0.02402336522936821, -0.009935365058481693, -0.018122250214219093, 0.015290080569684505, -0.03773799538612366, 0.013641774654388428, -0.053656432777643204, -0.07303540408611298, 0.048920970410108566, -0.0254075787961483, -0.05693482980132103, 0.0031395205296576023, -0.033585358411073685, 0.011137443594634533, 0.010117498226463795, -0.03438674286007881, -0.016118785366415977, 0.026409311220049858, -0.022511661052703857, 0.023440539836883545, -0.010818710550665855, 0.02538936398923397, -0.031181199476122856, -0.0354977548122406, -0.006825440563261509, -0.003542490303516388, -0.025553284212946892, 0.08742392808198929, 0.0380658321082592, -0.007335413713008165, 0.04057927057147026, 0.025097951292991638, -0.007535760290920734, -0.013040735386312008, 0.03560703620314598, -0.02025320939719677, -0.0028458309825509787, -0.014133534394204617, 0.006952933967113495, 0.01665607839822769, 0.01633734628558159, 0.005013215821236372, 0.03028874658048153, 0.03832082077860832, 0.058865442872047424, 0.008514725603163242, -0.009334324859082699, -0.03781084716320038, -0.00512249581515789, -0.012385056354105473, -0.03431389108300209, -0.02041712962090969, 0.029378080740571022, -0.019688596948981285, -0.018650436773896217, -0.0555870458483696, -0.06411087512969971, 0.04028785973787308, -0.009662165306508541, 0.03289325162768364, -0.025826483964920044, -0.008637665770947933, 0.038502953946590424, -0.04229132458567619, 0.026937495917081833, -0.00005937114838161506, 0.05850117653608322, 0.04199991002678871, -0.05318288877606392, 0.013623561710119247, -0.006493047811090946, 0.045205455273389816, 0.016036827117204666, -0.04076140373945236, -0.049940917640924454, -0.005618808325380087, -0.06039535999298096, 0.03143618628382683, -0.012457909062504768, -0.0032783972565084696, -0.032492559403181076, 0.0702669769525528, 0.04527830705046654, -0.012066323310136795, -0.05933899059891701, 0.0016835934948176146, -0.055113498121500015, -0.047463905066251755, 0.021163875237107277, 0.018468303605914116, 0.04964950308203697, -0.008733285591006279, 0.04830171912908554, -0.027174269780516624, 0.0034218269865959883, 0.011629203334450722, -0.008437319658696651, 0.0009072509128600359, 0.015208120457828045, 0.017493892461061478, 0.022384166717529297, 0.022274887189269066, -0.03792012855410576, 0.015690773725509644, 0.0557691790163517, 0.004195893183350563, 0.07686019688844681, 0.017129626125097275, -0.10731286555528641, -0.025899337604641914, -0.03593487665057182, -0.039923593401908875, -0.0030484539456665516, -0.024424059316515923, -0.015089733526110649, -0.031035494059324265, 0.032474346458911896, 0.053874991834163666, -0.02537115104496479, 0.04662609472870827, -0.05172582343220711, 0.01914219744503498, -0.024405846372246742, 0.007840833626687527, 0.03393141180276871, 0.04163564369082451, -0.018249744549393654, -0.013778374530375004, -0.005800941493362188, -0.016164319589734077, 0.028813468292355537, -0.03901292756199837, -0.04407623037695885, 0.016200745478272438, -0.006889187265187502, 0.025097951292991638, 0.00830527301877737, 0.059084001928567886, -0.051543690264225006, 0.01890542358160019, -0.019980009645223618, 0.01648305170238018, 0.05995824187994003, -0.03254719823598862, 0.006151548121124506, 0.05868330970406532, -0.008387233130633831, -0.07795299589633942, 0.08501976728439331, 0.026136111468076706, 0.02518901787698269, 0.005172582343220711, 0.038575805723667145, -0.014033361338078976, 0.004753675777465105, 0.03429567813873291, 0.018450090661644936, -0.030853360891342163, -0.030161254107952118, -0.033712852746248245, 0.0403607115149498, -0.01916041038930416, 0.013687307946383953, 0.038575805723667145, -0.007135067135095596, 0.018522944301366806, 0.02677357755601406, 0.005300075281411409, -0.022274887189269066, 0.0252254456281662, -0.024515125900506973, 0.04469548165798187, -0.04673537239432335, 0.0021935664117336273, 0.004400792997330427, 0.03203722462058067, 0.029815200716257095, -0.04465905576944351, -0.0892452597618103, -0.04848385229706764, 0.0008321209461428225, 0.0003605667734518647, 0.014169961214065552, -0.04735462740063667, -0.023258406668901443, -0.023859446868300438, -0.028758829459547997, 0.08480120450258255, 0.02158278226852417, -0.023604460060596466, -0.008018413558602333, 0.04724534600973129, 0.03129047900438309, 0.00665696756914258, 0.041234951466321945, -0.00630636140704155, 0.08268846571445465, 0.012193815782666206, -0.0043666427955031395, -0.014142640866339207, -0.0252254456281662, -0.028777042403817177, 0.0458611324429512, 0.04447692260146141, -0.03185509145259857, 0.056315578520298004, -0.0074720135889947414, -0.038612231612205505, 0.011173870414495468, 0.06480298191308975, -0.0534742996096611, -0.00039727799594402313, -0.02138243429362774, -0.001194110605865717, -0.031144773587584496, -0.013650881126523018, -0.05103371664881706, -0.04396694898605347, -0.015617920085787773, 0.058756161481142044, -0.052709341049194336, 0.03704588860273361, 0.016856426373124123, 0.025607924908399582, 0.0642930120229721, -0.08574829995632172, -0.016000399366021156, -0.0031941605266183615, -0.011192083358764648, -0.008482852950692177, 0.08436408638954163, 0.051106568425893784, 0.018386343494057655, -0.03511527553200722, -0.016191639006137848, -0.03183687850832939, 0.0012863156152889132, -0.005746301729232073, -0.013031628914177418, 0.04666252061724663, -0.013933188281953335, -0.02039891667664051, 0.037136953324079514, -0.05176224932074547, -0.0023517946247011423, 0.019761448726058006, 0.03160010650753975, 0.06447514146566391, -0.02801208198070526, -0.01448869425803423, -0.00015011757204774767, 0.033548932522535324, 0.05850117653608322, -0.04790102690458298, 0.021309582516551018, -0.07686019688844681, 0.05463995411992073, -0.03708231449127197, -0.06764426082372665, -0.000387033011065796, -0.009379858151078224, 0.04163564369082451, -0.04352983087301254, -0.004539669491350651, 0.01074585784226656, 0.03464173153042793, -0.03458708897233009, 0.012212029658257961, -0.07700590789318085, -0.006342787761241198, 0.001510567031800747, 0.043711964040994644, 0.03059837408363819, 0.00443266611546278, 0.007221580483019352, -0.050086624920368195, 0.05813691020011902, 0.01658322662115097, -0.00733086047694087, 0.01212096307426691, 0.016137000173330307, 0.04334769770503044, 0.042327750474214554, 0.08931811153888702, -0.010572831146419048, -0.02526187151670456, 0.06684287637472153, 0.08873528242111206, 0.004016036633402109, -0.018741503357887268, 0.03706410154700279, -0.024697259068489075, 0.009115765802562237, -0.023167340084910393, 0.00728988042101264, 0.033731065690517426, 0.019870730116963387, 0.03639020770788193, -0.015708986669778824, -0.03711874037981033, -0.013942294754087925, -0.01527186669409275, -0.05726267024874687, -0.02027142234146595, 0.01262182928621769, -0.028248855844140053, -0.024387631565332413, -0.1023588478565216, -0.021819554269313812, 0.11088267713785172, -0.012157389894127846, 0.03509706258773804, -0.053984273225069046, 0.002429201267659664, -0.011173870414495468, -0.06804495304822922, 0.015882013365626335, 0.019597530364990234, -0.006374661345034838, -0.005841921549290419, 0.03923148661851883, 0.05686197802424431, -0.03278397023677826, -0.04185420274734497, 0.00003094840940320864, -0.04440406709909439, 0.03762871399521828, -0.03282039985060692, 0.0534742996096611, -0.0023563478607684374, -0.03134511783719063, 0.0012931455858051777, -0.02156456746160984, -0.038575805723667145, -0.008514725603163242, 0.014042467810213566, -0.01263093575835228, -0.04280129820108414, 0.06443871557712555, -0.0027911909855902195, -0.05449424684047699, -0.019251476973295212, -0.03659055382013321, 0.041234951466321945, 0.02934165485203266, 0.03404068946838379, 0.007895473390817642, -0.029888054355978966, 0.0683363676071167, 0.05412998050451279, -0.07070410251617432, -0.06203455850481987, -0.013068055734038353, -0.046443961560726166, -0.027538536116480827, 0.038685087114572525, 0.03313002362847328, 0.013204655610024929, 0.05103371664881706, 0.0036722600925713778, -0.013286614790558815, 0.029669495299458504, 0.04385766759514809, 0.04425836354494095, -0.08786104619503021, 0.03411354497075081, -0.007508440408855677, -0.0023677311837673187, 0.003635833505541086, 0.008419105783104897, 0.02782994881272316, 0.033767491579055786, 0.08611256629228592, -0.05358358100056648, 0.013350361958146095, -0.005209008697420359, -0.007162387017160654, -0.023768380284309387, -0.006483940873295069, -0.02294878102838993, 0.032474346458911896, 0.05675269663333893, 0.02138243429362774, -0.04728177189826965, -0.033767491579055786, -0.06975700706243515, 0.001732541830278933, -0.016173426061868668, -0.053692858666181564, 0.04396694898605347, 0.05176224932074547, -0.04932166263461113, 0.012767535634338856, -0.0654950886964798, 0.033585358411073685, 0.0025521412026137114, 0.0458611324429512, -0.02799386903643608, -0.012876815162599087, 0.03276575729250908, 0.07023055106401443, -0.028103148564696312, 0.01783994399011135, -0.013423214666545391, 0.04189063236117363, 0.007130513899028301, 0.039705030620098114, -0.0044463262893259525, 0.0435662567615509, 0.024824751541018486, 0.024351205676794052, -0.0380658321082592, -0.02287592738866806, -0.023622673004865646, 0.017193371430039406, 0.007786193396896124, 0.037246234714984894, -0.046261828392744064, 0.01633734628558159, 0.009816978126764297, -0.05584203079342842, -0.026901070028543472, -0.024660831317305565, 0.007189707364886999, 0.009379858151078224, 0.06261738389730453, 0.04913952946662903, -0.004373473115265369, -0.03690018132328987, 0.04688107967376709, -0.020672116428613663, -0.03149082511663437, -0.03591666370630264, 0.05351072549819946, -0.06880991160869598, -0.009266025386750698, 0.006620540749281645, -0.047391053289175034, 0.014852960593998432, 0.01670161262154579, 0.039705030620098114, -0.0216920617967844, -0.032510772347450256, -0.028959175571799278, 0.019251476973295212, 0.051325127482414246, -0.010609257966279984, 0.02273022010922432, -0.013177335262298584, 0.03411354497075081, -0.02404158003628254, 0.05161654204130173, 0.03323930501937866, -0.07496601343154907, -0.00958020519465208, -0.042546309530735016, -0.021109234541654587, 0.048738837242126465, -0.02808493562042713, 0.013113589026033878, -0.01648305170238018, 0.013204655610024929, -0.054093554615974426, -0.04334769770503044, 0.044950466603040695, -0.03515170142054558, 0.009052018634974957, -0.05030518397688866, 0.04148993641138077, -0.023859446868300438, 0.009762338362634182, -0.03190973401069641, -0.011228510178625584, 0.006561347749084234, -0.030980853363871574, 0.027156056836247444, 0.0019089833367615938, 0.03507884964346886, 0.07977433502674103, -0.002895917510613799, -0.0679721012711525, 0.016838211566209793, -0.011119230650365353, -0.047463905066251755, -0.021018167957663536, -0.015372039750218391, 0.03404068946838379, -0.011993469670414925, 0.054967790842056274, 0.0428377240896225, -0.01144707016646862, 0.014169961214065552, 0.03923148661851883, -0.011856869794428349, -0.02648216299712658, 0.018741503357887268, -0.02637288346886635, -0.036189861595630646, -0.02764781564474106, 0.04826529324054718, -0.010609257966279984, -0.07926435768604279, -0.013869441114366055, -0.03941361978650093, 0.02267558127641678, 0.04079783335328102, -0.03393141180276871, -0.03052552044391632, -0.06177957355976105, -0.0555870458483696, 0.050195902585983276, 0.007535760290920734, -0.009561991319060326, -0.051215849816799164, -0.044986896216869354, 0.0430198572576046, -0.05318288877606392, 0.0029460040386766195, 0.05926613509654999, 0.046116121113300323, 0.007977433502674103, 0.024424059316515923, -0.03453245013952255, -0.0060058413073420525, 0.026063257828354836, 0.0011616682168096304, -0.03442316874861717, 0.014761894010007381, 0.01526276022195816, 0.015025987289845943, 0.000481230003060773, -0.01875971630215645, 0.008491959422826767, 0.09274221211671829, -0.00031930222758091986, 0.0330207459628582, -0.0004282975569367409, 0.042218469083309174, -0.045096173882484436, -0.0215099286288023, 0.06611434370279312, 0.029760561883449554, -0.05933899059891701, -0.02263915352523327, 0.058756161481142044, 0.03802940621972084, 0.028831681236624718, 0.011656523682177067, 0.007057660724967718, -0.019907156005501747, -0.03027053363621235, -0.02282128669321537, 0.037337299436330795, 0.03526098281145096, -0.025753630325198174, 0.0003580055199563503, -0.036226287484169006, -0.022202033549547195, -0.002959664212539792, -0.023458752781152725, -0.0561334453523159, 0.04451334848999977, 0.02812136337161064, 0.020836034789681435, 0.005086068995296955, 0.004318832885473967, 0.020617475733160973, -0.0252254456281662, 0.0036176203284412622, -0.008268846198916435, 0.020981742069125175, -0.016719825565814972, -0.0016050486592575908, -0.04407623037695885, 0.006893740501254797, -0.05995824187994003, 0.05321931466460228, 0.009097551926970482, -0.014798320829868317, 0.09055661410093307, 0.032510772347450256, 0.00568255502730608, 0.022402381524443626, -0.04903025180101395, -0.02149171568453312, -0.03176402673125267, 0.01133779063820839, -0.015353826805949211, 0.04185420274734497, 0.0005412770551629364, 0.06727999448776245, -0.0010637715458869934, -0.034914929419755936, -0.041234951466321945, 0.03413175791501999, 0.02799386903643608, -0.003877159906551242, 0.0026932943146675825, -0.03562524914741516, -0.000056560889788670465, -0.03196437284350395, 0.004995002411305904, -0.014889387413859367, -0.024733684957027435, -0.010827817022800446, 0.010809604078531265, 0.05179867520928383, -0.045096173882484436, -0.02034427598118782, 0.01262182928621769, 0.023495180532336235, -0.004004653077572584, 0.0012863156152889132, -0.07890009135007858, 0.01629181206226349 ]
328
maya.core
validate_arguments_type_of_function
Decorator to validate the <type> of arguments in the calling function are of the `param_type` class. if `param_type` is None, uses `param_type` as the class where it is used. Note: Use this decorator on the functions of the class.
def validate_arguments_type_of_function(param_type=None): """ Decorator to validate the <type> of arguments in the calling function are of the `param_type` class. if `param_type` is None, uses `param_type` as the class where it is used. Note: Use this decorator on the functions of the class. """ def inner(function): def wrapper(self, *args, **kwargs): type_ = param_type or type(self) for arg in args + tuple(kwargs.values()): if not isinstance(arg, type_): raise TypeError( ( 'Invalid Type: {}.{}() accepts only the ' 'arguments of type "<{}>"' ).format( type(self).__name__, function.__name__, type_.__name__, ) ) return function(self, *args, **kwargs) return wrapper return inner
(param_type=None)
[ 0.015413850545883179, 0.037124425172805786, 0.04186570644378662, 0.007407081313431263, 0.027060912922024727, 0.03165227174758911, -0.04295263811945915, -0.006446644198149443, -0.037255603820085526, 0.022357111796736717, -0.022413332015275955, -0.013286832720041275, 0.038642384111881256, -0.012087457813322544, -0.012855807319283485, 0.007407081313431263, 0.019733477383852005, 0.006020303349941969, 0.030958883464336395, -0.0241186935454607, 0.02736075595021248, 0.042390432208776474, 0.009651225991547108, -0.0013328999048098922, 0.0040947431698441505, 0.029234779998660088, 0.024924524128437042, 0.022638214752078056, 0.017494017258286476, 0.008184801787137985, -0.01571369543671608, 0.015891727060079575, -0.00021419514087028801, 0.03234566003084183, 0.0011156301479786634, 0.010850601829588413, 0.010457056574523449, 0.05127330869436264, -0.029815727844834328, -0.012612184509634972, -0.08822906762361526, 0.050373777747154236, 0.001229828572832048, 0.015413850545883179, 0.02563665434718132, -0.040291525423526764, -0.0133617939427495, 0.021270176395773888, -0.1254846751689911, 0.0011654089903458953, 0.029497144743800163, -0.09445083141326904, 0.07293703407049179, -0.04141594097018242, 0.0675773173570633, 0.021195216104388237, 0.023987513035535812, -0.011216036044061184, 0.05599584802985191, 0.0031413333490490913, 0.013165021315217018, 0.03999168053269386, 0.020689230412244797, -0.039129629731178284, -0.003830037312582135, -0.04403957352042198, -0.042465392500162125, -0.03397606313228607, -0.03611245006322861, 0.02121395617723465, -0.034575749188661575, 0.012162418104708195, 0.010457056574523449, 0.027829263359308243, 0.023219162598252296, -0.04640084505081177, -0.03673087805509567, 0.014139514416456223, -0.000956338073592633, 0.03684331849217415, 0.036974500864744186, -0.011750132776796818, -0.01535763032734394, -0.03489433601498604, -0.0013188447337597609, -0.006474754307419062, -0.0582071989774704, -0.018356069922447205, 0.033563777804374695, -0.004570276942104101, -0.07035087794065475, -0.015872986987233162, -0.030396675691008568, -0.030827701091766357, 0.0076132239773869514, -0.009000002406537533, 0.01601353846490383, -0.039429474622011185, 0.0009633656591176987, 0.008119210600852966, 0.03809891641139984, 0.05655805766582489, 0.0842561349272728, -0.004858408123254776, 0.0686267763376236, -0.07192505896091461, -0.007809996604919434, -0.008906301110982895, -0.03249558433890343, 0.09445083141326904, -0.007430506870150566, -0.07162521034479141, -0.10449559986591339, 0.015732435509562492, 0.016266532242298126, 0.012340450659394264, -0.031521089375019073, -0.0005545940948650241, -0.07556066662073135, 0.006165540311485529, 0.05959397554397583, 0.011881315149366856, 0.006549715530127287, -0.00542998593300581, 0.00941228773444891, 0.0037972419522702694, -0.053971901535987854, -0.00973555725067854, 0.0019970072899013758, -0.021495060995221138, -0.02614264003932476, 0.004806872457265854, -0.045089028775691986, 0.025505471974611282, -0.010963043197989464, 0.008728268556296825, -0.04894951730966568, 0.04328996315598488, -0.06720251590013504, 0.021120255813002586, 0.011009893380105495, 0.10621970146894455, 0.05179803445935249, -0.0314086489379406, -0.003766789101064205, -0.02788548357784748, -0.024868303909897804, 0.0067886533215641975, -0.0005791906733065844, 0.031108805909752846, -0.01180635392665863, -0.009243625216186047, 0.07106300443410873, -0.011440918780863285, -0.03890474513173103, -0.061655402183532715, 0.028503911569714546, -0.024362318217754364, 0.0016526553081348538, -0.02687351033091545, -0.0047975024208426476, 0.017775122076272964, 0.04962416738271713, -0.04475170373916626, 0.01758771948516369, 0.00007906040264060721, 0.0031600736547261477, 0.007397711277008057, -0.01527329906821251, -0.022394591942429543, -0.020295685157179832, -0.0036262371577322483, 0.05487143620848656, 0.03369496017694473, 0.016238421201705933, 0.040591370314359665, -0.022469552233815193, -0.015151487663388252, 0.05078606307506561, 0.004396929871290922, 0.05779491364955902, 0.004680376034229994, -0.02027694508433342, 0.0008433109614998102, 0.04932432249188423, 0.01322124246507883, -0.011731392703950405, -0.016266532242298126, -0.02447475865483284, -0.0482373870909214, -0.03257054463028908, 0.05266008526086807, 0.0048162429593503475, -0.05483395606279373, -0.0037691316101700068, 0.031258728355169296, -0.06251745671033859, 0.05730766803026199, 0.01874961517751217, 0.028110366314649582, 0.012509113177657127, 0.0315585695207119, 0.023350344970822334, -0.010785010643303394, -0.0045796469785273075, -0.007013536524027586, 0.019789697602391243, -0.00010621911496855319, -0.01552629191428423, -0.026723587885499, 0.008058304898440838, -0.09025301784276962, -0.0038440926000475883, 0.036974500864744186, 0.011394068598747253, -0.05352213606238365, 0.009997920133173466, -0.03228944167494774, 0.00785216223448515, -0.031464871019124985, 0.044564299285411835, 0.056895382702350616, -0.0015542689943686128, 0.02151380106806755, 0.058619484305381775, -0.02353774756193161, 0.02498074620962143, -0.032907869666814804, -0.019639775156974792, 0.01342738512903452, -0.012181159108877182, -0.00671369256451726, 0.008334723301231861, 0.041453421115875244, -0.05640813335776329, -0.0963248535990715, 0.039204590022563934, -0.008451850153505802, 0.0024268615525215864, -0.03794899582862854, -0.048387311398983, -0.013783449307084084, 0.0012919055297970772, 0.003099167952314019, -0.03234566003084183, -0.027754301205277443, 0.019377412274479866, 0.07885894924402237, 0.001986465882509947, 0.004303228575736284, -0.04685061052441597, 0.014504948630928993, -0.03249558433890343, -0.025617914274334908, -0.01266840472817421, 0.05640813335776329, -0.05018637329339981, -0.0966247022151947, 0.018515361472964287, 0.016341492533683777, 0.016622597351670265, 0.00013279219274409115, 0.055133797228336334, 0.030377935618162155, -0.026198862120509148, -0.06015618517994881, 0.020914113149046898, 0.0185341015458107, 0.007322750519961119, 0.020689230412244797, 0.1176137700676918, 0.048387311398983, 0.07226238399744034, -0.016275901347398758, -0.01093493215739727, -0.0071540880016982555, 0.008747008629143238, -0.043627288192510605, 0.012499743141233921, 0.022282149642705917, -0.00668089697137475, -0.008494015783071518, -0.0033966691698879004, -0.01408329326659441, -0.018562212586402893, 0.026236342266201973, 0.024024993181228638, 0.028653834015130997, 0.013314943760633469, 0.039804279804229736, -0.020895373076200485, -0.028279028832912445, 0.05385946109890938, -0.013258722610771656, -0.011853204108774662, 0.031033843755722046, 0.017437797039747238, -0.013689748011529446, 0.012012496590614319, -0.09302657097578049, 0.011272257193922997, 0.013352423906326294, 0.00973555725067854, -0.030790220946073532, 0.014495578594505787, -0.024287356063723564, -0.025692874565720558, -0.060493506491184235, -0.02042686566710472, 0.0016702242428436875, 0.0013364136684685946, 0.05989382043480873, -0.06843937188386917, -0.04677565023303032, 0.06514108926057816, 0.07038835436105728, 0.026123899966478348, -0.005415930412709713, -0.01774701103568077, 0.0757855474948883, 0.050148893147706985, 0.028054146096110344, 0.045089028775691986, -0.003715253435075283, -0.05086102336645126, 0.02816658653318882, 0.03120250627398491, 0.01881520450115204, -0.0007109580328688025, 0.02599271945655346, 0.003085112664848566, -0.01599479839205742, -0.01295887865126133, -0.01397085189819336, -0.005247268360108137, 0.01796252466738224, 0.028616352006793022, -0.002189094666391611, 0.05944405496120453, 0.01628527231514454, 0.026667367666959763, -0.039279550313949585, 0.029572105035185814, -0.01010099146515131, -0.07394900172948837, 0.03571890667080879, -0.002438574330881238, 0.022188449278473854, 0.1074940413236618, 0.026817290112376213, 0.001303618191741407, 0.010072881355881691, 0.0061795953661203384, -0.07226238399744034, 0.004886518698185682, 0.008062990382313728, 0.011319107376039028, -0.005467466078698635, -0.004387559834867716, -0.03738678619265556, 0.06229257211089134, -0.04418949410319328, 0.009688706137239933, -0.024437278509140015, 0.02685477025806904, 0.07121292501688004, 0.07259970903396606, -0.0958750918507576, 0.05367206037044525, 0.036168672144412994, 0.02323790267109871, 0.01165643148124218, 0.00640916358679533, -0.03600000962615013, 0.032776687294244766, -0.007838106714189053, -0.008105156011879444, -0.0017276162980124354, -0.05438418686389923, 0.04497658461332321, -0.010016660206019878, -0.04343988746404648, 0.04996149241924286, -0.07301199436187744, -0.02644248493015766, -0.019143158569931984, -0.014729832299053669, 0.02250703237950802, -0.07855910062789917, 0.005453411024063826, 0.02483082376420498, -0.029066119343042374, 0.01680999994277954, -0.0264987051486969, -0.017690790817141533, -0.039429474622011185, -0.011038003489375114, 0.04014160484075546, -0.02070797048509121, -0.004570276942104101, -0.015310779213905334, -0.039579395204782486, -0.0061795953661203384, -0.0119469054043293, 0.037330567836761475, 0.059781379997730255, -0.016772517934441566, -0.05273504555225372, 0.011956275440752506, 0.011028633452951908, 0.033563777804374695, -0.032045818865299225, 0.017775122076272964, 0.016482044011354446, 0.04606352001428604, 0.015872986987233162, -0.021532541140913963, -0.029871949926018715, -0.0039940145798027515, -0.02316294237971306, 0.06630298495292664, -0.018740244209766388, 0.038342539221048355, 0.05610829219222069, 0.02882249467074871, 0.05742010846734047, -0.0293284822255373, -0.02207600697875023, -0.02303176000714302, 0.01154399011284113, -0.006226446013897657, 0.008751694113016129, -0.03965435549616814, -0.053447175770998, -0.0270234327763319, -0.014036443084478378, -0.025111926719546318, -0.0032139518298208714, 0.029234779998660088, 0.06791464239358902, -0.02498074620962143, -0.008957836776971817, 0.008339408785104752, 0.06600313633680344, 0.02882249467074871, -0.05063613876700401, 0.029740767553448677, 0.034931816160678864, -0.004436752758920193, -0.022938059642910957, 0.020445605739951134, 0.05974389985203743, -0.018590321764349937, -0.02867257408797741, 0.00284383213147521, -0.017540868371725082, -0.05307237058877945, -0.01644456386566162, 0.052097879350185394, 0.03793025389313698, 0.03590630739927292, -0.014205104671418667, -0.03408850356936455, -0.06442896276712418, -0.0537470206618309, 0.019358672201633453, 0.017494017258286476, -0.03495055437088013, 0.012406041845679283, 0.03650599718093872, 0.037555448710918427, -0.031521089375019073, 0.012143678031861782, -0.002315591322258115, 0.0058656963519752026, 0.07357420027256012, 0.017700159922242165, 0.016266532242298126, 0.03586882725358009, 0.06761480122804642, 0.0018576267175376415, 0.012499743141233921, 0.03064029850065708, 0.014889123849570751, -0.038342539221048355, -0.03976679965853691, -0.0421280674636364, -0.006320147309452295, -0.04201562702655792, 0.03510047867894173, -0.08043313026428223, 0.0023214477114379406, 0.04126601666212082, 0.048124946653842926, -0.010082251392304897, -0.02636752277612686, 0.0076132239773869514, 0.017494017258286476, -0.0119469054043293, -0.0170817319303751, 0.04111609607934952, 0.035943787544965744, -0.026311302557587624, 0.006732432637363672, 0.06701511144638062, -0.03759292885661125, 0.0025299328844994307, 0.010906822048127651, -0.021251436322927475, -0.011600211262702942, -0.03296408802270889, 0.07282458990812302, 0.048124946653842926, 0.031314946711063385, -0.05067361891269684, -0.016641337424516678, 0.013745969161391258, -0.020164502784609795, 0.012471632100641727, -0.032701727002859116, -0.03378865867853165, 0.035587724298238754, 0.0531473308801651, 0.008147320710122585, 0.03376992046833038, 0.014289435930550098, 0.0011250003008171916, -0.022938059642910957, 0.020333165302872658, -0.022563254460692406, 0.008189486339688301, 0.02528058923780918, 0.010129101574420929, 0.009773037396371365, 0.02796044386923313, 0.017053622752428055, -0.0419781468808651, 0.002836804371327162, 0.04107861593365669, 0.0005370251019485295, 0.020820410922169685, 0.029778247699141502, -0.0019524991512298584, 0.04107861593365669, -0.03882978484034538, -0.011450288817286491, 0.04501406475901604, -0.02093285322189331, -0.12121190130710602, -0.0008860621601343155, -0.02874753437936306, 0.007252474315464497, 0.0343133881688118, 0.013924001716077328, 0.012874547392129898, -0.007627279497683048, 0.009754297323524952, 0.029703287407755852, 0.015310779213905334, 0.02040812559425831, -0.01897449791431427, 0.024081213399767876, 0.011618951335549355, 0.0047178566455841064, -0.05678293853998184, -0.03665591776371002, 0.0748860165476799, 0.04943676292896271, -0.01982717774808407, 0.006268611643463373, 0.002548673190176487, 0.02897241711616516, -0.03320771083235741, -0.06649038940668106, 0.009707446210086346, 0.0072196791879832745, 0.00785216223448515, -0.0066153062507510185, -0.07968351989984512, -0.06247997283935547, 0.008301927708089352, -0.06690267473459244, -0.07848414033651352, -0.024568460881710052, -0.030902663245797157, 0.012434151954948902, -0.036449775099754333, -0.0007683500298298895, -0.07211245596408844, 0.054496631026268005, -0.0016842794138938189, 0.02839146926999092, 0.00018008203187491745, -0.050448738038539886, -0.014448728412389755, 0.0035348786041140556, 0.05198543891310692, -0.005214472766965628, -0.02121395617723465, 0.003366216318681836, -0.06116815656423569, 0.008643937297165394, -0.047187935560941696, 0.005837586242705584, 0.013061949983239174, -0.03390110284090042, -0.014973455108702183, 0.011103594675660133, -0.006530974991619587, -0.054121825844049454, 0.005345654673874378, 0.02245081216096878, 0.025655394420027733, -0.004668663255870342, -0.0040408652275800705, 0.015151487663388252, -0.06030610576272011, -0.016528895124793053, 0.06896410137414932, 0.03049037791788578, -0.012846437282860279, 0.013061949983239174, 0.044789183884859085, -0.00810984056442976, -0.018056225031614304, -0.0690765380859375, -0.012677774764597416, -0.05149818956851959, 0.020914113149046898, -0.025018226355314255, 0.0028695999644696712, -0.021138995885849, 0.006919835228472948, -0.0747360959649086, -0.026704847812652588, -0.0366184376180172, -0.027997924014925957, -0.0021176475565880537, -0.017353465780615807, 0.014898493885993958, 0.020745450630784035, -0.021307658404111862, -0.030078092589974403, 0.0024830824695527554, 0.02121395617723465, -0.02439979836344719, 0.06679023057222366, -0.00255335820838809, 0.048837076872587204, -0.04002916067838669, 0.015188967809081078, 0.09992298483848572, 0.021888604387640953, -0.009660596027970314, 0.03688080236315727, -0.03916710987687111, -0.020914113149046898, 0.0047436244785785675, 0.005041125696152449, -0.01709110289812088, 0.025505471974611282, -0.017728270962834358, 0.05618325248360634, 0.027548158541321754, 0.0014078608946874738, -0.0185341015458107, -0.019143158569931984, -0.036093711853027344, 0.02426861599087715, -0.0005291191046126187, -0.02151380106806755, 0.0061795953661203384, -0.007992713712155819, -0.0643165186047554, -0.020220723003149033, -0.031521089375019073, -0.052472684532403946, -0.020539307966828346, -0.04437689855694771, 0.005214472766965628, -0.03824883699417114, 0.008985946886241436, -0.08508070558309555, 0.013165021315217018, -0.041828226298093796, -0.029384702444076538, -0.010363355278968811, -0.036543477326631546, -0.03013431280851364, -0.07001355290412903, -0.0045515368692576885, -0.01628527231514454, 0.032476842403411865, -0.01553566288203001, -0.03686206042766571, -0.08073297142982483, -0.04887455701828003, 0.07158773392438889, 0.041903186589479446, 0.03502551466226578, -0.0036730878055095673, 0.012574703432619572, -0.0291035994887352, 0.08732953667640686, 0.006709007546305656, -0.016210312023758888, -0.03395732119679451, -0.008315983228385448, 0.07683499902486801, 0.0058141606859862804, 0.008756378665566444, -0.03330141305923462, 0.024924524128437042, -0.036824580281972885, -0.029291002079844475, -0.007809996604919434, 0.05614577233791351, 0.03459449112415314, 0.01782197132706642, -0.03860490396618843, 0.008339408785104752, 0.0236689280718565, 0.02275065705180168, -0.003204581793397665, -0.0019150186562910676, 0.009187404997646809, -0.0068823546171188354, 0.0022183763794600964, -0.009791777469217777, -0.08807914704084396, 0.09767415374517441, -0.01716606318950653, -0.02381885051727295, 0.02591775730252266, 0.005462781060487032, -0.005298804026097059, -0.03236440196633339, 0.014411247335374355, -0.06596565991640091, -0.0476377010345459, -0.012677774764597416, 0.06615306437015533, -0.015619993209838867, -0.03540031984448433, 0.08972828835248947, 0.03946695476770401, 0.011159815825521946, 0.03463197126984596, 0.08133266121149063, -0.07945863902568817, -0.007327435538172722, -0.030321715399622917, -0.010457056574523449, -0.013774079270660877, 0.03939199447631836, -0.007561688311398029, -0.011768873780965805, 0.022544514387845993, -0.0077303508296608925, 0.002315591322258115, 0.0035817292518913746, -0.017212914302945137, 0.017728270962834358, -0.08335660398006439, 0.020670488476753235, -0.015039046294987202, -0.02042686566710472, 0.019564814865589142 ]
329
maya.core
validate_class_type_arguments
Decorator to validate all the arguments to function are of the type of calling class for passed operator
def validate_class_type_arguments(operator): """ Decorator to validate all the arguments to function are of the type of calling class for passed operator """ def inner(function): def wrapper(self, *args, **kwargs): for arg in args + tuple(kwargs.values()): if not isinstance(arg, self.__class__): raise TypeError( 'unorderable types: {}() {} {}()'.format( type(self).__name__, operator, type(arg).__name__ ) ) return function(self, *args, **kwargs) return wrapper return inner
(operator)
[ 0.0011837715283036232, -0.01777656190097332, 0.031662002205848694, -0.009230309166014194, 0.009265844710171223, 0.014027582481503487, -0.035784102976322174, -0.021108001470565796, 0.007959919981658459, 0.0022664894349873066, 0.02928113378584385, -0.02176540717482567, 0.027770882472395897, -0.045627400279045105, -0.03271029517054558, 0.014871546998620033, 0.034238316118717194, -0.00804875884205103, 0.00043697384535335004, -0.0014336295425891876, -0.005285884253680706, 0.041931722313165665, 0.030862458050251007, 0.028108468279242516, 0.03615722432732582, 0.06904520094394684, 0.008475182577967644, 0.017758794128894806, 0.009194773621857166, 0.0007989903097040951, -0.01833624392747879, 0.013530087657272816, 0.008057641796767712, 0.003382521914318204, 0.013689996674656868, -0.022742629051208496, 0.04168297350406647, 0.04807933792471886, -0.06662879139184952, 0.010385207831859589, -0.08798554539680481, -0.0019655495416373014, -0.012499561533331871, 0.000564956630114466, 0.010234182700514793, -0.03852032870054245, -0.007577914744615555, -0.03486018627882004, -0.05380053073167801, -0.04921646788716316, 0.03663695231080055, -0.05849119648337364, 0.10426073521375656, -0.017661072313785553, 0.011779970489442348, 0.04690667241811752, 0.02439502254128456, -0.016985900700092316, 0.004823924507945776, -0.0008400780498050153, -0.033172257244586945, 0.06112081557512283, 0.00852404348552227, -0.04530758038163185, 0.004695109091699123, -0.04054584354162216, -0.08791447430849075, -0.015955375507473946, -0.0290323868393898, 0.025585457682609558, -0.04847022891044617, -0.021196840330958366, 0.034629207104444504, -0.00026151802740059793, -0.015315738506615162, -0.040261559188365936, -0.037383195012807846, 0.016292961314320564, 0.02709570899605751, 0.027788648381829262, -0.05149073153734207, -0.03297680988907814, -0.006200919859111309, 0.024679305031895638, 0.040297094732522964, -0.02881917543709278, -0.048328086733818054, 0.018318476155400276, 0.003104901872575283, 0.029565416276454926, -0.08635091781616211, -0.028534891083836555, -0.033989567309617996, -0.02160549722611904, 0.0032448223792016506, 0.051028773188591, 0.020841486752033234, -0.03812943771481514, -0.012508445419371128, 0.019846497103571892, 0.02945881150662899, 0.05827798694372177, 0.08627984672784805, 0.0089549096301198, 0.038413722068071365, -0.07171034812927246, 0.015022572129964828, -0.054475702345371246, -0.032959043979644775, 0.06556273251771927, -0.016292961314320564, -0.03144879266619682, -0.05248572304844856, 0.0110603803768754, 0.038413722068071365, -0.0007634549401700497, -0.04580507427453995, 0.005974381696432829, -0.04363741725683212, -0.019420072436332703, 0.07203017175197601, 0.02030845731496811, 0.018007542937994003, 0.06051671504974365, 0.020503900945186615, 0.02263602241873741, -0.008755023591220379, -0.015297971665859222, -0.026864729821681976, -0.01318361796438694, -0.011220289394259453, -0.010944889858365059, -0.05330303683876991, 0.03713444992899895, 0.017447860911488533, 0.05561283230781555, -0.02052166871726513, 0.004495222587138414, -0.06972037255764008, 0.01764330454170704, 0.022405043244361877, 0.0477595217525959, 0.0034491505939513445, -0.01867382973432541, -0.03379412367939949, -0.000568010495044291, -0.04086565971374512, 0.03164423629641533, 0.02876587212085724, -0.0009672280284576118, -0.016639430075883865, 0.02794855833053589, 0.05941511690616608, -0.011851041577756405, -0.0023297867737710476, -0.004344197455793619, 0.033474307507276535, -0.02864149771630764, 0.015537834726274014, -0.027682043612003326, -0.0044685713946819305, 0.038413722068071365, -0.004473012872040272, -0.038449257612228394, 0.04594721645116806, 0.02430618368089199, 0.004037704784423113, -0.03891121596097946, -0.01648840494453907, -0.0009155906736850739, -0.01312143076211214, -0.026864729821681976, 0.06339507550001144, 0.010003202594816685, -0.06094313785433769, 0.03990620747208595, 0.005143743008375168, 0.03388296440243721, 0.04843469336628914, -0.0011382419615983963, 0.037809621542692184, -0.007222561165690422, -0.05913083255290985, 0.012108673341572285, 0.059272974729537964, 0.04470347985625267, 0.010900470428168774, -0.03869800269603729, -0.029227830469608307, -0.03546428680419922, -0.05600372329354286, 0.01927793212234974, 0.006307526025921106, -0.02387976087629795, 0.013077011331915855, -0.0009633413283154368, -0.05792263150215149, 0.042358145117759705, 0.015013688243925571, 0.03805836662650108, -0.014080884866416454, 0.036352671682834625, 0.042749036103487015, -0.017101390287280083, 0.009496823884546757, -0.005085998214781284, 0.021321214735507965, -0.0006757270311936736, -0.008706162683665752, -0.06001921743154526, 0.022298436611890793, -0.04740416631102562, -0.030240589752793312, 0.04509436711668968, 0.017874285578727722, -0.027344457805156708, 0.0601968951523304, -0.02897908352315426, 0.008683952502906322, -0.009496823884546757, 0.04807933792471886, 0.04633810743689537, -0.04576953873038292, -0.007178142201155424, 0.04676453024148941, -0.018531689420342445, 0.02421734668314457, -0.018318476155400276, -0.008914932608604431, 0.022813700139522552, 0.00005635685374727473, -0.024839214980602264, 0.018833739683032036, 0.01139796618372202, -0.03628160059452057, -0.055506229400634766, 0.020379526540637016, -0.024270648136734962, -0.020290689542889595, 0.014898198656737804, -0.026011882349848747, -0.039657458662986755, -0.007715614512562752, 0.00878167524933815, -0.008506275713443756, -0.02515903301537037, 0.038875680416822433, 0.04040370136499405, 0.004957182332873344, -0.009541243314743042, -0.03812943771481514, -0.00818201620131731, -0.015058107674121857, -0.04573400318622589, -0.005277000367641449, 0.019917568191885948, -0.05611032992601395, -0.10561107844114304, 0.05330303683876991, -0.01365446113049984, 0.00018780991376843303, 0.04289117455482483, 0.06730396300554276, 0.01432074885815382, -0.022564951330423355, -0.05149073153734207, -0.0011254714336246252, -0.008359692990779877, 0.025994114577770233, 0.03876907378435135, 0.036601416766643524, 0.056359075009822845, 0.03962192311882973, 0.0256387609988451, -0.019651051610708237, -0.032870206981897354, 0.011771086603403091, 0.017279068008065224, -0.028481589630246162, -0.050175923854112625, 0.022262901067733765, -0.0031626468989998102, -0.042180467396974564, -0.03653034567832947, -0.05024699494242668, 0.032870206981897354, 0.005245907232165337, 0.009470172226428986, 0.048718973994255066, -0.019686587154865265, 0.010625071823596954, -0.02992076985538006, 0.08052311837673187, -0.00014477882359642535, 0.001412530429661274, 0.028836943209171295, -0.014933734200894833, -0.04033263027667999, 0.029991840943694115, -0.0705021470785141, 0.017279068008065224, -0.005152626894414425, -0.002185424556955695, -0.021872011944651604, 0.019935335963964462, -0.0069649298675358295, -0.005148184951394796, 0.004757295828312635, -0.04388616606593132, 0.014249677769839764, 0.028446054086089134, 0.05191715806722641, -0.05913083255290985, -0.0291567612439394, 0.05539962276816368, 0.0709996446967125, 0.010420743376016617, -0.0029649813659489155, 0.007222561165690422, 0.07192356139421463, 0.03272806480526924, 0.04630257189273834, -0.003842260455712676, -0.0013447911478579044, -0.08201560378074646, 0.009301379323005676, 0.026011882349848747, -0.004406384192407131, 0.039692994207143784, 0.042571358382701874, -0.013796602375805378, -0.01957998238503933, -0.0032514852937310934, -0.01794535480439663, 0.02130344696342945, 0.03542875126004219, 0.05419141799211502, 0.0084840664640069, 0.05646568164229393, 0.022387275472283363, 0.02821507304906845, -0.025656528770923615, 0.027841951698064804, 0.01824740506708622, -0.07433996349573135, -0.0051748366095125675, -0.032052893191576004, 0.027291154488921165, 0.07011125981807709, 0.022316204383969307, 0.007173700258135796, -0.014160839840769768, -0.010394091717898846, -0.08421880006790161, 0.03592624515295029, -0.011389082297682762, -0.011460152454674244, -0.013938743621110916, -0.0045751770958304405, -0.04576953873038292, 0.0580647736787796, -0.014285213313996792, 0.00832859892398119, -0.0029960747342556715, 0.037383195012807846, 0.01927793212234974, 0.1128602921962738, -0.08627984672784805, 0.0036556997802108526, -0.0009094830602407455, 0.011966531164944172, -0.004948298446834087, 0.0028072933200746775, -0.04722648859024048, -0.011593409813940525, 0.06506524235010147, -0.01593760773539543, 0.012046486139297485, -0.06797913461923599, 0.034238316118717194, 0.029316669330000877, -0.02361324429512024, 0.04306885227560997, -0.02992076985538006, 0.013156966306269169, -0.025230104103684425, -0.06595361977815628, 0.06709075719118118, -0.012552864849567413, 0.04395723715424538, 0.00910593569278717, -0.04328206554055214, 0.015493415296077728, -0.034291621297597885, -0.027557669207453728, 0.007249212823808193, -0.03912442922592163, 0.025301175191998482, -0.03713444992899895, -0.013156966306269169, -0.007306957617402077, -0.03500232845544815, 0.004202056210488081, 0.01615081913769245, 0.05440463125705719, 0.04982057213783264, -0.027237851172685623, -0.02146335504949093, 0.0007295852992683649, 0.015191365033388138, 0.013583390042185783, -0.0517750158905983, 0.05525748059153557, 0.03763194382190704, 0.024626001715660095, 0.018389547243714333, 0.005050462670624256, -0.012499561533331871, -0.010571768507361412, -0.05337410792708397, 0.06638004630804062, 0.014462890103459358, 0.06041010841727257, 0.03663695231080055, 0.03709891438484192, 0.039231035858392715, -0.007018233183771372, -0.0337408222258091, -0.03137772157788277, 0.03164423629641533, -0.03409617394208908, -0.027149012312293053, -0.06115635111927986, -0.007853314280509949, -0.024110740050673485, -0.028286144137382507, -0.03388296440243721, 0.006329735275357962, 0.03898228704929352, 0.06769485771656036, -0.06375043094158173, 0.0377030149102211, 0.02315128594636917, 0.06684200465679169, -0.01286379899829626, -0.040723517537117004, 0.05913083255290985, 0.025709830224514008, 0.0011804401874542236, -0.007342493161559105, 0.056181401014328, 0.028108468279242516, 0.012330768629908562, 0.006942720618098974, 0.025301175191998482, 0.0010621739784255624, -0.02606518380343914, -0.03663695231080055, 0.010349673219025135, -0.0010705026797950268, 0.039444245398044586, -0.030116215348243713, -0.06186705827713013, -0.04118547961115837, -0.0678725317120552, 0.03795175999403, 0.02361324429512024, 0.014080884866416454, 0.022902537137269974, 0.030773619189858437, 0.05561283230781555, -0.04004834592342377, -0.011691132560372353, 0.011087031103670597, -0.025905275717377663, 0.1004229187965393, 0.02043282985687256, -0.014302981086075306, 0.007027117069810629, 0.017314603552222252, -0.021374518051743507, 0.015138061717152596, 0.0023786479141563177, 0.011753319762647152, -0.045236509293317795, -0.02936997264623642, -0.018007542937994003, -0.016426218673586845, -0.0031004599295556545, 0.03406063839793205, -0.04680006578564644, 0.041754044592380524, 0.033243328332901, 0.02512349747121334, 0.01997087150812149, -0.0015013688243925571, -0.049571823328733444, 0.03452260047197342, -0.006858323700726032, -0.017758794128894806, 0.014640566892921925, 0.037809621542692184, 0.0019433398265391588, -0.00918588973581791, 0.08862517774105072, -0.04385063052177429, 0.001129913260228932, 0.003580187214538455, -0.028179537504911423, 0.014525077305734158, -0.021410053595900536, 0.04250028729438782, 0.037774085998535156, 0.06463881582021713, -0.012419607490301132, -0.008723930455744267, 0.016372915357351303, -0.01833624392747879, -0.006112081464380026, 0.012615052051842213, 0.033989567309617996, 0.01440958771854639, 0.03475357964634895, 0.013920975849032402, 0.03258592262864113, -0.02769981138408184, 0.009310263209044933, -0.0477595217525959, 0.034291621297597885, -0.025496618822216988, 0.013832137919962406, 0.009843293577432632, 0.00590331107378006, 0.030862458050251007, -0.00931914709508419, 0.044810086488723755, 0.001722354325465858, 0.05113537982106209, 0.06115635111927986, 0.02172987163066864, 0.03303011506795883, 0.04978503659367561, -0.013752182945609093, 0.010287486016750336, -0.01080274861305952, 0.02546108327805996, 0.01448954176157713, -0.004757295828312635, -0.10497144609689713, 0.007422447670251131, -0.039017822593450546, -0.03830711543560028, 0.01811414770781994, 0.04328206554055214, 0.0036090596113353968, -0.006049894727766514, 0.01902918331325054, 0.05561283230781555, 0.015031456016004086, 0.014302981086075306, -0.008657301776111126, 0.010269718244671822, -0.020557204261422157, -0.020859254524111748, -0.06947162002325058, -0.04484562203288078, 0.08940695971250534, 0.06318186223506927, -0.03470027446746826, 0.013725531287491322, -0.03272806480526924, 0.0037267706356942654, -0.020113011822104454, -0.08919374644756317, 0.025905275717377663, -0.006414132192730904, -0.013716647401452065, 0.04680006578564644, -0.048292551189661026, -0.06104974448680878, 0.035624194890260696, -0.04886111617088318, -0.07888849079608917, -0.053231965750455856, -0.0028006304055452347, -0.012917102314531803, -0.007657869253307581, -0.01335241086781025, -0.08755911886692047, 0.04196725785732269, -0.0006124296924099326, 0.03716998174786568, 0.02300914376974106, -0.05813584476709366, -0.02949434705078602, -0.013174734078347683, 0.001334796892479062, 0.004934972617775202, -0.03558865934610367, 0.0004894440062344074, -0.058206915855407715, 0.007991013117134571, -0.035961780697107315, -0.019224628806114197, 0.02327565848827362, -0.06165384501218796, -0.02606518380343914, 0.018442850559949875, -0.04644471034407616, -0.06065885350108147, 0.009985435754060745, 0.026651518419384956, 0.04125655069947243, 0.055328551679849625, 0.013974279165267944, 0.005756727885454893, -0.07085750252008438, -0.02151665836572647, 0.03191075101494789, 0.08123382925987244, -0.034202780574560165, 0.006320851854979992, 0.042180467396974564, -0.0090792840346694, -0.013165850192308426, -0.017367905005812645, 0.023435568436980247, -0.02009524405002594, 0.012783844955265522, -0.0569276437163353, 0.0061875940300524235, -0.0009961004834622145, 0.052450187504291534, -0.08386344462633133, -0.05852673202753067, -0.06382150202989578, -0.0265804473310709, 0.05042467266321182, -0.010465162806212902, -0.04601828753948212, -0.0089549096301198, -0.05216590315103531, -0.04960735887289047, 0.001099930377677083, 0.020343992859125137, -0.040261559188365936, 0.01726130023598671, 0.010873819701373577, 0.027255618944764137, -0.018007542937994003, 0.027859719470143318, 0.11158102005720139, -0.02624286152422428, 0.012695006094872952, -0.007551263552159071, -0.012801612727344036, -0.004552967846393585, -0.008608439937233925, 0.04161190241575241, -0.01589318923652172, 0.00882165227085352, 0.001968880882486701, 0.022511648014187813, 0.057602815330028534, -0.013574506156146526, 0.0035757452715188265, -0.03830711543560028, -0.02924559824168682, 0.03713444992899895, -0.003173751523718238, -0.020415062084794044, -0.0007801121100783348, -0.022102992981672287, -0.0691162720322609, -0.04822148010134697, -0.012659470550715923, 0.00963896606117487, -0.042535822838544846, -0.030293891206383705, -0.011433500796556473, -0.06307525932788849, -0.005992149468511343, -0.0651007741689682, -0.04104333743453026, -0.07931491732597351, -0.06101420894265175, 0.004404163453727961, 0.018282940611243248, 0.009701152332127094, -0.08812768757343292, 0.01440958771854639, 0.03688570111989975, 0.08677734434604645, -0.03167977184057236, -0.018389547243714333, -0.07192356139421463, -0.0894780308008194, 0.038200508803129196, 0.043104387819767, 0.0012826042948290706, 0.018922578543424606, -0.023328961804509163, -0.0363171361386776, 0.029636487364768982, 0.03638820722699165, -0.021783173084259033, -0.03615722432732582, -0.03702784329652786, 0.08450307697057724, -0.001134910504333675, -0.03143102303147316, -0.013192500919103622, 0.04200279340147972, -0.05632353946566582, -0.025407779961824417, 0.006045452784746885, 0.07131946086883545, 0.0477595217525959, -0.017243532463908195, -0.016372915357351303, -0.017847632989287376, 0.031022366136312485, 0.04470347985625267, -0.03358091413974762, 0.02263602241873741, 0.007746707648038864, 0.008897164836525917, -0.03756087273359299, -0.021800940856337547, -0.04019048810005188, 0.07362926006317139, 0.012321884743869305, -0.03830711543560028, 0.03681463003158569, 0.00987882912158966, 0.0023697640281170607, -0.05536408722400665, -0.04043923690915108, -0.04427705332636833, 0.020930325612425804, 0.004894995596259832, 0.033989567309617996, 0.00339806848205626, -0.023861993104219437, 0.07384247332811356, -0.008444089442491531, 0.014720521867275238, 0.061724916100502014, 0.026420537382364273, -0.053445179015398026, -0.001492485054768622, -0.035357680171728134, 0.05301875248551369, -0.02130344696342945, 0.027930790558457375, -0.0028472705744206905, 0.04918093606829643, -0.006929394789040089, -0.023293426260352135, -0.019331233575940132, -0.02816176973283291, -0.0040132743306458, 0.003184856381267309, -0.03475357964634895, 0.02970755845308304, -0.028748104348778725, -0.010083157569169998, 0.04168297350406647 ]
330
maya.core
when
"Returns a MayaDT instance for the human moment specified. Powered by dateparser. Useful for scraping websites. Examples: 'next week', 'now', 'tomorrow', '300 years ago', 'August 14, 2015' Keyword Arguments: string -- string to be parsed timezone -- timezone referenced from (default: 'UTC') prefer_dates_from -- what dates are prefered when `string` is ambigous. options are 'past', 'future', and 'current_period' (default: 'current_period'). see: [1] Reference: [1] dateparser.readthedocs.io/en/latest/usage.html#handling-incomplete-dates
def when(string, timezone='UTC', prefer_dates_from='current_period'): """"Returns a MayaDT instance for the human moment specified. Powered by dateparser. Useful for scraping websites. Examples: 'next week', 'now', 'tomorrow', '300 years ago', 'August 14, 2015' Keyword Arguments: string -- string to be parsed timezone -- timezone referenced from (default: 'UTC') prefer_dates_from -- what dates are prefered when `string` is ambigous. options are 'past', 'future', and 'current_period' (default: 'current_period'). see: [1] Reference: [1] dateparser.readthedocs.io/en/latest/usage.html#handling-incomplete-dates """ settings = { 'TIMEZONE': timezone, 'RETURN_AS_TIMEZONE_AWARE': True, 'TO_TIMEZONE': 'UTC', 'PREFER_DATES_FROM': prefer_dates_from, } dt = dateparser.parse(string, settings=settings) if dt is None: raise ValueError('invalid datetime input specified.') return MayaDT.from_datetime(dt)
(string, timezone='UTC', prefer_dates_from='current_period')
[ 0.053708482533693314, 0.02761838585138321, 0.0005833428585901856, -0.03740672022104263, -0.0033931678626686335, -0.05661951005458832, 0.042209915816783905, 0.09060577303171158, -0.02987443283200264, -0.004880521446466446, -0.04930555075407028, 0.06611674278974533, -0.04108189418911934, 0.058329738676548004, 0.00014043439296074212, 0.05698338896036148, -0.029037512838840485, 0.04777725785970688, -0.017857342958450317, -0.004835037048906088, 0.012153545394539833, -0.07503176480531693, -0.009024188853800297, 0.050069693475961685, 0.03380431979894638, 0.020595528185367584, -0.03449569270014763, -0.025234980508685112, -0.023451974615454674, -0.008187268860638142, 0.04639451950788498, -0.01955847442150116, -0.05600091442465782, 0.040244974195957184, -0.01853051781654358, 0.007514093071222305, 0.0018193930154666305, 0.013117823749780655, -0.03233061358332634, -0.043192390352487564, -0.01813025027513504, -0.006886402610689402, 0.08376485109329224, 0.028673633933067322, -0.07397651672363281, -0.005717442370951176, -0.015974270179867744, -0.021578000858426094, -0.002109358785673976, 0.018011990934610367, 0.07896165549755096, 0.010234085842967033, 0.0010973213938996196, -0.03820725157856941, -0.033549606800079346, 0.01813025027513504, -0.0006709011504426599, 0.07397651672363281, -0.008633019402623177, -0.015301095321774483, -0.03182118386030197, 0.024434447288513184, -0.0617138110101223, -0.000888091220986098, -0.001152471755631268, 0.006231421139091253, 0.05581897497177124, -0.04537566006183624, 0.027782130986452103, -0.025817185640335083, -0.06415179371833801, 0.004296041559427977, 0.009524522349238396, 0.02467096969485283, 0.03180298954248428, -0.010479703545570374, -0.05709255114197731, -0.031784795224666595, -0.0013895613374188542, 0.016510991379618645, -0.055418711155653, -0.011043715290725231, -0.05858445540070534, -0.08762196451425552, -0.061568260192871094, 0.0029360454063862562, 0.007386735640466213, 0.004514368716627359, -0.00690004788339138, -0.02956513501703739, -0.019230984151363373, -0.025198591873049736, 0.017666306346654892, 0.09249793738126755, -0.049669429659843445, 0.027145342901349068, 0.009124255739152431, 0.02692701667547226, -0.009187934920191765, 0.05945776402950287, -0.0047850036062300205, -0.007404929492622614, -0.04402931034564972, -0.01774817891418934, -0.03958998993039131, 0.02654494345188141, -0.0178846325725317, -0.01148946676403284, 0.044575128704309464, -0.06444290280342102, -0.07968941330909729, -0.08391040563583374, -0.08594812452793121, -0.018057474866509438, 0.009560910053551197, -0.023033514618873596, -0.00440975371748209, -0.005198915489017963, -0.00650887843221426, -0.02576260454952717, -0.049960531294345856, 0.00008805577817838639, -0.030583996325731277, -0.03214867413043976, 0.02199646085500717, -0.04832307621836662, -0.007923456840217113, -0.05268961936235428, 0.030802322551608086, -0.0040481495670974255, -0.0018068846547976136, 0.03112981468439102, 0.028146009892225266, 0.001421400811523199, -0.10406927764415741, 0.08798584342002869, 0.0019581217784434557, 0.03536900132894516, -0.02288796380162239, 0.03245797008275986, 0.03893500939011574, -0.013345247134566307, -0.007868874818086624, -0.0266359131783247, -0.04231908172369003, -0.04461151733994484, -0.011034618131816387, -0.013390731997787952, -0.03948082774877548, 0.07816112041473389, -0.002647216897457838, -0.03676993399858475, -0.05254406854510307, 0.008451079949736595, -0.025708023458719254, -0.05687422305345535, -0.028364336118102074, -0.014264040626585484, 0.016310857608914375, 0.013436216861009598, 0.046030640602111816, -0.02015887387096882, 0.0026585878804326057, 0.06353320181369781, 0.034350138157606125, 0.029819851741194725, -0.009824722073972225, 0.026781463995575905, 0.010834485292434692, 0.008064459078013897, 0.010161309503018856, 0.06764502823352814, 0.009770140051841736, 0.027854906395077705, -0.05865722894668579, -0.027782130986452103, -0.003249890636652708, 0.04723144322633743, -0.005553697235882282, -0.01479166466742754, 0.06844556331634521, 0.03951721638441086, -0.0672447681427002, -0.006326938979327679, 0.013781901448965073, 0.007677838206291199, -0.018812524154782295, 0.04501178115606308, -0.04657645896077156, 0.049887754023075104, -0.015546713024377823, 0.010306861251592636, 0.04981498047709465, 0.030693160369992256, -0.0870397612452507, -0.0004872561839874834, -0.02004970982670784, -0.02023164927959442, -0.05148882046341896, -0.007732420228421688, -0.027054373174905777, 0.009115158580243587, 0.0280914269387722, -0.018048377707600594, 0.05156159773468971, 0.009092416614294052, -0.07474066317081451, -0.04355626925826073, -0.07765169441699982, -0.06866388767957687, -0.05640118196606636, -0.03958998993039131, -0.020595528185367584, -0.014036617241799831, 0.00565376365557313, 0.026781463995575905, 0.01975860819220543, 0.035132478922605515, -0.015992464497685432, -0.0034568465780466795, -0.0024993910919874907, 0.03549635782837868, -0.004480255302041769, 0.03864390775561333, 0.08536592125892639, -0.01692035421729088, -0.03396806865930557, 0.004866876173764467, -0.015146446414291859, -0.05003330856561661, -0.0227969940751791, -0.04595786705613136, 0.09388067573308945, -0.05025163292884827, 0.0911879763007164, -0.026854241266846657, 0.0052716913633048534, 0.017338814213871956, -0.012353678233921528, 0.0227969940751791, -0.0011069868924096227, 0.0277093555778265, -0.013845580630004406, 0.0031816635746508837, 0.01716597191989422, -0.013126919977366924, -0.06422457098960876, -0.04523010924458504, -0.026381198316812515, 0.020377201959490776, 0.027181731536984444, 0.007177505176514387, 0.03798892721533775, -0.011116490699350834, -0.029419584199786186, 0.014218555763363838, 0.07350347936153412, 0.029947208240628242, 0.01964944414794445, -0.002963336417451501, 0.02192368544638157, -0.049887754023075104, -0.0428285114467144, -0.03342225030064583, -0.02612648345530033, 0.0018728376599028707, -0.025125816464424133, 0.020286232233047485, 0.001576049136929214, -0.04744976758956909, -0.04115466773509979, -0.0033749740105122328, -0.009651879779994488, 0.007686935365200043, 0.008387401700019836, -0.002890560543164611, -0.0305476076900959, -0.06782697141170502, -0.03737033158540726, 0.010552478954195976, -0.048286691308021545, 0.036988258361816406, 0.00029252428794279695, 0.04748615622520447, 0.004593967460095882, 0.02790948748588562, 0.014982701279222965, 0.024252507835626602, 0.010870872996747494, 0.01868516579270363, 0.012644780799746513, -0.03114800713956356, 0.012890399433672428, -0.07757891714572906, -0.02701798640191555, 0.01954028010368347, 0.003520525526255369, -0.03606037050485611, 0.010197697207331657, -0.042027976363897324, 0.00815997738391161, 0.008300980553030968, -0.012726654298603535, 0.06604396551847458, -0.06720837950706482, 0.044065698981285095, -0.005499115213751793, 0.005594633519649506, -0.005953963380306959, -0.10799916833639145, 0.011207460425794125, -0.007937101647257805, -0.04726782813668251, -0.04934193938970566, -0.014782567508518696, 0.04253740608692169, -0.020286232233047485, 0.041300222277641296, 0.01813025027513504, -0.03409542515873909, -0.029328614473342896, 0.014373204670846462, 0.05472734197974205, -0.02652674913406372, -0.014891731552779675, -0.00012288009747862816, -0.06338765472173691, 0.021013988181948662, -0.010770806111395359, 0.025617053732275963, 0.009697364643216133, -0.008969607762992382, 0.014800761826336384, 0.023015320301055908, -0.007809744216501713, 0.006913693156093359, -0.00972465518862009, -0.005021524615585804, 0.031493693590164185, 0.06822723895311356, 0.07816112041473389, -0.009542715735733509, 0.02838253043591976, 0.03618772700428963, 0.039662767201662064, 0.0024061473086476326, -0.004989685025066137, 0.05225296691060066, 0.044757068157196045, 0.011871539056301117, -0.029910821467638016, 0.031693827360868454, 0.01656557247042656, -0.026290228590369225, 0.014091198332607746, 0.015210125595331192, 0.01851232349872589, 0.013872871175408363, -0.026508554816246033, -0.0462125800549984, -0.04173687472939491, -0.03511428460478783, 0.04293767362833023, -0.034059036523103714, -0.06775419414043427, -0.05090661719441414, 0.010961842723190784, 0.008687601424753666, 0.04355626925826073, -0.043592654168605804, -0.008059910498559475, 0.048577792942523956, 0.024288896471261978, -0.012299096211791039, 0.044939007610082626, -0.012744847685098648, 0.01994054764509201, 0.05443623661994934, -0.039844706654548645, 0.06760863959789276, -0.007868874818086624, 0.01047060638666153, -0.02487110160291195, 0.036988258361816406, 0.026763271540403366, -0.0038048054557293653, 0.04948749020695686, 0.024943877011537552, -0.06968275457620621, -0.02319725975394249, 0.02860085852444172, 0.010388733819127083, 0.006417908705770969, 0.03933527693152428, 0.007732420228421688, -0.021050376817584038, -0.04410208761692047, 0.019704025238752365, 0.0032430680003017187, 0.003472766373306513, 0.008692150004208088, 0.001478256774134934, -0.05621924251317978, 0.014282234944403172, -0.018011990934610367, 0.07281211018562317, 0.0015066848136484623, 0.03243977576494217, -0.06084050238132477, 0.011753278784453869, 0.013381635770201683, -0.03711561858654022, -0.06236879155039787, -0.040244974195957184, -0.02790948748588562, 0.023051708936691284, 0.016893064603209496, 0.017520753666758537, 0.04952387511730194, -0.033658768981695175, -0.0059494152665138245, -0.03575107082724571, 0.0159651730209589, -0.029819851741194725, 0.03556913137435913, -0.02969249337911606, -0.005685603246092796, 0.006395166274160147, -0.024925684556365013, -0.03103884495794773, 0.01355447806417942, 0.0063132937066257, -0.02478013187646866, -0.03908056020736694, 0.06666255742311478, -0.009237967431545258, -0.00670446315780282, -0.023451974615454674, 0.00864211656153202, -0.01193521823734045, 0.06480677425861359, -0.014227652922272682, 0.03253074735403061, 0.004182329401373863, -0.0723026767373085, -0.01984957791864872, 0.02929222770035267, -0.006759044714272022, -0.01557400356978178, -0.0337679348886013, -0.02947416715323925, 0.030038177967071533, -0.013136017136275768, 0.001798924757167697, 0.018248511478304863, -0.0169658400118351, 0.0005472393240779638, 0.00785977765917778, -0.05811141058802605, 0.0518890880048275, -0.0060130939818918705, 0.007268474902957678, 0.02605370804667473, 0.018457742407917976, 0.012117157690227032, 0.06917332112789154, -0.0574200414121151, -0.012908592820167542, -0.03567829728126526, -0.0005805000546388328, 0.000636218988802284, -0.027854906395077705, 0.024015987291932106, -0.0035796556621789932, 0.03245797008275986, -0.03467762842774391, -0.010006661526858807, 0.0231062900274992, -0.005089751910418272, 0.06265989691019058, 0.05640118196606636, 0.004609887022525072, 0.007727871648967266, 0.006709011737257242, -0.018303092569112778, -0.00707743875682354, 0.029947208240628242, -0.038280028849840164, 0.009751946665346622, -0.030001789331436157, -0.03773421049118042, 0.04009941965341568, 0.13070519268512726, -0.0686275064945221, 0.042391855269670486, 0.020377201959490776, 0.02949235960841179, 0.0007550480659119785, 0.028873765841126442, -0.04646729677915573, -0.011525854468345642, 0.046321745961904526, -0.047704484313726425, 0.029219450429081917, -0.04592147842049599, 0.022487698122859, 0.025125816464424133, 0.007454962935298681, -0.0011172209633514285, -0.03309476003050804, 0.044575128704309464, 0.02741825208067894, -0.01732971891760826, 0.006035836413502693, -0.003941259812563658, 0.035714685916900635, 0.04126383364200592, 0.024216121062636375, -0.03293101117014885, -0.004546208307147026, 0.008960510604083538, -0.008528404869139194, -0.0018125702627003193, -0.07648728042840958, -0.011889733374118805, 0.025598859414458275, 0.003409087657928467, 0.0018853460205718875, 0.07867055386304855, -0.05938498675823212, 0.013590865768492222, -0.016265373677015305, 0.025780798867344856, 0.02554427832365036, 0.05283517390489578, 0.01917640119791031, -0.039953868836164474, -0.011325721628963947, -0.03436833247542381, 0.04253740608692169, -0.020613722503185272, -0.04159132391214371, 0.0013622704427689314, 0.08398318290710449, 0.034641243517398834, 0.026745077222585678, 0.005039718467742205, 0.024143345654010773, -0.033258505165576935, 0.018721554428339005, -0.03114800713956356, -0.03233061358332634, 0.028855573385953903, 0.06316932290792465, 0.01690215989947319, -0.023506557568907738, -0.026017319411039352, 0.06080411374568939, -0.0036205919459462166, 0.012553812004625797, -0.022869769483804703, 0.0009574555442668498, 0.0623324029147625, 0.0924251601099968, -0.038389191031455994, -0.003415910294279456, -0.05159798637032509, 0.014800761826336384, 0.050360798835754395, 0.0004517211636994034, 0.04402931034564972, 0.007341250777244568, 0.05963970348238945, 0.026872433722019196, -0.02516220510005951, 0.032185062766075134, -0.01857600174844265, -0.03860751911997795, 0.04119105637073517, 0.04854140430688858, -0.014982701279222965, 0.013490798883140087, -0.0024061473086476326, 0.0008852484170347452, -0.026272034272551537, -0.00926525890827179, 0.028873765841126442, 0.029328614473342896, -0.00604493310675025, -0.02212381921708584, 0.01194431446492672, -0.0009159506298601627, 0.050943002104759216, 0.10006661713123322, -0.00926525890827179, -0.07575952261686325, 0.030893292278051376, -0.03733394294977188, 0.008323722518980503, -0.040135808289051056, -0.053599316626787186, 0.050069693475961685, 0.009688267484307289, 0.0048168427310884, 0.06666255742311478, 0.06422457098960876, -0.05923943594098091, -0.04970581457018852, -0.007996232248842716, 0.006654429715126753, 0.02377946674823761, -0.01581052504479885, 0.005198915489017963, 0.018303092569112778, 0.014073004946112633, -0.03977192938327789, 0.014063907787203789, 0.017802760004997253, -0.04097272828221321, -0.03045663796365261, 0.023361006751656532, 0.004264202434569597, 0.03584204241633415, 0.03056580200791359, 0.008464725688099861, 0.0032453422900289297, -0.0012462842278182507, -0.05574620142579079, -0.02416153810918331, -0.01835767552256584, 0.0008016700157895684, 0.024707356467843056, -0.0126265874132514, -0.018339481204748154, -0.02681785263121128, 0.05512760579586029, 0.02270602434873581, -0.02605370804667473, 0.02900112420320511, -0.014163974672555923, 0.0014134409138932824, 0.0759778544306755, 0.059712477028369904, 0.004305138718336821, 0.03706103563308716, 0.032385196536779404, -0.040244974195957184, -0.024525417014956474, -0.010970939882099628, 0.02672688290476799, 0.0059948996640741825, 0.020777467638254166, -0.029401389881968498, 0.028146009892225266, -0.0010751475347205997, -0.003531896509230137, -0.05869361758232117, -0.00009928484359988943, -0.0006168879335746169, 0.0455939881503582, 0.01587420329451561, -0.01548303384333849, 0.014264040626585484, -0.03958998993039131, 0.0013543106615543365, 0.05057912319898605, -0.02976526878774166, 0.005153430625796318, 0.01924917846918106, -0.020395394414663315, -0.01745707541704178, 0.00739583233371377, 0.10559757053852081, -0.011653211899101734, 0.07081077247858047, -0.021250510588288307, 0.0319303460419178, 0.027272701263427734, -0.0017773194704204798, -0.03667896240949631, 0.06979191303253174, 0.021195927634835243, 0.008951413445174694, -0.01007943693548441, -0.01415487751364708, 0.0029724333435297012, -0.024707356467843056, -0.02703617885708809, 0.014127586036920547, -0.013336150906980038, 0.0420643649995327, -0.002735912101343274, -0.03904417157173157, 0.047522544860839844, 0.0813632532954216, -0.03747949376702309, -0.06997385621070862, 0.059494148939847946, -0.049087222665548325, 0.01813025027513504, 0.05025163292884827, 0.0072912173345685005, 0.0035546389408409595, 0.023561138659715652, -0.006813626736402512, -0.034441109746694565, -0.07397651672363281, 0.07692393660545349, 0.019831383600831032, -0.0037570465356111526, -0.001739794504828751, -0.01361815631389618, 0.00759141705930233, 0.009879304096102715, 0.06182297319173813, -0.07714226096868515, 0.027745742350816727, 0.030092759057879448, 0.02889196015894413, 0.0024038730189204216, -0.010652545839548111, -0.08725808560848236, 0.005298981908708811, -0.02625383995473385, -0.031111620366573334, -0.012726654298603535, -0.06349681317806244, 0.0009927062783390284, 0.02199646085500717, 0.010934552177786827, -0.042501021176576614, 0.017429783940315247, 0.022360339760780334, 0.004396108444780111, -0.009688267484307289, -0.006417908705770969, -0.005358112510293722, -0.007213893346488476, 0.0192673709243536, -0.01115287933498621, -0.04610341787338257, 0.01748436689376831, 0.05803863704204559, -0.0092106768861413, -0.029055705294013023, 0.01688396744430065, -0.06859111785888672, -0.014800761826336384, -0.009579104371368885, 0.05210741609334946, 0.01026137638837099, -0.08063549548387527, 0.016829384490847588, 0.0019422019831836224, 0.048686955124139786, -0.021086765453219414, 0.005790218245238066, 0.013972938060760498, 0.012408260256052017, 0.010734418407082558, -0.058511678129434586, -0.022851575165987015, -0.008723989129066467, 0.028418919071555138, -0.008360111154615879, -0.05611008033156395, -0.010434218682348728, 0.08310987055301666 ]
331
funcsigs
BoundArguments
Result of `Signature.bind` call. Holds the mapping of arguments to the function's parameters. Has the following public attributes: * arguments : OrderedDict An ordered mutable mapping of parameters' names to arguments' values. Does not contain arguments' default values. * signature : Signature The Signature object that created this instance. * args : tuple Tuple of positional arguments values. * kwargs : dict Dict of keyword arguments values.
class BoundArguments(object): '''Result of `Signature.bind` call. Holds the mapping of arguments to the function's parameters. Has the following public attributes: * arguments : OrderedDict An ordered mutable mapping of parameters' names to arguments' values. Does not contain arguments' default values. * signature : Signature The Signature object that created this instance. * args : tuple Tuple of positional arguments values. * kwargs : dict Dict of keyword arguments values. ''' def __init__(self, signature, arguments): self.arguments = arguments self._signature = signature @property def signature(self): return self._signature @property def args(self): args = [] for param_name, param in self._signature.parameters.items(): if (param.kind in (_VAR_KEYWORD, _KEYWORD_ONLY) or param._partial_kwarg): # Keyword arguments mapped by 'functools.partial' # (Parameter._partial_kwarg is True) are mapped # in 'BoundArguments.kwargs', along with VAR_KEYWORD & # KEYWORD_ONLY break try: arg = self.arguments[param_name] except KeyError: # We're done here. Other arguments # will be mapped in 'BoundArguments.kwargs' break else: if param.kind == _VAR_POSITIONAL: # *args args.extend(arg) else: # plain argument args.append(arg) return tuple(args) @property def kwargs(self): kwargs = {} kwargs_started = False for param_name, param in self._signature.parameters.items(): if not kwargs_started: if (param.kind in (_VAR_KEYWORD, _KEYWORD_ONLY) or param._partial_kwarg): kwargs_started = True else: if param_name not in self.arguments: kwargs_started = True continue if not kwargs_started: continue try: arg = self.arguments[param_name] except KeyError: pass else: if param.kind == _VAR_KEYWORD: # **kwargs kwargs.update(arg) else: # plain keyword argument kwargs[param_name] = arg return kwargs def __hash__(self): msg = "unhashable type: '{0}'".format(self.__class__.__name__) raise TypeError(msg) def __eq__(self, other): return (issubclass(other.__class__, BoundArguments) and self.signature == other.signature and self.arguments == other.arguments) def __ne__(self, other): return not self.__eq__(other)
(signature, arguments)
[ 0.0030886500608175993, -0.04545272886753082, -0.0029456571210175753, 0.006925630383193493, 0.004077685531228781, 0.02751186490058899, 0.0039466083981096745, 0.019408924505114555, 0.05330781266093254, -0.050104767084121704, -0.03161099925637245, 0.018970413133502007, -0.02718774788081646, -0.013403216376900673, -0.0706576406955719, 0.029227782040834427, 0.046291619539260864, 0.046596672385931015, -0.021086709573864937, -0.035061899572610855, 0.03578639775514603, 0.016968509182333946, 0.009232585318386555, 0.028846466913819313, -0.006873199716210365, -0.018970413133502007, 0.0219065360724926, 0.009151555597782135, 0.07771196216344833, 0.02888459898531437, -0.02770252153277397, -0.028484217822551727, 0.047855012118816376, 0.006348892115056515, 0.039313558489084244, -0.09105797857046127, 0.02728307619690895, 0.06104850396513939, 0.0030219200998544693, -0.03715912997722626, -0.029551899060606956, -0.04941840097308159, 0.026310723274946213, 0.006682542152702808, 0.047969404608011246, 0.008546218276023865, -0.005505232606083155, 0.060247741639614105, -0.04907521978020668, 0.0014215892879292369, 0.041830237954854965, -0.03999992460012436, 0.04453757032752037, -0.033479440957307816, -0.025662487372756004, 0.041944630444049835, 0.02360338717699051, 0.05597701668739319, -0.042059026658535004, 0.019437523558735847, 0.00004624931898433715, 0.051058053970336914, 0.02749279886484146, -0.06089597940444946, -0.004380354192107916, -0.04957092925906181, -0.04869390279054642, -0.03647276386618614, 0.0001835077564464882, 0.006773104425519705, -0.052621446549892426, -0.026825498789548874, 0.0068350681103765965, 0.015281192027032375, -0.011973286047577858, -0.00292420806363225, -0.03260241821408272, 0.008450889959931374, 0.05975203216075897, -0.003601041855290532, -0.007750223856419325, -0.049037087708711624, -0.0269780233502388, -0.04049563407897949, -0.03618677705526352, 0.034451793879270554, -0.0787033811211586, 0.044385045766830444, 0.09098171442747116, -0.049151480197906494, -0.06356517970561981, 0.041944630444049835, 0.019389858469367027, 0.06714954227209091, 0.014337437227368355, -0.04453757032752037, -0.01158243790268898, -0.027321208268404007, -0.022173456847667694, -0.0037249692250043154, -0.039389822632074356, -0.008822672069072723, 0.0038512798491865396, 0.014899876900017262, 0.033059995621442795, 0.013870326802134514, 0.007249748334288597, -0.041220132261514664, -0.021830273792147636, 0.005147750023752451, 0.006649177521467209, -0.03405141457915306, -0.04549085721373558, 0.02453760989010334, -0.03614864498376846, 0.022383179515600204, -0.017178233712911606, -0.04125826433300972, -0.010524289682507515, 0.024480411782860756, 0.0045829275622963905, 0.011868423782289028, 0.004301707725971937, 0.0013584340922534466, 0.015090534463524818, 0.017359357327222824, 0.007025725673884153, 0.028922729194164276, 0.0009574576979503036, -0.04514767602086067, 0.05067674070596695, -0.010019047185778618, -0.0371209979057312, 0.049875978380441666, 0.024785464629530907, 0.007306945510208607, 0.004806950222700834, 0.027778785675764084, -0.0787033811211586, 0.0494946651160717, 0.021086709573864937, 0.00947567354887724, 0.020705394446849823, 0.01867489330470562, -0.01523352786898613, -0.03742605075240135, 0.027359338477253914, -0.03311719372868538, 0.006720673758536577, -0.0028336457908153534, -0.01841750554740429, -0.004120583180338144, 0.030314529314637184, 0.045948438346385956, -0.02707335352897644, -0.007740690838545561, 0.0037321189884096384, -0.05346033722162247, -0.033059995621442795, 0.009156322106719017, -0.014775949530303478, -0.05014289915561676, -0.02814103476703167, -0.05994269251823425, 0.006739739794284105, -0.005857949145138264, 0.04682546108961105, -0.05174442380666733, -0.013126762583851814, 0.03416580706834793, -0.011296452023088932, 0.030600514262914658, 0.05689217150211334, 0.045109543949365616, 0.04274539276957512, 0.060667190700769424, -0.031992312520742416, -0.020705394446849823, -0.004621059168130159, -0.040266845375299454, 0.08732109516859055, -0.06177300214767456, -0.03900850564241409, -0.05712096020579338, 0.06291694939136505, 0.03281214088201523, -0.010066711343824863, 0.009613900445401669, 0.01417537871748209, -0.01242133043706417, -0.022497575730085373, -0.007297412492334843, 0.062039922922849655, 0.007092455867677927, -0.030314529314637184, 0.058226775377988815, -0.04507141187787056, 0.04583404213190079, 0.014213509857654572, 0.006429921369999647, -0.017569079995155334, -0.07855085283517838, 0.014728285372257233, 0.008655847050249577, -0.0002749637351371348, 0.017521416768431664, 0.04125826433300972, 0.023203007876873016, 0.009818856604397297, -0.05799798667430878, -0.0055528972297906876, -0.0876261442899704, 0.02962816134095192, 0.0068589006550610065, -0.004311240743845701, -0.04758809134364128, 0.02993321418762207, -0.013679669238626957, 0.01958051696419716, -0.00005883568519493565, 0.12011417001485825, -0.023965636268258095, 0.03138221055269241, 0.01853189989924431, -0.0125929219648242, -0.010123908519744873, 0.06352704763412476, 0.001224973937496543, 0.019323129206895828, 0.004551945719867945, 0.019713977351784706, -0.0036677720490843058, 0.0133364861831069, 0.040686290711164474, -0.03035265952348709, -0.07008566707372665, 0.029380308464169502, -0.04160144925117493, 0.034642450511455536, -0.0036224909126758575, 0.006639644503593445, 0.059713903814554214, -0.0019137237686663866, 0.06040026992559433, -0.04545272886753082, -0.055061861872673035, 0.048388849943876266, 0.056015148758888245, 0.04758809134364128, -0.0008639164152555168, -0.04388933628797531, 0.035919856280088425, -0.02981881983578205, 0.018169650807976723, -0.02411816269159317, 0.00910389143973589, -0.015042870305478573, 0.040152452886104584, -0.022878888994455338, 0.008655847050249577, 0.019408924505114555, 0.029056189581751823, -0.004806950222700834, 0.06169673800468445, 0.04064816236495972, 0.012173475697636604, 0.021124841645359993, -0.04411812499165535, -0.054413627833127975, 0.05681591108441353, 0.057387880980968475, -0.05658712238073349, 0.02537650242447853, 0.015395586378872395, -0.038875047117471695, 0.009637732058763504, 0.015624375082552433, 0.005643459502607584, 0.006920864339917898, -0.028217297047376633, 0.08122006058692932, -0.027225878089666367, 0.001726641203276813, -0.023012349382042885, 0.014585291966795921, 0.07367002218961716, 0.0010200171964243054, 0.00424927705898881, 0.04747369512915611, -0.025128647685050964, 0.04812193289399147, -0.024385083466768265, 0.07527154684066772, 0.005652992520481348, -0.006115336436778307, 0.03481404483318329, -0.08022864162921906, -0.019103873521089554, 0.05182068422436714, -0.05616767331957817, 0.008141071535646915, 0.006911331322044134, 0.013937056995928288, 0.033155325800180435, 0.03016200289130211, -0.06489978730678558, 0.026730168610811234, -0.0027716821059584618, -0.03630117326974869, -0.01967584528028965, 0.006425154861062765, 0.006920864339917898, -0.02137269638478756, -0.05239265784621239, 0.032640550285577774, 0.026272591203451157, 0.02146802470088005, -0.05170629173517227, -0.008374626748263836, 0.07652988284826279, -0.00015759027155581862, 0.002060291590169072, 0.01529072504490614, -0.012040015310049057, 0.008736875839531422, 0.03647276386618614, -0.004068152513355017, 0.014442299492657185, 0.011067663319408894, 0.005367006175220013, -0.03776923194527626, 0.04179210588335991, 0.0007870576228015125, 0.036758750677108765, -0.013203025795519352, -0.013155361637473106, 0.010247835889458656, 0.034451793879270554, 0.02148709073662758, -0.0724116861820221, 0.007140120025724173, -0.00910389143973589, -0.009923718869686127, -0.006939929910004139, -0.002001902787014842, 0.00041795679135248065, 0.002638221951201558, 0.022383179515600204, 0.11256413906812668, -0.06402275711297989, 0.0009777150116860867, -0.039618611335754395, -0.034623388200998306, -0.04667293652892113, 0.037616707384586334, -0.03611051291227341, -0.000002853344540199032, -0.029780687764286995, -0.017483284696936607, -0.0342802032828331, 0.09731154143810272, -0.028217297047376633, -0.03471871465444565, -0.025509962812066078, 0.06295508146286011, 0.02200186625123024, -0.012545257806777954, -0.03662528842687607, -0.009990448132157326, 0.0073212445713579655, 0.013384150341153145, -0.06947556138038635, -0.010524289682507515, 0.02526210807263851, -0.02526210807263851, -0.05269771069288254, 0.016739720478653908, 0.005505232606083155, -0.04488075524568558, -0.016005689278244972, 0.010238302871584892, -0.05143937095999718, 0.03744511678814888, -0.024823594838380814, -0.03660622239112854, -0.022364115342497826, 0.02020968683063984, -0.027225878089666367, 0.031077157706022263, 0.05376539006829262, -0.0189990121871233, -0.03239269554615021, -0.007149653043597937, 0.02158241905272007, -0.000844254856929183, -0.03900850564241409, 0.02570061944425106, -0.0011969710467383265, -0.024251623079180717, 0.016663458198308945, 0.030543318018317223, -0.06093411147594452, -0.02783598192036152, 0.01226880494505167, 0.06211618706583977, -0.009694929234683514, 0.04941840097308159, 0.03170632943511009, 0.032754942774772644, 0.00930408202111721, -0.034737780690193176, -0.03647276386618614, -0.040038056671619415, -0.012926572933793068, 0.03344130888581276, 0.017197297886013985, -0.006801703479140997, -0.04625348746776581, 0.012335535138845444, 0.008622481487691402, 0.0486176423728466, 0.0003077329893130809, 0.011763562448322773, 0.013450880534946918, 0.03946608304977417, 0.05487120524048805, -0.06699701398611069, -0.013727333396673203, 0.0379980243742466, 0.006887499243021011, -0.051058053970336914, -0.0033174389973282814, -0.041639577597379684, 0.0023033798206597567, -0.06543362140655518, -0.009718761779367924, -0.004084835294634104, 0.01132505014538765, 0.05933258682489395, 0.05986642837524414, -0.05704469978809357, 0.05155376344919205, -0.026711104437708855, -0.006272628903388977, -0.027454666793346405, -0.02560529112815857, 0.026730168610811234, 0.02137269638478756, 0.012859842739999294, -0.019752107560634613, 0.06127729266881943, 0.02135363034904003, 0.06608185917139053, -0.07496649771928787, -0.03142034262418747, -0.06634878367185593, -0.07885590940713882, -0.03386075794696808, -0.01691131293773651, 0.013098164461553097, 0.05311715602874756, -0.017702540382742882, -0.030848369002342224, -0.017435621470212936, -0.0759960487484932, 0.012716849334537983, 0.07294552773237228, -0.024594806134700775, -0.0799235850572586, 0.01658719591796398, 0.06631065160036087, 0.014661555178463459, 0.00901332963258028, -0.008474722504615784, -0.023241138085722923, 0.06428968161344528, 0.010123908519744873, -0.017702540382742882, -0.036968473345041275, -0.015223994851112366, 0.001612246735021472, -0.00236891838721931, 0.03555760905146599, 0.01958051696419716, -0.002564342226833105, 0.005324108526110649, 0.008203035220503807, 0.01672065444290638, -0.023965636268258095, 0.039389822632074356, -0.038989439606666565, 0.02074352651834488, 0.04758809134364128, 0.03532882034778595, 0.031248750165104866, 0.005090552847832441, 0.004733070265501738, 0.027778785675764084, 0.03435646742582321, -0.01916106976568699, -0.0530790239572525, 0.009327913634479046, 0.04545272886753082, -0.0020900818053632975, 0.056548990309238434, -0.061734870076179504, 0.0007697793189436197, 0.03256428614258766, -0.05795985460281372, 0.009323147125542164, -0.012087680399417877, 0.009437542408704758, 0.020171554759144783, -0.0015514746773988008, -0.02020968683063984, 0.01402285322546959, -0.013231624849140644, -0.0008484254940412939, -0.04972345381975174, -0.06528110057115555, 0.029323110356926918, 0.05967577174305916, 0.019809305667877197, -0.06158234551548958, 0.020667264237999916, -0.033708229660987854, 0.027454666793346405, -0.05239265784621239, 0.03426113724708557, -0.02528117224574089, 0.026101000607013702, 0.004806950222700834, -0.005085786338895559, -0.024709200486540794, 0.011334583163261414, 0.05002850666642189, -0.000033998090657405555, -0.009075293317437172, 0.002743083517998457, 0.030428923666477203, 0.010066711343824863, 0.06181113421916962, -0.04648227617144585, 0.03260241821408272, -0.006801703479140997, 0.04774061590433121, -0.021010447293519974, -0.0378645621240139, -0.056015148758888245, -0.031668197363615036, -0.03172539547085762, 0.009175388142466545, 0.03794082626700401, 0.0344136618077755, -0.06962808966636658, -0.045986566692590714, 0.01152524072676897, 0.007912282831966877, -0.01851283572614193, 0.02209719456732273, 0.019084807485342026, 0.03683501109480858, 0.014871278777718544, -0.024785464629530907, -0.061734870076179504, 0.03286933898925781, 0.054413627833127975, 0.01872255839407444, -0.03149660304188728, 0.011248787865042686, -0.0266729723662138, 0.04061003029346466, -0.03721632808446884, 0.0022855056449770927, 0.0031625297851860523, 0.0023546190932393074, 0.009847455658018589, -0.03109622374176979, -0.004370821174234152, -0.0649760439991951, 0.0694374293088913, -0.018036192283034325, -0.038989439606666565, -0.002795514417812228, -0.0036582390312105417, 0.05734974890947342, -0.024785464629530907, 0.04735930263996124, -0.04118200019001961, -0.01380359660834074, -0.06806469708681107, 0.0021282134111970663, 0.005266910884529352, -0.07542407512664795, 0.01121065579354763, 0.023393664509058, -0.04019058123230934, 0.004065769258886576, 0.01688271388411522, -0.053574733436107635, -0.04495701938867569, -0.023622453212738037, -0.04346989095211029, 0.002640605205669999, -0.02455667406320572, 0.010495690628886223, -0.035290688276290894, 0.042059026658535004, -0.029380308464169502, -0.012764513492584229, -0.007111521437764168, -0.02009529061615467, 0.014394634403288364, 0.009404176846146584, -0.0590275339782238, 0.004201612900942564, -0.05365099757909775, 0.04720677435398102, 0.06062905862927437, 0.049037087708711624, -0.03912290185689926, -0.02728307619690895, -0.013365084305405617, 0.013060033321380615, -0.014165845699608326, -0.020762592554092407, -0.01797899417579174, 0.019151536747813225, -0.024937989190220833, -0.007106754928827286, -0.021944668143987656, -0.0026167731266468763, 0.06993313878774643, -0.02253570593893528, 0.03767390549182892, -0.032831206917762756, -0.009671097621321678, -0.01359387394040823, -0.026844564825296402, 0.0759960487484932, 0.02305048145353794, -0.08594836294651031, -0.029856951907277107, 0.03767390549182892, -0.005824584048241377, 0.048274457454681396, 0.018970413133502007, -0.031591933220624924, 0.0590275339782238, -0.02263103425502777, 0.0503716878592968, 0.0685604065656662, -0.0014537627575919032, -0.005919912829995155, 0.017454685643315315, 0.016310742124915123, -0.020552869886159897, -0.017063839361071587, 0.03323158621788025, -0.011191589757800102, 0.01142991241067648, -0.022039996460080147, -0.0018243531230837107, -0.04423252120614052, -0.010238302871584892, 0.01709243655204773, -0.03542414680123329, -0.005509999115020037, 0.07664427906274796, 0.059828296303749084, 0.005853182636201382, -0.04072442278265953, -0.04049563407897949, -0.0037321189884096384, -0.07054324448108673, -0.04270726069808006, -0.0057387882843613625, 0.02953283302485943, -0.02244037762284279, -0.01020017173141241, -0.028427019715309143, -0.033898890018463135, -0.029037123546004295, 0.026463249698281288, -0.021963734179735184, 0.015614842064678669, 0.014623424038290977, 0.013183959759771824, 0.006663476582616568, -0.047969404608011246, 0.051019925624132156, -0.04297418147325516, 0.041944630444049835, 0.028217297047376633, -0.04190649837255478, -0.0685604065656662, -0.028217297047376633, -0.08312663435935974, 0.03849373012781143, -0.05342220887541771, 0.005929445382207632, 0.003415151033550501, -0.014766416512429714, -0.029323110356926918, -0.0018255447503179312, 0.02497612126171589, -0.019113406538963318, -0.01686364784836769, 0.08434683829545975, 0.024709200486540794, -0.010857939720153809, -0.003083883784711361, 0.04537646472454071, -0.029895082116127014, 0.03872252255678177, -0.004370821174234152, 0.013002835214138031, 0.023660585284233093, -0.001332218642346561, 0.005509999115020037, -0.003920393064618111, -0.0047259205020964146, 0.050829265266656876, -0.017550015822052956, 0.047016117721796036, -0.02295515313744545, 0.0414489209651947, -0.006072438787668943, 0.007006660103797913, -0.0321829728782177, 0.016148682683706284, 0.012373666279017925, -0.03376542776823044, 0.014671088196337223, 0.0052573783323168755, 0.0012666801922023296, 0.019809305667877197, -0.035500410944223404, -0.06745459139347076, 0.024804528802633286, -0.0068589006550610065, 0.06081971526145935, 0.01956145092844963, 0.026463249698281288, 0.08038116246461868, 0.025891276076436043, -0.012049548327922821, -0.020610066130757332, 0.04926587641239166, -0.08808372169733047, 0.05060047656297684, 0.08732109516859055, -0.04274539276957512, -0.06284068524837494, 0.013889392837882042, -0.04362241551280022, 0.00011640528828138486, 0.0076739611104130745, -0.027454666793346405, -0.06101037189364433, -0.10775957256555557, -0.027435602620244026, 0.023031415417790413, 0.003295989939942956, 0.01374639943242073, 0.04518580809235573, -0.005457568448036909, 0.05239265784621239 ]
332
funcsigs
__eq__
null
def __eq__(self, other): return (issubclass(other.__class__, BoundArguments) and self.signature == other.signature and self.arguments == other.arguments)
(self, other)
[ 0.024079112336039543, -0.03263141214847565, 0.013187034986913204, 0.02560310624539852, -0.04909055307507515, -0.014567594043910503, -0.01225470844656229, 0.041775379329919815, 0.02890210784971714, 0.004065479151904583, 0.020708395168185234, -0.051457226276397705, 0.035392530262470245, 0.04887539893388748, -0.03444227576255798, -0.010390056297183037, 0.01772315986454487, 0.02999579720199108, 0.004728865344077349, -0.03311550244688988, -0.027521546930074692, 0.01990157552063465, 0.010739678516983986, 0.030659183859825134, 0.025854118168354034, 0.058664821088314056, 0.01943541131913662, 0.020995264872908592, 0.004439754411578178, 0.08003660291433334, -0.06773707270622253, -0.04751276969909668, 0.05658501759171486, 0.03768748790025711, 0.051385506987571716, -0.023810172453522682, -0.012586401775479317, 0.0343526266515255, -0.029224835336208344, -0.0009379289695061743, -0.0391576923429966, -0.03747233375906944, 0.0192202590405941, 0.030587466433644295, 0.010990689508616924, -0.015957118943333626, -0.03596626967191696, 0.017543865367770195, -0.048445094376802444, 0.0370778888463974, 0.012451930902898312, -0.05870068073272705, 0.04303043335676193, 0.03320515155792236, -0.02547760121524334, 0.05877240002155304, 0.056190572679042816, 0.060314323753118515, -0.05199510604143143, 0.02547760121524334, -0.02314678579568863, 0.03632485494017601, 0.017400430515408516, -0.0879255160689354, -0.02458113431930542, -0.026947807520627975, -0.07243455946445465, -0.0005546891479752958, 0.01806381717324257, 0.04636529088020325, -0.04130921512842178, -0.016934268176555634, -0.020421525463461876, 0.029081400483846664, -0.039839006960392, -0.0007474296144209802, -0.01757076010107994, 0.09430836141109467, 0.015948154032230377, -0.0480506494641304, 0.007897877134382725, -0.039444562047719955, -0.023021280765533447, -0.030802616849541664, -0.09961544722318649, 0.022411683574318886, -0.06809566169977188, 0.035338740795850754, 0.04611428081989288, -0.06117493286728859, -0.023254362866282463, 0.02354123257100582, 0.028256651014089584, 0.004437513183802366, 0.056190572679042816, 0.018162427470088005, -0.03316929191350937, -0.04482336714863777, -0.00985217560082674, 0.005208475049585104, -0.023308150470256805, 0.035804904997348785, 0.03273898735642433, 0.016719115898013115, 0.01322289276868105, 0.025907905772328377, -0.015329591929912567, -0.05522238835692406, -0.051672376692295074, 0.000746309058740735, -0.03413747623562813, 0.05593956261873245, -0.05429006367921829, 0.016226058825850487, -0.017050808295607567, -0.004688524175435305, -0.0018568079685792327, -0.016172271221876144, -0.013294610194861889, 0.02732432447373867, 0.026607150211930275, 0.05651330202817917, 0.042456693947315216, 0.014719993807375431, 0.06350574642419815, 0.03151979297399521, -0.010354197584092617, 0.012586401775479317, -0.03585869446396828, -0.08390934020280838, 0.08061034232378006, -0.026409927755594254, -0.030157161876559258, 0.08613257855176926, 0.04478750750422478, 0.0034513992723077536, 0.02519073151051998, 0.03666551411151886, -0.022967493161559105, 0.04159608483314514, 0.019471270963549614, 0.027037454769015312, 0.04317386820912361, -0.0014948592288419604, -0.05898755043745041, -0.011089300736784935, -0.06307543814182281, -0.001151960575953126, 0.022339966148138046, 0.01486342865973711, -0.016503963619470596, 0.0007440678891725838, 0.06035017967224121, -0.005688085220754147, -0.0748012363910675, -0.025083156302571297, -0.002236685948446393, -0.03666551411151886, -0.014128325507044792, 0.006001848727464676, -0.02149728685617447, -0.02026016265153885, -0.015051686204969883, -0.04220568388700485, -0.015580601990222931, -0.01298084668815136, -0.015840576961636543, -0.026678867638111115, 0.019399553537368774, 0.02388188987970352, 0.006288718432188034, -0.003361752489581704, 0.015356485731899738, 0.007032786030322313, -0.008220605552196503, 0.019345765933394432, 0.006996927782893181, -0.0035925928968936205, -0.01646810583770275, -0.03402990102767944, 0.06400776654481888, -0.06282442808151245, -0.03654000908136368, -0.017543865367770195, 0.06461736559867859, 0.004643701016902924, -0.03338444232940674, -0.0007031665882095695, 0.011071371845901012, -0.021999308839440346, -0.050489041954278946, -0.010300409980118275, 0.021407639607787132, -0.03392232581973076, -0.010856219567358494, 0.005078487563878298, -0.05099106207489967, -0.0012853100197389722, 0.027073314413428307, 0.06483251601457596, -0.020780112594366074, -0.06859768182039261, -0.007077609654515982, -0.02416875958442688, 0.013321504928171635, -0.015706107020378113, -0.00624837726354599, -0.01208437979221344, 0.06917142122983932, -0.05507895350456238, -0.015437167137861252, -0.0789608433842659, 0.012918094173073769, -0.011089300736784935, 0.032021813094615936, 0.04385518282651901, -0.0021929831709712744, -0.06831081211566925, -0.0020551513880491257, 0.025226591154932976, 0.12801553308963776, -0.01846722699701786, 0.011645110324025154, 0.03399404138326645, -0.040197595953941345, 0.022913705557584763, 0.026660937815904617, 0.03465742617845535, 0.0014780504861846566, -0.02485007420182228, 0.05464864894747734, 0.019058896228671074, 0.021407639607787132, -0.007732030935585499, 0.001973348669707775, -0.0029045541305094957, 0.024563204497098923, 0.012622260488569736, -0.046580441296100616, 0.010488667525351048, -0.012371249496936798, 0.018027957528829575, 0.0010438241297379136, 0.037866778671741486, -0.0037270630709826946, -0.10607001185417175, -0.016781868413090706, 0.028202861547470093, 0.010022505186498165, 0.005369839258491993, -0.04292285442352295, -0.034926366060972214, -0.05328601971268654, -0.02465285174548626, 0.0023240915033966303, -0.0023935677018016577, -0.044177912175655365, -0.042600128799676895, 0.045970845967531204, 0.020995264872908592, 0.04181123524904251, 0.05762492120265961, 0.013079458847641945, 0.017400430515408516, -0.02567482367157936, 0.024473559111356735, -0.012245743535459042, 0.0016024353681132197, -0.014370371587574482, -0.0065262820571660995, 0.07587699592113495, -0.03564354032278061, 0.013464939780533314, 0.07752649486064911, -0.05328601971268654, 0.024563204497098923, 0.03829708322882652, -0.030659183859825134, -0.040269311517477036, -0.027485689148306847, 0.04758448526263237, 0.02746775932610035, 0.003922044765204191, -0.0735103189945221, -0.02841801382601261, 0.016441211104393005, -0.011403064243495464, -0.019955363124608994, 0.02630235254764557, -0.03508773073554039, 0.034711215645074844, -0.014854463748633862, 0.0721118301153183, -0.02972685731947422, -0.008664356544613838, 0.04722589999437332, -0.021676579490303993, -0.0243659820407629, 0.017068738117814064, -0.006656270008534193, 0.001086406409740448, 0.018556874245405197, 0.0023375386372208595, 0.010354197584092617, 0.021873803809285164, -0.0195788461714983, 0.035464249551296234, 0.05608299747109413, 0.0157867893576622, 0.0014702064217999578, 0.027431899681687355, 0.04729761555790901, 0.024419769644737244, 0.019955363124608994, 0.05705118179321289, 0.030712971463799477, 0.040125876665115356, -0.05271228030323982, -0.012227814644575119, 0.0652628242969513, -0.017400430515408516, 0.05554511770606041, -0.00145451829303056, -0.0029516187496483326, 0.003112982725724578, -0.005123310722410679, -0.025316238403320312, 0.05651330202817917, 0.014881357550621033, 0.026876090094447136, 0.012953952886164188, 0.021820014342665672, 0.08735177665948868, 0.035464249551296234, -0.003068159567192197, -0.014558629132807255, 0.01811760477721691, 0.0528557151556015, 0.019686423242092133, -0.049951158463954926, 0.02581825852394104, -0.0004053713346365839, 0.02183794416487217, -0.0363786444067955, 0.013429081067442894, 0.020636677742004395, -0.062178973108530045, 0.023989465087652206, 0.05414662882685661, -0.026105128228664398, -0.08061034232378006, -0.003000924363732338, 0.015159262344241142, -0.07917599380016327, 0.024079112336039543, 0.007978559471666813, 0.010596243664622307, 0.020027080550789833, -0.03797435760498047, -0.007920288480818272, 0.12744179368019104, -0.020995264872908592, -0.022985422983765602, -0.027933921664953232, 0.0001680876302998513, 0.03508773073554039, 0.01469310000538826, -0.04887539893388748, -0.05117035657167435, -0.011851298622786999, -0.01551784947514534, -0.021640721708536148, -0.025011438876390457, -0.01723906770348549, -0.04704660549759865, -0.02239375375211239, -0.060529474169015884, 0.01813553459942341, -0.011967838741838932, -0.01701495051383972, 0.06221483275294304, 0.0019867958035320044, -0.009215684607625008, 0.008117511868476868, -0.03557182475924492, -0.010542456060647964, -0.021317992359399796, -0.0062663066200912, 0.05511481314897537, 0.0652269646525383, -0.016181236132979393, -0.07745477557182312, -0.017400430515408516, 0.037795063108205795, -0.0645815059542656, -0.03241625800728798, -0.021228346973657608, 0.022877845913171768, -0.09445179998874664, -0.031752873212099075, -0.003283311612904072, 0.005002287682145834, -0.013742844574153423, -0.02698366716504097, 0.029224835336208344, 0.0037315452937036753, 0.04202638939023018, 0.043640028685331345, 0.008305770345032215, 0.02162279188632965, -0.03397611156105995, -0.05672845244407654, -0.017041843384504318, 0.013742844574153423, -0.018664449453353882, -0.0069521041586995125, 0.030318524688482285, -0.048588529229164124, 0.072757288813591, 0.005181581247597933, 0.02395360730588436, 0.0487319640815258, -0.00913500227034092, -0.015957118943333626, 0.018521014600992203, 0.030444031581282616, -0.03783092275261879, 0.03693445399403572, 0.028310438618063927, -0.030928123742341995, -0.06293200701475143, -0.021873803809285164, 0.0121919559314847, 0.028346296399831772, 0.0005866258288733661, 0.002480973256751895, -0.0022882327903062105, -0.03212938830256462, 0.05931027978658676, 0.05780421569943428, -0.03349202126264572, -0.032523833215236664, -0.015320627018809319, -0.0035163930151611567, -0.06479665637016296, -0.060314323753118515, 0.029135188087821007, 0.016629468649625778, 0.029493775218725204, 0.005616367794573307, 0.004007209092378616, 0.03528495505452156, -0.022608906030654907, -0.0735103189945221, -0.0439627580344677, -0.04173951968550682, -0.030641254037618637, -0.027431899681687355, -0.010650032199919224, 0.014011784456670284, -0.021676579490303993, -0.019238188862800598, -0.03612763434648514, -0.02596169337630272, -0.03496222570538521, 0.04421376809477806, 0.02547760121524334, -0.008861579932272434, -0.007185185793787241, 0.07802851498126984, 0.03955213725566864, -0.05281985551118851, -0.0035522517282515764, 0.010551420971751213, -0.0377592034637928, 0.06339816749095917, 0.024760426953434944, 0.03279277682304382, -0.06339816749095917, 0.014746887609362602, -0.039839006960392, 0.007579631172120571, 0.016521893441677094, 0.01503375731408596, 0.0233440101146698, -0.028866248205304146, -0.03103569895029068, -0.004182020202279091, -0.03402990102767944, 0.015374414622783661, -0.003095053369179368, -0.04550468176603317, -0.06336230784654617, 0.045074377208948135, 0.06501181423664093, -0.01675497367978096, 0.010372127406299114, 0.022770270705223083, -0.022752340883016586, -0.021228346973657608, -0.02671472728252411, 0.05801936611533165, -0.0034200227819383144, 0.012102308683097363, 0.03887082263827324, -0.0370778888463974, 0.013572515919804573, -0.02450941689312458, -0.04769206419587135, 0.06425877660512924, 0.01832379214465618, -0.005302604287862778, -0.004805064760148525, -0.01434347778558731, 0.03420919179916382, 0.058808255940675735, -0.014352441765367985, -0.044393062591552734, -0.04840923473238945, -0.05683602765202522, 0.05403904989361763, 0.03334858641028404, 0.014352441765367985, -0.05292743071913719, -0.023595020174980164, -0.018305862322449684, -0.004872300196439028, -0.010676926001906395, 0.040950626134872437, -0.0735103189945221, 0.02397153712809086, -0.0028664544224739075, -0.01298084668815136, 0.021586934104561806, -0.03311550244688988, 0.06949415057897568, -0.03822536766529083, 0.003980314824730158, 0.019686423242092133, 0.030533676967024803, -0.0016506204847246408, 0.059346139430999756, -0.021784156560897827, 0.022196531295776367, -0.05529410392045975, 0.0535728894174099, 0.004547330550849438, -0.020995264872908592, 0.0024675263557583094, 0.023021280765533447, -0.03047988936305046, -0.006033224985003471, 0.06745020300149918, 0.008960191160440445, -0.0398031510412693, -0.005065040662884712, -0.001434347708709538, 0.028812460601329803, 0.044321343302726746, 0.044464778155088425, 0.059095125645399094, 0.00827887561172247, 0.07171738892793655, -0.04009002074599266, -0.044034477323293686, -0.041775379329919815, 0.0254058837890625, 0.01174372248351574, 0.02443769946694374, 0.033671312034130096, -0.013778703287243843, 0.0029381716158241034, -0.06293200701475143, -0.02870488353073597, 0.05005873739719391, -0.0171583853662014, -0.01294498797506094, 0.04467993229627609, -0.060242604464292526, -0.06286028772592545, 0.010192833840847015, 0.004648183006793261, -0.031197063624858856, -0.029493775218725204, -0.0078933946788311, -0.0012516925344243646, -0.015024792402982712, 0.02397153712809086, -0.01238917838782072, -0.011340311728417873, -0.048086509108543396, 0.04543296620249748, 0.009206719696521759, -0.07810023427009583, 0.017382502555847168, -0.016629468649625778, 0.027862204238772392, -0.029224835336208344, -0.018350686877965927, -0.017068738117814064, 0.01647706888616085, -0.026212705299258232, -0.002651302143931389, -0.03528495505452156, -0.004166332073509693, 0.002219877205789089, -0.042528409510850906, 0.008547816425561905, -0.008198194205760956, 0.00985217560082674, 0.05855724588036537, -0.0002720218035392463, 0.0501304529607296, -0.06088806316256523, -0.0060063311830163, -0.009112590923905373, -0.033545807003974915, 0.07559012621641159, -0.005141240078955889, 0.08749521523714066, -0.005392251070588827, 0.005472932942211628, -0.030605394393205643, 0.005096416920423508, -0.05253298580646515, -0.03818950802087784, 0.020278090611100197, 0.0010331786470487714, 0.02465285174548626, -0.017597652971744537, 0.011376170441508293, -0.0034334699157625437, 0.04077133536338806, -0.04009002074599266, 0.0074182674288749695, -0.09287401288747787, -0.011447887867689133, 0.011689933948218822, 0.00200024270452559, 0.07243455946445465, 0.014567594043910503, -0.058342095464468, -0.06734262406826019, 0.0556168332695961, -0.06264513731002808, -0.011994732543826103, 0.015526814386248589, -0.043353158980607986, 0.035464249551296234, -0.0501304529607296, 0.0073599969036877155, 0.06788050383329391, -0.03453192114830017, 0.005002287682145834, -0.025495531037449837, 0.003341581905260682, 0.0024876969400793314, 0.03214731812477112, 0.02305714040994644, -0.007651348598301411, 0.0693865716457367, 0.0025459672324359417, 0.032111458480358124, -0.019274048507213593, 0.021443499252200127, 0.0029673068784177303, 0.018628591671586037, -0.015625426545739174, 0.016441211104393005, 0.04539710655808449, -0.03282863274216652, -0.01619916409254074, -0.047620344907045364, -0.032111458480358124, -0.036073844879865646, -0.05816280096769333, -0.000793373619671911, 0.008234052918851376, -0.015903331339359283, -0.010981724597513676, -0.05127793177962303, -0.0006191227585077286, -0.03750819340348244, 0.0005028621526435018, 0.007037268485873938, 0.04389104247093201, -0.013204963877797127, 0.02232203632593155, 0.011438922956585884, -0.041990529745817184, 0.028041498735547066, -0.06888455152511597, 0.05102692171931267, 0.024473559111356735, 0.03544631972908974, 0.018359651789069176, -0.06139008328318596, -0.03186044842004776, -0.00796511210501194, 0.0035365635994821787, 0.015607496723532677, -0.028812460601329803, 0.01654878631234169, -0.0048678177408874035, 0.008045794442296028, -0.019076824188232422, -0.05231783539056778, 0.03508773073554039, 0.08269014954566956, 0.004166332073509693, -0.030103372409939766, 0.00007150727469706908, 0.03589455038309097, -0.06698404252529144, 0.045827411115169525, 0.006208036094903946, 0.006575588136911392, 0.029834432527422905, -0.013805597089231014, 0.010049398988485336, -0.06895627081394196, -0.014809640124440193, 0.06095977872610092, -0.04722589999437332, 0.011008619330823421, 0.04525367170572281, 0.072757288813591, -0.040197595953941345, 0.003915321081876755, -0.011645110324025154, 0.0008796585607342422, 0.05142136663198471, -0.010390056297183037, 0.02712710201740265, -0.030533676967024803, 0.0161274466663599, -0.05680017173290253, -0.024401841685175896, -0.0071538095362484455, 0.06927899271249771, 0.04697488993406296, 0.018252074718475342, 0.06501181423664093, -0.033258937299251556, 0.03858395293354988, 0.005540167912840843, -0.038906682282686234, 0.014666205272078514, 0.002321850508451462, -0.044177912175655365, 0.025011438876390457, 0.04629357159137726, -0.007440678775310516, -0.031412214040756226, 0.017203208059072495, 0.02587204799056053, -0.017319748178124428, -0.001813105191104114, 0.0074182674288749695, -0.036898594349622726, -0.05281985551118851, 0.01956091821193695, 0.01743629015982151, 0.0120126623660326, -0.025119014084339142, 0.005795661360025406, -0.008130958303809166, 0.050847627222537994 ]
333
funcsigs
__hash__
null
def __hash__(self): msg = "unhashable type: '{0}'".format(self.__class__.__name__) raise TypeError(msg)
(self)
[ 0.016549335792660713, -0.022529490292072296, 0.01724489964544773, 0.04373571276664734, -0.018186455592513084, -0.049402013421058655, -0.02129104733467102, -0.017126144841313362, -0.008431593887507915, -0.0010693237418308854, 0.013521087355911732, -0.026414470747113228, 0.013851904310286045, 0.006561205256730318, -0.04132668673992157, -0.00377258681692183, -0.04448217153549194, 0.04899485409259796, 0.0008106078021228313, -0.035626452416181564, -0.03979983553290367, 0.014208168722689152, 0.031147697940468788, 0.04621259868144989, 0.029926219955086708, 0.04027485474944115, 0.05021633207798004, 0.008283150382339954, 0.05160745978355408, 0.01854272000491619, -0.08747142553329468, 0.00762151600793004, 0.022800929844379425, 0.02621089108288288, 0.02144373208284378, -0.0522860623896122, -0.02694038487970829, 0.05170924961566925, -0.0061498042196035385, 0.01823735050857067, -0.002930699847638607, 0.020018672570586205, -0.028026143088936806, -0.01386886928230524, 0.03647470101714134, -0.002945544198155403, -0.020748168230056763, 0.05021633207798004, -0.06935282796621323, -0.03644077107310295, -0.047841235995292664, -0.0284333024173975, 0.00845280010253191, 0.03603361174464226, -0.016625678166747093, 0.05445757880806923, 0.022258050739765167, -0.019017739221453667, -0.02663501538336277, 0.04702691733837128, -0.026007309556007385, 0.04889306426048279, 0.06680808216333389, -0.06178644672036171, 0.010628558695316315, -0.054050419479608536, -0.052828941494226456, 0.009737896732985973, -0.022342875599861145, 0.03328528627753258, 0.01832217536866665, -0.013996106572449207, -0.003068540245294571, 0.05438971891999245, 0.04712870717048645, -0.0013402332551777363, -0.004987703170627356, 0.024531356990337372, 0.03878193721175194, 0.01823735050857067, 0.029892290011048317, -0.02660108543932438, -0.024514392018318176, 0.0026995521038770676, -0.058325592428445816, 0.02782256342470646, 0.014157273806631565, -0.01562474388629198, -0.030367309227585793, -0.04553399980068207, -0.02644840069115162, 0.0012331417528912425, -0.01793198101222515, -0.006497586145997047, 0.019340073689818382, -0.01140894740819931, -0.0014727720990777016, -0.06531516462564468, 0.04132668673992157, -0.01671898551285267, 0.06185430660843849, 0.0034078399185091257, 0.02770380862057209, -0.011536184698343277, -0.004635680001229048, 0.003605057718232274, 0.01969633810222149, -0.055237967520952225, -0.07451017946004868, 0.038069408386945724, -0.010212916880846024, 0.06935282796621323, -0.04736621677875519, -0.006128598004579544, 0.011519219726324081, -0.011587079614400864, -0.0009362546843476593, -0.029451200738549232, 0.02571890503168106, 0.020544588565826416, 0.027907388284802437, 0.05377897992730141, -0.06416154652833939, 0.04058022424578667, 0.050623491406440735, 0.025820694863796234, -0.00474171107634902, -0.05330396071076393, 0.005250660702586174, -0.01678684540092945, 0.010755795985460281, 0.02850116230547428, -0.054050419479608536, 0.0640936866402626, -0.0005513617652468383, 0.016964977607131004, 0.02300450950860977, 0.0057680923491716385, -0.00424548564478755, 0.004099162761121988, 0.027720773592591286, 0.008664862252771854, 0.07837819308042526, -0.0006966243963688612, 0.027381474152207375, 0.003704726928845048, -0.05384683981537819, 0.024633146822452545, 0.01041649654507637, 0.015930114313960075, 0.023784898221492767, 0.011663421988487244, 0.03599968180060387, 0.01371618453413248, -0.053711120039224625, 0.0037556218449026346, -0.020290112122893333, -0.03369244560599327, -0.0373908095061779, -0.039935555309057236, -0.0009367848397232592, -0.010068713687360287, 0.0396980457007885, -0.05622193589806557, -0.025464430451393127, 0.004495718982070684, 0.032114703208208084, -0.0051149409264326096, -0.03391299024224281, -0.009907546453177929, -0.0686742290854454, -0.050894930958747864, -0.05231999233365059, 0.026991279795765877, -0.013894316740334034, 0.020883888006210327, -0.01171431690454483, 0.04034271463751793, 0.0076172747649252415, -0.027160929515957832, 0.014047001488506794, -0.05964886024594307, -0.05530582740902901, 0.000891721632797271, 0.020171357318758965, 0.01267283782362938, 0.004249726887792349, 0.012070581316947937, 0.04231065511703491, -0.00026587300817482173, -0.0820426344871521, -0.06453477591276169, -0.03026551939547062, -0.017456961795687675, 0.04950380325317383, 0.008283150382339954, -0.036271121352910995, 0.008787858299911022, -0.06036138907074928, 0.09995764493942261, -0.019323108717799187, -0.010518286377191544, -0.017185522243380547, -0.015480541624128819, -0.014505055733025074, -0.039324816316366196, 0.022953614592552185, -0.022427700459957123, 0.08482488989830017, -0.04366785287857056, -0.0024005442392081022, -0.06158286705613136, -0.020934782922267914, 0.054661158472299576, 0.04319283366203308, -0.08577492833137512, -0.004444824066013098, -0.06626520305871964, 0.033251356333494186, 0.05411827936768532, 0.08496060967445374, 0.0041288514621555805, -0.023411668837070465, -0.011629492044448853, 0.00022173755860421807, -0.003556283423677087, 0.00022027963132131845, -0.01656630076467991, -0.024751901626586914, -0.0366443507373333, 0.04529649019241333, -0.002462042262777686, 0.007252527866512537, 0.01740606687963009, 0.00791840348392725, 0.025549255311489105, 0.012579530477523804, -0.008134706877171993, -0.029943184927105904, 0.03448979929089546, -0.0038065167609602213, 0.0015289685688912868, 0.03973197564482689, 0.04560185968875885, 0.01816949062049389, -0.04862162470817566, 0.007850543595850468, 0.09853258728981018, -0.03874800726771355, -0.032487932592630386, -0.01152770221233368, -0.02904404141008854, -0.03725508973002434, -0.031147697940468788, 0.05293073132634163, -0.023632213473320007, -0.0032678788993507624, -0.054966527968645096, 0.047603726387023926, -0.007265251595526934, -0.013970659114420414, -0.005276108160614967, 0.01793198101222515, 0.025125131011009216, -0.036881860345602036, -0.04227672517299652, -0.036576490849256516, 0.1064722016453743, -0.053100381046533585, 0.06670629233121872, 0.06575625389814377, -0.020357973873615265, 0.035355012863874435, 0.05320217087864876, -0.03691579028964043, 0.010713383555412292, 0.018118595704436302, 0.04855376482009888, -0.0010306223994120955, 0.004309104289859533, 0.010484356433153152, -0.0010751554509624839, 0.03874800726771355, -0.053371820598840714, -0.0606667585670948, 0.034710343927145004, 0.0030049216002225876, -0.031130732968449593, -0.030961083248257637, -0.0053863804787397385, 0.02739843912422657, -0.009610659442842007, -0.025922484695911407, -0.0033208944369107485, 0.02107050269842148, 0.03338707610964775, -0.01531937438994646, 0.008855718187987804, 0.06762240082025528, 0.02022225223481655, -0.04010520502924919, 0.03238614276051521, -0.008011710830032825, -0.041157037019729614, -0.019967777654528618, -0.07240652292966843, 0.022868789732456207, 0.02446349710226059, 0.0010878791799768806, 0.03201291337609291, 0.02224108576774597, 0.08251765370368958, -0.012621942907571793, 0.05160745978355408, 0.046925127506256104, 0.02773773856461048, 0.03353976085782051, -0.037764038890600204, -0.01923828385770321, 0.11441180855035782, -0.046653687953948975, 0.0072355628944933414, 0.014471125788986683, -0.03650863096117973, 0.025549255311489105, -0.05438971891999245, -0.011281710118055344, -0.01209602877497673, 0.015378751792013645, 0.021884821355342865, -0.020442798733711243, -0.02434474229812622, 0.08360341191291809, -0.009576729498803616, -0.0660276934504509, 0.0020898731891065836, 0.05747734382748604, 0.010857585817575455, -0.029586920514702797, -0.02205447107553482, 0.004504201468080282, -0.02712699957191944, 0.040206994861364365, -0.019102564081549644, -0.029977114871144295, -0.004546613898128271, -0.050589561462402344, 0.004542372655123472, 0.02079906314611435, 0.013495639897882938, -0.010696418583393097, 0.018423965200781822, 0.011476807296276093, -0.034438904374837875, 0.04434645175933838, -0.04173384606838226, -0.006785991135984659, -0.010984823107719421, -0.06626520305871964, 0.02018832229077816, 0.0717279240489006, -0.04397322237491608, -0.018729334697127342, -0.013063032180070877, -0.0404445044696331, 0.02266521006822586, -0.01908559910953045, -0.04315890371799469, 0.02312326431274414, -0.05530582740902901, -0.0477055162191391, -0.00435999920591712, -0.09534317255020142, -0.03661042079329491, 0.023309879004955292, 0.017185522243380547, 0.01201968640089035, 0.06880994886159897, -0.08272123336791992, -0.03542287275195122, 0.05238785222172737, -0.002983715385198593, -0.040206994861364365, -0.00489439582452178, -0.03197898343205452, 0.03284419700503349, 0.025786764919757843, 0.01194334402680397, 0.07322084158658981, 0.08638566732406616, -0.0373908095061779, -0.043599992990493774, 0.0450250506401062, -0.013130892999470234, -0.01664264313876629, 0.042107075452804565, -0.009958441369235516, -0.021766066551208496, -0.10477570444345474, -0.034778203815221786, 0.015217584557831287, -0.006998053286224604, -0.047264426946640015, 0.019950812682509422, 0.013673772104084492, 0.028382407501339912, 0.002582917921245098, -0.024107232689857483, -0.010823655873537064, -0.05347361043095589, -0.001848122221417725, 0.008274667896330357, -0.009033850394189358, -0.04794302582740784, 0.01285945251584053, -0.04926629364490509, 0.01988295279443264, -0.0850963294506073, 0.02086692303419113, 0.014895250089466572, 0.0261430311948061, -0.011705834418535233, -0.01263042539358139, 0.019323108717799187, -0.02217322587966919, 0.032454002648591995, -0.054932598024606705, 0.04444824159145355, -0.0118330717086792, 0.003384513081982732, 0.01832217536866665, 0.0259564146399498, 0.057714853435754776, -0.00217999960295856, -0.010484356433153152, -0.06857243925333023, -0.02911190129816532, -0.05255750194191933, 0.0132581302896142, 0.08217835426330566, 0.040851667523384094, -0.004924084525555372, 0.012579530477523804, 0.04763765633106232, 0.06558660417795181, -0.007443383801728487, 0.0013964297249913216, 0.03335314616560936, 0.012460775673389435, 0.031656648963689804, 0.046959057450294495, 0.014683187939226627, 0.010357119143009186, -0.03861228749155998, -0.010026301257312298, -0.01808466576039791, -0.08726784586906433, -0.020782098174095154, 0.03186022862792015, 0.0007252527866512537, -0.026058204472064972, 0.06558660417795181, -0.03521929308772087, -0.0006780689582228661, -0.020018672570586205, 0.009050815366208553, -0.026804665103554726, -0.009008402936160564, 0.0843498706817627, 0.03864621743559837, 0.0313003845512867, -0.02705913968384266, -0.02110443264245987, -0.028755636885762215, -0.08285695314407349, 0.052116408944129944, 0.023174159228801727, 0.004385446663945913, -0.013648324646055698, -0.03949446603655815, 0.048519834876060486, 0.009763344191014767, 0.04611080884933472, -0.012655872851610184, 0.01984902285039425, -0.036542560905218124, -0.02632964588701725, -0.010925445705652237, 0.0008927819435484707, 0.06277041882276535, -0.04203921556472778, -0.02587158977985382, -0.048451974987983704, 0.09222161769866943, 0.019255248829722404, -0.004885913338512182, -0.009763344191014767, 0.027042174711823463, -0.05052170157432556, -0.005831710994243622, 0.014886767603456974, 0.018101630732417107, 0.02621089108288288, -0.0016795328119769692, 0.037764038890600204, -0.03430318459868431, 0.07003142684698105, 0.024904586374759674, 0.030435169115662575, -0.023632213473320007, -0.021240152418613434, -0.014810425229370594, 0.08068542927503586, 0.01551447156816721, 0.04794302582740784, -0.021002642810344696, -0.023462563753128052, -0.04675547778606415, -0.01743999682366848, 0.03297991678118706, 0.003174571320414543, 0.015964044257998466, -0.0014664102345705032, -0.04628045856952667, -0.010034783743321896, -0.010433461517095566, 0.010959375649690628, -0.05133602023124695, 0.049096643924713135, 0.010713383555412292, -0.016812292858958244, -0.020425833761692047, -0.027228789404034615, -0.015658674761652946, -0.026872524991631508, 0.043023183941841125, -0.03552466258406639, 0.027347544208168983, 0.02568497508764267, -0.016286378726363182, -0.02244466543197632, -0.004063112195581198, 0.04417680203914642, -0.03430318459868431, 0.01117992028594017, 0.03194505348801613, -0.01823735050857067, 0.02156248688697815, -0.07756387442350388, -0.014360853470861912, 0.0028034625574946404, -0.009457974694669247, 0.05846131220459938, -0.023530423641204834, 0.009958441369235516, -0.02064637839794159, 0.04200528562068939, 0.02101960778236389, 0.06663843244314194, 0.05198068916797638, 0.03384513035416603, 0.018898984417319298, 0.04000341519713402, -0.06351687759160995, -0.03437104448676109, -0.03674614056944847, -0.013885834254324436, -0.0032085012644529343, -0.0005757489125244319, 0.008189843036234379, -0.030061939731240273, 0.04407501220703125, 0.005055563058704138, -0.001840700046159327, 0.03559252247214317, 0.01190941408276558, -0.06626520305871964, 0.03301384672522545, -0.03908730670809746, -0.10307919979095459, -0.011841554194688797, 0.011324122548103333, -0.019899917766451836, 0.002252100734040141, 0.010552216321229935, -0.019815092906355858, -0.034286219626665115, -0.024904586374759674, -0.058630961924791336, 0.03576217219233513, -0.05445757880806923, 0.0017664782935753465, 0.0013359920121729374, -0.01820342056453228, 0.01984902285039425, 0.02397151291370392, 0.0629739984869957, -0.050352051854133606, -0.031690578907728195, 0.007948092184960842, 0.021460697054862976, 0.003982528578490019, 0.020171357318758965, 0.0033505831379443407, 0.05601835623383522, 0.0040906802751123905, -0.009593694470822811, 0.04370178282260895, -0.007511243689805269, -0.04563578963279724, 0.013249647803604603, 0.02926458604633808, 0.041462406516075134, -0.05601835623383522, -0.019509723410010338, -0.043294623494148254, -0.009703966788947582, 0.019679373130202293, -0.014564433135092258, 0.06500979512929916, -0.04383750259876251, 0.023021474480628967, 0.00622190535068512, 0.03179236873984337, -0.030061939731240273, -0.014640775509178638, -0.017830191180109978, 0.057104114443063736, 0.04166598618030548, -0.051878899335861206, -0.03494785353541374, 0.012596495449543, 0.028602952137589455, -0.06120963767170906, 0.003842567326501012, 0.0005990757490508258, 0.03925695642828941, 0.0255662202835083, 0.013750114478170872, 0.10613290220499039, -0.015709569677710533, -0.05136995017528534, -0.038985516875982285, 0.047569796442985535, -0.05930956080555916, 0.0000306164838548284, 0.00894902553409338, -0.03392995521426201, 0.021240152418613434, -0.040478434413671494, 0.007757235784083605, 0.01049283891916275, 0.00845280010253191, -0.04343034327030182, 0.0019912642892450094, 0.03235221281647682, -0.016116729006171227, -0.022682175040245056, -0.018729334697127342, -0.02648233063519001, 0.010670971125364304, 0.015302409417927265, -0.05055563151836395, -0.01805073581635952, 0.06887780874967575, 0.010102643631398678, 0.023937582969665527, -0.020544588565826416, -0.016150658950209618, 0.0037704661954194307, -0.04370178282260895, -0.008435835130512714, 0.00561116635799408, -0.02965478040277958, -0.06287220865488052, -0.02926458604633808, -0.021952681243419647, 0.031113767996430397, -0.03465944901108742, -0.03179236873984337, -0.017295794561505318, 0.010306224226951599, -0.08489274978637695, 0.015531436540186405, -0.026312680914998055, 0.0805497094988823, -0.03048606403172016, -0.007820854894816875, -0.013631359674036503, -0.07003142684698105, 0.005721438676118851, -0.03418442979454994, -0.02492155134677887, 0.016735950484871864, -0.01759268157184124, -0.019628478214144707, -0.03735687956213951, 0.006853851024061441, 0.02193571627140045, 0.010789725929498672, -0.002739843912422657, 0.03793368861079216, 0.0473322868347168, 0.04987703263759613, -0.001135593163780868, -0.008266185410320759, -0.07552807778120041, 0.05601835623383522, 0.05164138972759247, -0.02968871034681797, -0.027907388284802437, -0.011315640062093735, 0.012850970029830933, 0.00019867578521370888, 0.011044200509786606, -0.03145306929945946, 0.04102131724357605, 0.04285353422164917, -0.004423617850989103, 0.004328189883381128, -0.006014084443449974, -0.020239217206835747, 0.03681400045752525, 0.015735017135739326, 0.027347544208168983, 0.019441863521933556, 0.05713804438710213, -0.06880994886159897, -0.012621942907571793, 0.03284419700503349, 0.08475703001022339, 0.03313260152935982, -0.024548321962356567, 0.045126840472221375, 0.05235392227768898, -0.011748246848583221, -0.039019446820020676, 0.022342875599861145, -0.0015120035968720913, 0.07932823151350021, 0.011213850229978561, 0.01482739020138979, -0.022427700459957123, -0.010178986936807632, 0.0381711982190609, -0.01524303201586008, -0.008206808008253574, 0.08401057124137878, -0.008563072420656681, -0.03647470101714134, -0.010899998247623444, 0.0144032659009099, -0.018118595704436302, 0.02636357583105564, 0.05445757880806923, -0.020324042066931725, 0.01973026804625988, 0.00986513402312994, 0.016702020540833473, -0.01091696321964264, -0.014615328051149845, -0.04587329924106598, -0.018407000228762627, -0.00034884235356003046, -0.039562325924634933, 0.0051955245435237885, 0.027415404096245766, 0.002907373011112213 ]
334
funcsigs
__init__
null
def __init__(self, signature, arguments): self.arguments = arguments self._signature = signature
(self, signature, arguments)
[ -0.026450391858816147, -0.02891956828534603, 0.0366290844976902, 0.007602933328598738, -0.019486958160996437, -0.012372530065476894, -0.033538173884153366, 0.0837743803858757, 0.03373357653617859, 0.015028228051960468, -0.00002756521280389279, 0.06611710041761398, -0.044942572712898254, 0.013429480604827404, -0.06618814915418625, -0.00040523812640458345, 0.05744833126664162, 0.03334277123212814, -0.03504810109734535, -0.010116519406437874, -0.016902314499020576, 0.03444413095712662, -0.03465729579329491, 0.054890334606170654, 0.007869390770792961, 0.05272314324975014, 0.028688637539744377, 0.007087781094014645, 0.03090912103652954, -0.018634291365742683, -0.038547582924366, 0.0037059858441352844, 0.027196474373340607, 0.04863745719194412, 0.017977029085159302, -0.04458729550242424, 0.0012556830188259482, 0.00404349947348237, -0.07318711280822754, 0.011262289248406887, -0.012852154672145844, 0.015632199123501778, 0.006124091800302267, -0.0096368957310915, 0.017932619899511337, 0.05670224875211716, 0.007101104129105806, 0.0435214638710022, -0.0540376715362072, 0.0016220627585425973, 0.003146424191072583, 0.018492180854082108, 0.028582055121660233, -0.04309513047337532, -0.05457058548927307, 0.10168035328388214, 0.09343791753053665, 0.06483809649944305, -0.033662520349025726, 0.07311605662107468, 0.008415630087256432, 0.07176600396633148, 0.0496322326362133, -0.04043055325746536, -0.008637677878141403, 0.016547037288546562, -0.021991662681102753, -0.009548076428472996, 0.01784379966557026, 0.04565312713384628, 0.02652144618332386, -0.018332306295633316, -0.023963451385498047, 0.02033962309360504, 0.061924826353788376, -0.037979137152433395, -0.08903247863054276, 0.047997958958148956, -0.001482172287069261, -0.0026312721893191338, 0.009010719135403633, -0.0033151807729154825, -0.04401885345578194, -0.001585424761287868, 0.013012029230594635, 0.030642664059996605, -0.04050160571932793, -0.010436269454658031, -0.005426859948784113, 0.03961341455578804, -0.10082768648862839, 0.03755280748009682, -0.017435232177376747, 0.013713701628148556, 0.018385598435997963, -0.023359479382634163, -0.02303973026573658, -0.05908260866999626, 0.029399191960692406, 0.015303567983210087, -0.031921662390232086, 0.019753415137529373, -0.024887172505259514, -0.013278487138450146, -0.02593524008989334, -0.03140651062130928, -0.01784379966557026, -0.05627591535449028, 0.006097445730119944, 0.017612870782613754, 0.037765972316265106, 0.03883180394768715, -0.018882986158132553, 0.05993527173995972, -0.028688637539744377, -0.02499375492334366, 0.006430518347769976, -0.04764268174767494, 0.0032707711216062307, 0.021156759932637215, 0.022577868774533272, 0.0015954169211909175, -0.040181856602430344, 0.07006067782640457, 0.0026135083753615618, 0.007785012945532799, -0.0017242049798369408, 0.01189290639013052, 0.019042860716581345, -0.06917247921228409, 0.06128532811999321, -0.033538173884153366, -0.018509944900870323, 0.023466061800718307, 0.002953242277726531, -0.04863745719194412, 0.0652289018034935, -0.017053307965397835, -0.05837205424904823, 0.054712697863578796, 0.00036610211827792227, 0.02163638547062874, 0.05357581004500389, -0.019629068672657013, -0.03659355640411377, -0.0013511638389900327, -0.00015571135736536235, -0.04565312713384628, 0.007474145386368036, 0.0015554482815787196, 0.0062173521146178246, -0.0035416700411587954, 0.05858521908521652, 0.017985910177230835, -0.007118868175894022, -0.04231351986527443, 0.022862091660499573, -0.05183495208621025, -0.013038675300776958, 0.030855828896164894, -0.009645777754485607, -0.049703288823366165, -0.01750628650188446, -0.05272314324975014, 0.018954042345285416, -0.016706913709640503, 0.02506481111049652, -0.03726858273148537, -0.031051231548190117, 0.012816626578569412, -0.02337724342942238, -0.01549897063523531, -0.035403378307819366, 0.03174402192234993, -0.0025291298516094685, 0.04483598843216896, 0.007372003048658371, 0.0509822852909565, -0.015383505262434483, -0.014992699958384037, 0.04263326898217201, -0.02170743979513645, -0.0403594970703125, 0.004110113717615604, 0.040998995304107666, -0.006355022080242634, -0.013278487138450146, 0.03993316367268562, 0.05027173087000847, -0.022773271426558495, 0.018456652760505676, 0.0020062061958014965, 0.026290517300367355, 0.015774309635162354, 0.005786578170955181, 0.007065576501190662, -0.04885062202811241, 0.013926868326961994, 0.003357370151206851, 0.028084667399525642, 0.011590920388698578, -0.00984118040651083, 0.015587789937853813, -0.0534692257642746, 0.01856323704123497, 0.018421126529574394, 0.02474506013095379, 0.036771196871995926, -0.04735845699906349, -0.03368028253316879, 0.0058487518690526485, -0.05162178352475166, 0.016555920243263245, -0.015925303101539612, -0.007776130922138691, -0.03684225305914879, 0.024798352271318436, -0.03199271857738495, 0.01996658183634281, -0.00756296468898654, 0.15276922285556793, 0.012905445881187916, -0.010471797548234463, -0.010409623384475708, -0.03131768852472305, 0.026219461113214493, 0.06622368097305298, -0.023146312683820724, -0.02154756523668766, -0.03302302211523056, -0.009707950986921787, -0.027569515630602837, -0.00021358269441407174, 0.019948817789554596, -0.0023359479382634163, -0.056169334799051285, 0.013429480604827404, -0.0017841579392552376, -0.030056456103920937, -0.058940496295690536, 0.034870464354753494, 0.01226594764739275, 0.03565207123756409, 0.04039502516388893, -0.023998979479074478, -0.019735651090741158, -0.013287369161844254, 0.04664790257811546, 0.0028355566319078207, -0.03156638517975807, -0.0210857056081295, -0.006452722940593958, -0.055387724190950394, -0.0018285675905644894, 0.001884079654701054, 0.0044587296433746815, 0.06124980002641678, -0.01572990044951439, 0.05656014010310173, -0.00027908693300560117, 0.036238279193639755, -0.006177383475005627, 0.043450407683849335, 0.033751338720321655, 0.0012701161904260516, 0.027995847165584564, 0.014113388955593109, -0.016582565382122993, -0.02636157162487507, 0.008388984017074108, 0.15191654860973358, -0.020286330953240395, -0.005497915670275688, 0.022346939891576767, -0.03886733204126358, -0.06185377016663551, 0.00059953035088256, -0.021067941561341286, -0.03003869205713272, 0.0347638800740242, 0.08832192420959473, -0.03444413095712662, 0.03318289667367935, 0.05005856603384018, 0.014237736351788044, 0.0001049178172252141, 0.011733030900359154, 0.056169334799051285, -0.020943595096468925, -0.034159909933805466, -0.008611032739281654, 0.05158625915646553, 0.017053307965397835, -0.01125340722501278, 0.04536890611052513, 0.014681832864880562, -0.06071688234806061, 0.0051470790058374405, 0.04877956584095955, -0.02431872859597206, 0.016813496127724648, 0.006181824021041393, 0.02851099893450737, 0.000043472889956319705, -0.02300420217216015, -0.030980177223682404, 0.023927923291921616, 0.025597726926207542, 0.002140545519068837, 0.008970750495791435, 0.04003974795341492, 0.07205022871494293, -0.0013755891704931855, 0.011990607716143131, 0.007265419699251652, 0.048708513379096985, 0.017524050548672676, -0.043485935777425766, 0.015205866657197475, 0.07332922518253326, 0.0011824071407318115, -0.024887172505259514, 0.015463442541658878, 0.0031242193654179573, 0.03954235836863518, 0.0121238362044096, -0.06384332478046417, 0.00632837601006031, -0.0242476724088192, 0.011564274318516254, -0.04231351986527443, 0.02241799421608448, 0.03940024599432945, 0.009405964985489845, -0.03472835198044777, -0.009494784288108349, -0.0409279391169548, 0.004685218911617994, -0.0285465270280838, -0.05872733145952225, 0.031761787831783295, -0.0183145422488451, -0.02565101720392704, 0.03918708115816116, -0.005435741972178221, -0.012257065623998642, 0.007491908967494965, -0.07283183932304382, 0.0820690467953682, -0.08114532381296158, -0.02382134087383747, -0.0036238280590623617, 0.008069234900176525, -0.0013445023214444518, 0.08974303305149078, -0.0011368872364982963, -0.019540248438715935, -0.0173819400370121, -0.043734628707170486, -0.02941695600748062, 0.101751409471035, -0.024585185572504997, -0.05929577350616455, -0.034870464354753494, -0.0014499753015115857, -0.0033462676219642162, 0.004354367032647133, 0.008047029376029968, -0.0185987651348114, 0.02051726169884205, 0.01906062476336956, -0.06483809649944305, -0.05936682969331741, 0.01796814799308777, -0.015090401284396648, 0.0009170594275929034, -0.00545794703066349, 0.03352040797472, -0.06235115975141525, -0.03712647408246994, -0.06228010356426239, 0.011226761154830456, 0.019664596766233444, 0.0008371220319531858, -0.053682394325733185, 0.005724404938519001, -0.03670014068484306, 0.009752361103892326, 0.08093215525150299, 0.08547970652580261, -0.005830987822264433, -0.062137991189956665, -0.004574194550514221, -0.028155721724033356, -0.003381795482710004, -0.02664579451084137, 0.019131680950522423, 0.0416029654443264, -0.0570930540561676, -0.02353711798787117, -0.005759932566434145, -0.06565523892641068, -0.02378581278026104, -0.0018041422590613365, 0.047926902770996094, -0.01576542854309082, 0.05481928214430809, 0.022116009145975113, 0.03833441436290741, -0.003959120716899633, 0.03376910462975502, -0.084342822432518, -0.05851416289806366, -0.028564291074872017, 0.028333360329270363, 0.008579946123063564, 0.03268550708889961, -0.05531666800379753, 0.009672422893345356, -0.019451430067420006, 0.019380373880267143, 0.0540376715362072, -0.008335692808032036, 0.0460084043443203, 0.0170977171510458, 0.0570930540561676, -0.04057266190648079, -0.01299426518380642, 0.06363015621900558, -0.023146312683820724, -0.063416987657547, 0.04487151652574539, -0.04259774461388588, -0.0007588500156998634, -0.00554232532158494, 0.013687056489288807, -0.01955801248550415, -0.031974952667951584, 0.01302979327738285, 0.07617144286632538, -0.05730622261762619, -0.004412099253386259, 0.016484864056110382, -0.016484864056110382, -0.027835972607135773, -0.05599169433116913, -0.011395517736673355, -0.0008354566525667906, 0.03145980089902878, -0.02593524008989334, 0.028066903352737427, 0.032632216811180115, 0.05027173087000847, -0.10374096035957336, -0.008211345411837101, -0.06391438096761703, -0.06551312655210495, -0.010622790083289146, -0.0024380902759730816, -0.014575249515473843, -0.01168862171471119, -0.01050732471048832, -0.012177128344774246, -0.04131874442100525, -0.03330724313855171, 0.0360073484480381, 0.05201258882880211, -0.013331779278814793, -0.06696975976228714, -0.021654149517416954, 0.054712697863578796, 0.009103979915380478, -0.012834390625357628, -0.0006023059831932187, -0.045937348157167435, 0.015374623239040375, 0.03050055168569088, -0.023892395198345184, -0.0812874361872673, -0.031637441366910934, -0.042242467403411865, -0.044729407876729965, -0.0018019218696281314, 0.10089874267578125, -0.015321332029998302, -0.0013511638389900327, -0.013251841999590397, -0.07425294816493988, 0.020090928301215172, 0.016120705753564835, -0.029203791171312332, 0.01939813792705536, -0.003910270519554615, 0.011288934387266636, 0.058158885687589645, 0.035740893334150314, 0.0028200133237987757, 0.03741069510579109, -0.06611710041761398, -0.0210857056081295, -0.059153661131858826, -0.03805019333958626, 0.03483493626117706, -0.03000316396355629, 0.04501362890005112, -0.018421126529574394, -0.02573983743786812, -0.02126334421336651, -0.025349032133817673, -0.010089874267578125, -0.028475472703576088, -0.004636368248611689, -0.017612870782613754, 0.008366779424250126, -0.01977117918431759, 0.02332395128905773, -0.05837205424904823, 0.014060097746551037, -0.07002514600753784, 0.014992699958384037, 0.03302302211523056, 0.03330724313855171, 0.026414863765239716, -0.061427436769008636, 0.0292215533554554, -0.04011080041527748, 0.017612870782613754, -0.015996359288692474, 0.0646604597568512, 0.01591642014682293, 0.0000841007858980447, -0.02664579451084137, -0.032134827226400375, 0.0026779023464769125, -0.030109748244285583, 0.09251419454813004, -0.00042605513590388, -0.012692280113697052, 0.03028738684952259, 0.014859471470117569, 0.013207431882619858, 0.03833441436290741, -0.05780360847711563, -0.002979887882247567, -0.042739853262901306, -0.011839614249765873, -0.002342609455808997, -0.01819019578397274, -0.015134811401367188, -0.013820284977555275, 0.0019928833935409784, -0.03886733204126358, 0.00906401127576828, -0.002268223324790597, 0.0046408092603087425, -0.005830987822264433, 0.0465768463909626, -0.030980177223682404, 0.008468921296298504, 0.006852410268038511, 0.01666250266134739, 0.02474506013095379, -0.01282550860196352, 0.004565312527120113, -0.0584431067109108, 0.007407530676573515, 0.029985399916768074, -0.002387019107118249, -0.05304289236664772, 0.015214748680591583, 0.007154395803809166, 0.017612870782613754, 0.013145258650183678, 0.06764478981494904, -0.03323618695139885, 0.005529002286493778, 0.037481751292943954, 0.05300736799836159, -0.016733558848500252, -0.027356348931789398, 0.07503455877304077, 0.0060352724976837635, -0.10153824090957642, -0.04014632850885391, -0.043237242847681046, 0.030767010524868965, -0.026077350601553917, 0.012257065623998642, -0.010756018571555614, -0.005280308425426483, -0.006483810022473335, -0.02083701081573963, -0.02527797594666481, -0.022933145985007286, -0.045439962297677994, 0.0009387091267853975, 0.04583076760172844, -0.07205022871494293, -0.007536318618804216, -0.03554549068212509, -0.02465624175965786, 0.014113388955593109, -0.01741746813058853, 0.016094058752059937, 0.01131558045744896, 0.007918241433799267, -0.052438922226428986, 0.054464004933834076, -0.015268039889633656, 0.032259173691272736, 0.02842218056321144, 0.013438362628221512, 0.01007211022078991, -0.028084667399525642, -0.0208014827221632, 0.01390022225677967, 0.0018607645761221647, 0.04362804815173149, 0.03705541789531708, 0.04575971141457558, -0.028475472703576088, 0.004181168973445892, -0.021902842447161674, 0.012292592786252499, -0.06508678942918777, -0.034248728305101395, -0.02776491828262806, -0.04263326898217201, 0.013953514397144318, -0.041212160140275955, 0.04998750984668732, -0.04679001495242119, 0.0317084938287735, -0.05552983656525612, 0.0509822852909565, -0.015285803936421871, -0.020943595096468925, 0.00048739599878899753, 0.005804342217743397, 0.05496139079332352, 0.020623844116926193, -0.04877956584095955, -0.03618498891592026, -0.0012523523764684796, -0.03982657939195633, -0.000849889824166894, -0.03220588341355324, -0.032916437834501266, 0.04327277094125748, -0.020446205511689186, 0.024354256689548492, 0.07368450611829758, -0.004449847619980574, 0.03479940816760063, -0.020002109929919243, 0.01545456051826477, -0.026947779580950737, 0.02250681445002556, 0.045191265642642975, -0.01470847800374031, -0.009912235662341118, -0.0056355856359004974, 0.023892395198345184, 0.013287369161844254, 0.02573983743786812, -0.026876725256443024, -0.011395517736673355, -0.013242959976196289, -0.02726752869784832, 0.08498232066631317, 0.01218600943684578, -0.0027245325036346912, 0.047465041279792786, 0.027498459443449974, -0.00713663175702095, -0.04561759904026985, 0.016653621569275856, 0.0009453705861233175, 0.05481928214430809, 0.035332322120666504, -0.054677169770002365, -0.008295724168419838, 0.010756018571555614, -0.07290289551019669, -0.019629068672657013, 0.05609827861189842, 0.0034484099596738815, 0.03405332565307617, -0.012834390625357628, -0.059651050716638565, 0.027498459443449974, -0.06476704031229019, 0.021405454725027084, 0.009272736497223377, -0.011715267784893513, 0.04860192909836769, -0.05687988921999931, -0.07489244639873505, 0.050449371337890625, -0.03447965905070305, 0.04387674108147621, 0.043450407683849335, -0.033840157091617584, 0.019877761602401733, -0.01952248439192772, -0.018207959830760956, -0.029612358659505844, 0.02415885403752327, 0.033413827419281006, -0.027409641072154045, 0.03929366543889046, 0.013846931047737598, 0.038547582924366, -0.03790808469057083, 0.037979137152433395, 0.02465624175965786, 0.019167207181453705, 0.043947797268629074, 0.0004277205152902752, -0.007354239001870155, -0.023395007476210594, -0.02245352230966091, 0.05670224875211716, -0.012106072157621384, 0.01566772721707821, 0.010800428688526154, -0.008033706806600094, 0.017062190920114517, 0.007549641653895378, -0.05101781338453293, -0.0051115513779222965, 0.019948817789554596, -0.03529679402709007, -0.01114682387560606, -0.02319960482418537, -0.06906589865684509, 0.019859999418258667, -0.011653093621134758, 0.05226128548383713, 0.051692839711904526, -0.007154395803809166, 0.02151203714311123, 0.004518682602792978, 0.03124663420021534, 0.05798124894499779, 0.008344574831426144, -0.03961341455578804, -0.01877640374004841, 0.02792479284107685, -0.033094074577093124, 0.007389767095446587, 0.04060819000005722, -0.043983325362205505, -0.009628013707697392, -0.009290500544011593, -0.053895559161901474, 0.010738255456089973, 0.03522574156522751, -0.013145258650183678, -0.05432189255952835, -0.060397133231163025, -0.0465768463909626, 0.04483598843216896, -0.009947762824594975, 0.03360923007130623, 0.05286525562405586, 0.009867825545370579, 0.006927906535565853 ]
337
funcsigs
Parameter
Represents a parameter in a function signature. Has the following public attributes: * name : str The name of the parameter as a string. * default : object The default value for the parameter if specified. If the parameter has no default value, this attribute is not set. * annotation The annotation for the parameter if specified. If the parameter has no annotation, this attribute is not set. * kind : str Describes how argument values are bound to the parameter. Possible values: `Parameter.POSITIONAL_ONLY`, `Parameter.POSITIONAL_OR_KEYWORD`, `Parameter.VAR_POSITIONAL`, `Parameter.KEYWORD_ONLY`, `Parameter.VAR_KEYWORD`.
class Parameter(object): '''Represents a parameter in a function signature. Has the following public attributes: * name : str The name of the parameter as a string. * default : object The default value for the parameter if specified. If the parameter has no default value, this attribute is not set. * annotation The annotation for the parameter if specified. If the parameter has no annotation, this attribute is not set. * kind : str Describes how argument values are bound to the parameter. Possible values: `Parameter.POSITIONAL_ONLY`, `Parameter.POSITIONAL_OR_KEYWORD`, `Parameter.VAR_POSITIONAL`, `Parameter.KEYWORD_ONLY`, `Parameter.VAR_KEYWORD`. ''' __slots__ = ('_name', '_kind', '_default', '_annotation', '_partial_kwarg') POSITIONAL_ONLY = _POSITIONAL_ONLY POSITIONAL_OR_KEYWORD = _POSITIONAL_OR_KEYWORD VAR_POSITIONAL = _VAR_POSITIONAL KEYWORD_ONLY = _KEYWORD_ONLY VAR_KEYWORD = _VAR_KEYWORD empty = _empty def __init__(self, name, kind, default=_empty, annotation=_empty, _partial_kwarg=False): if kind not in (_POSITIONAL_ONLY, _POSITIONAL_OR_KEYWORD, _VAR_POSITIONAL, _KEYWORD_ONLY, _VAR_KEYWORD): raise ValueError("invalid value for 'Parameter.kind' attribute") self._kind = kind if default is not _empty: if kind in (_VAR_POSITIONAL, _VAR_KEYWORD): msg = '{0} parameters cannot have default values'.format(kind) raise ValueError(msg) self._default = default self._annotation = annotation if name is None: if kind != _POSITIONAL_ONLY: raise ValueError("None is not a valid name for a " "non-positional-only parameter") self._name = name else: name = str(name) if kind != _POSITIONAL_ONLY and not re.match(r'[a-z_]\w*$', name, re.I): msg = '{0!r} is not a valid parameter name'.format(name) raise ValueError(msg) self._name = name self._partial_kwarg = _partial_kwarg @property def name(self): return self._name @property def default(self): return self._default @property def annotation(self): return self._annotation @property def kind(self): return self._kind def replace(self, name=_void, kind=_void, annotation=_void, default=_void, _partial_kwarg=_void): '''Creates a customized copy of the Parameter.''' if name is _void: name = self._name if kind is _void: kind = self._kind if annotation is _void: annotation = self._annotation if default is _void: default = self._default if _partial_kwarg is _void: _partial_kwarg = self._partial_kwarg return type(self)(name, kind, default=default, annotation=annotation, _partial_kwarg=_partial_kwarg) def __str__(self): kind = self.kind formatted = self._name if kind == _POSITIONAL_ONLY: if formatted is None: formatted = '' formatted = '<{0}>'.format(formatted) # Add annotation and default value if self._annotation is not _empty: formatted = '{0}:{1}'.format(formatted, formatannotation(self._annotation)) if self._default is not _empty: formatted = '{0}={1}'.format(formatted, repr(self._default)) if kind == _VAR_POSITIONAL: formatted = '*' + formatted elif kind == _VAR_KEYWORD: formatted = '**' + formatted return formatted def __repr__(self): return '<{0} at {1:#x} {2!r}>'.format(self.__class__.__name__, id(self), self.name) def __hash__(self): msg = "unhashable type: '{0}'".format(self.__class__.__name__) raise TypeError(msg) def __eq__(self, other): return (issubclass(other.__class__, Parameter) and self._name == other._name and self._kind == other._kind and self._default == other._default and self._annotation == other._annotation) def __ne__(self, other): return not self.__eq__(other)
(name, kind, default=<class 'funcsigs._empty'>, annotation=<class 'funcsigs._empty'>, _partial_kwarg=False)
[ 0.06280073523521423, -0.02982255630195141, 0.0019393914844840765, 0.010908315889537334, -0.00012958190927747637, -0.03899722918868065, -0.02101798728108406, -0.012301074340939522, 0.06837176531553268, -0.039425771683454514, -0.02863432839512825, -0.002559071406722069, -0.01506711170077324, -0.005088923964649439, -0.05539866164326668, 0.06470968574285507, 0.0030728336423635483, 0.04604867473244667, -0.05594407767057419, -0.028186308220028877, 0.04273722320795059, 0.0370493158698082, -0.016732577234506607, 0.012690656818449497, 0.029608286917209625, -0.01376200933009386, 0.03960108384490013, -0.0047188205644488335, -0.015807317569851875, -0.01709294132888317, -0.01859283447265625, -0.017950022593140602, 0.013148416765034199, 0.04071139171719551, 0.026024125516414642, -0.03977639600634575, -0.008634126745164394, 0.09435693174600601, -0.06015156954526901, -0.028887558728456497, -0.04226972535252571, -0.012904927134513855, -0.0018590399995446205, -0.056216783821582794, 0.01583653688430786, 0.015154767781496048, 0.028536934405565262, 0.07000800967216492, -0.04986658692359924, 0.006213844288140535, 0.05489220470190048, -0.023900900036096573, -0.0031117917969822884, -0.021212778985500336, -0.05921657383441925, -0.0014378037303686142, 0.06412531435489655, 0.068410724401474, 0.010226545855402946, 0.02493329346179962, 0.013158155605196953, 0.04032181203365326, 0.0193719994276762, -0.04078930988907814, -0.046087633818387985, -0.036036401987075806, -0.036036401987075806, -0.046165551990270615, -0.004957439843565226, 0.047256384044885635, -0.005069444887340069, -0.0266864150762558, 0.021855590865015984, 0.0386076457798481, 0.008517252281308174, -0.007066056597977877, -0.05010033771395683, -0.03332880139350891, 0.041529517620801926, -0.0432826392352581, 0.010879097506403923, -0.011210242286324501, -0.008561080321669579, -0.035257235169410706, -0.006481682416051626, -0.020511530339717865, -0.06731989234685898, -0.010323941707611084, 0.06482656300067902, -0.02337496355175972, -0.06046323850750923, 0.05387928709387779, 0.007231628987938166, 0.037614211440086365, 0.011745918542146683, -0.03977639600634575, 0.0240956898778677, -0.08617569506168365, 0.009856442920863628, -0.016255337744951248, -0.01646960899233818, 0.019401218742132187, -0.01196018885821104, -0.008726652711629868, 0.03221848979592323, -0.013265291228890419, -0.002748992992565036, 0.02205038070678711, -0.008965272456407547, -0.0024300222285091877, -0.013615915551781654, -0.025517666712403297, -0.08017612248659134, 0.01624559983611107, 0.016995545476675034, 0.007528685964643955, -0.04032181203365326, -0.04188014194369316, -0.021543923765420914, -0.002758732531219721, 0.0029924821574240923, 0.02707599848508835, -0.053840331733226776, 0.03194578364491463, 0.020336218178272247, -0.011307638138532639, 0.025615062564611435, 0.029452452436089516, -0.01234977226704359, -0.04425659775733948, 0.008317590691149235, 0.0031872736290097237, -0.05812574177980423, 0.0378284826874733, 0.040828268975019455, -0.01510606985539198, -0.009710349142551422, 0.02799151837825775, -0.0881236121058464, 0.044529303908348083, 0.05107429251074791, 0.02275163121521473, 0.01868049055337906, 0.001037872745655477, -0.0069004837423563, -0.059723030775785446, 0.035880569368600845, -0.046788882464170456, -0.04375013709068298, -0.007504337001591921, -0.02031673863530159, -0.021836111322045326, 0.004280540160834789, 0.007426420226693153, 0.0008029055898077786, -0.011999147944152355, 0.022634755820035934, -0.08968193829059601, -0.04386701434850693, -0.013109458610415459, -0.005658688955008984, -0.055905118584632874, -0.013606175780296326, -0.038958270102739334, 0.040750350803136826, 0.027952559292316437, 0.0035671168006956577, -0.04351639002561569, -0.022732151672244072, -0.009598343633115292, 0.0011017885990440845, 0.0005475463112816215, 0.014414560049772263, 0.059099696576595306, 0.01780392974615097, 0.08259153366088867, -0.0076114721596241, 0.0009039536234922707, 0.012934146448969841, -0.04519159346818924, 0.07581279426813126, -0.021680278703570366, -0.028809640556573868, -0.04971075430512428, 0.046788882464170456, 0.004443677607923746, -0.008950662799179554, 0.029452452436089516, 0.0024470663629472256, 0.0069735306315124035, 0.03217953070998192, -0.009564255364239216, 0.02368662878870964, 0.024972252547740936, -0.039114102721214294, -0.013654873706400394, 0.006700822617858648, 0.025946209207177162, 0.051658667623996735, 0.07269613444805145, 0.013089979067444801, 0.007329024840146303, 0.016138464212417603, 0.009160063229501247, -0.004541073460131884, -0.003260320285335183, 0.0432826392352581, -0.006622906308621168, -0.020764758810400963, -0.03508192300796509, -0.03081599250435829, -0.03669869154691696, 0.04277618229389191, 0.012525084428489208, 0.003170229261741042, -0.10947274416685104, 0.01843700185418129, -0.0017969502368941903, 0.012359511107206345, 0.02080371603369713, 0.13721102476119995, -0.004285410046577454, 0.002941349521279335, -0.009335375390946865, 0.02697860263288021, -0.04791867360472679, 0.03599744290113449, -0.030874429270625114, 0.011405033990740776, -0.029160266742110252, 0.029783599078655243, -0.050022419542074203, -0.009895401075482368, 0.03697139769792557, -0.000022465683287009597, -0.028595371171832085, 0.014414560049772263, -0.04312680661678314, -0.03671817108988762, -0.038568686693906784, -0.0069589209742844105, -0.0037034705746918917, -0.02399829588830471, 0.08181236684322357, -0.06334614753723145, -0.03578317165374756, -0.019264865666627884, 0.08975985646247864, 0.046710968017578125, -0.01242768857628107, -0.007543295156210661, 0.03192630410194397, -0.05372345447540283, 0.020180383697152138, -0.02754349820315838, 0.019109031185507774, -0.06985218077898026, 0.02321912907063961, 0.026491625234484673, 0.017375389114022255, -0.032685987651348114, -0.0028049955144524574, 0.017511742189526558, 0.08601986616849899, 0.06650176644325256, -0.028147350996732712, 0.007699128240346909, -0.02173871546983719, -0.0009009100031107664, 0.009043188765645027, 0.04460722208023071, 0.007538425270467997, 0.0027100348379462957, -0.003547637490555644, -0.015349558554589748, -0.020375175401568413, 0.017628617584705353, -0.009603213518857956, 0.009656781330704689, -0.02871224656701088, 0.05964511260390282, -0.03747785836458206, 0.022732151672244072, 0.006048271432518959, 0.026550062000751495, 0.052048251032829285, 0.006827436853200197, 0.022537359967827797, -0.007387462072074413, 0.016274817287921906, 0.006413505412638187, -0.005658688955008984, 0.05765824019908905, 0.04355534538626671, 0.04437347128987312, 0.05177554115653038, -0.05582720413804054, 0.015807317569851875, 0.019313562661409378, -0.08609777688980103, 0.014882059767842293, 0.015563828870654106, 0.04526951164007187, -0.0037229498848319054, 0.0054054600186645985, -0.02855641208589077, -0.0019357390701770782, -0.021446527913212776, -0.0098467031493783, 0.03410796448588371, 0.04125680774450302, 0.036445461213588715, -0.010226545855402946, -0.0016934673767536879, 0.06506031006574631, 0.017852628603577614, 0.04375013709068298, -0.06019052863121033, 0.03208213672041893, 0.08282528072595596, 0.035179316997528076, -0.023511316627264023, -0.026550062000751495, -0.06794322282075882, -0.01231081411242485, -0.04651617631316185, -0.05719074234366417, 0.029140787199139595, -0.01953757368028164, 0.012544563040137291, -0.032276928424835205, 0.008054622448980808, -0.02393985725939274, 0.008181236684322357, -0.02847849577665329, -0.04371118173003197, -0.013012062758207321, 0.029627764597535133, 0.019323302432894707, -0.02306329645216465, 0.06050219386816025, -0.010995971970260143, -0.041919101029634476, -0.001962522976100445, -0.02588777057826519, -0.004818651359528303, 0.018709709867835045, -0.004297584295272827, 0.0961490124464035, -0.027660371735692024, 0.015632005408406258, -0.014784663915634155, -0.0027757768984884024, 0.00909675657749176, 0.03739994019269943, -0.05387928709387779, 0.0335625521838665, -0.022887984290719032, -0.022011423483490944, -0.05391824617981911, 0.07846195995807648, -0.0252644382417202, 0.005376241635531187, 0.011405033990740776, 0.0552038699388504, 0.010703785344958305, -0.002800125628709793, -0.028536934405565262, 0.013956801034510136, -0.01930382288992405, -0.004209928214550018, -0.06435906141996384, -0.016333255916833878, -0.056372616440057755, -0.026881206780672073, -0.01585601642727852, 0.010168109089136124, 0.02218673564493656, -0.06081386283040047, -0.059333447366952896, 0.06404739618301392, -0.02142704837024212, 0.03702983632683754, 0.038471292704343796, -0.0222841314971447, -0.02448527328670025, 0.0178136695176363, -0.020881634205579758, 0.0417243093252182, 0.05695699155330658, -0.059878863394260406, -0.011366075836122036, 0.015943672508001328, 0.00598009442910552, 0.0018919110298156738, -0.021212778985500336, 0.0006775087094865739, -0.004806476645171642, -0.05543762072920799, 0.01509633008390665, 0.0196934062987566, -0.06957947462797165, -0.004129576962441206, 0.025303397327661514, 0.029705680906772614, -0.02816683053970337, 0.08921444416046143, 0.03969847783446312, -0.029471931979060173, 0.05711282417178154, -0.013031541369855404, -0.025790374726057053, -0.038782957941293716, -0.033932652324438095, 0.06915093213319778, -0.020608926191926003, 0.027582455426454544, 0.00757251400500536, 0.023199649527668953, -0.01821299083530903, -0.00930128712207079, -0.014794403687119484, 0.028751203790307045, 0.07709842175245285, -0.00025338094565086067, 0.06798218190670013, -0.030251096934080124, 0.01881684549152851, 0.009072407148778439, -0.015456694178283215, -0.028439538553357124, 0.01858309470117092, -0.006428114604204893, -0.03309505060315132, -0.0030046566389501095, -0.02799151837825775, -0.02306329645216465, -0.050879500806331635, 0.02612152136862278, 0.041841182857751846, -0.016966326162219048, 0.023491837084293365, -0.008122799918055534, 0.022615276277065277, -0.05161970853805542, 0.0031750991474837065, -0.025069646537303925, 0.06198260933160782, 0.007981576025485992, -0.02596568688750267, 0.05929448828101158, 0.05594407767057419, 0.06981322169303894, -0.05559345334768295, -0.007874440401792526, -0.10277191549539566, -0.057541366666555405, -0.01881684549152851, 0.02471902221441269, -0.030309535562992096, 0.06132031977176666, 0.03315348923206329, 0.0021195735316723585, -0.007382592186331749, -0.06447593867778778, 0.009880791418254375, 0.09194152057170868, -0.04133472591638565, -0.046087633818387985, -0.008337070234119892, 0.04421763867139816, 0.004239147063344717, -0.004375500604510307, -0.029842035844922066, -0.042503472417593, 0.03701035678386688, 0.016196900978684425, 0.00440958933904767, -0.05333387479186058, 0.006355068180710077, 0.023667149245738983, -0.014336643740534782, 0.0027757768984884024, 0.03332880139350891, 0.0076601700857281685, 0.021836111322045326, 0.011930970475077629, 0.04936012998223305, -0.014794403687119484, 0.04001014307141304, -0.06864447146654129, 0.026491625234484673, 0.012340032495558262, 0.03650389984250069, -0.005668428260833025, -0.010255765169858932, -0.03217953070998192, -0.004307324066758156, -0.0052447570487856865, -0.014609351754188538, -0.023978816345334053, -0.03591952472925186, -0.001196140656247735, -0.014073675498366356, 0.09092860668897629, -0.0953698456287384, 0.003440502332523465, 0.02806943468749523, -0.023160692304372787, -0.005653819069266319, -0.028049955144524574, -0.00454837828874588, 0.04425659775733948, -0.00037345156306400895, -0.01906033419072628, -0.005697647109627724, -0.008171496912837029, 0.01977132260799408, -0.03426380082964897, -0.06264489889144897, -0.0005268497625365853, 0.004972049500793219, 0.001016567344777286, -0.05037304386496544, 0.005726865958422422, 0.021524444222450256, -0.02596568688750267, -0.07869570702314377, 0.021991943940520287, -0.014219769276678562, 0.026063082739710808, -0.04285409674048424, -0.015826797112822533, -0.01497945562005043, 0.014317164197564125, 0.062333233654499054, 0.023238608613610268, 0.014570393599569798, -0.008020534180104733, 0.042464517056941986, 0.029452452436089516, 0.0728130117058754, -0.04745117574930191, 0.0240956898778677, -0.0011273549171164632, 0.04636034369468689, -0.015573568642139435, -0.02353079617023468, -0.04367222264409065, -0.004684732295572758, -0.01317763514816761, 0.011025190353393555, -0.04480201005935669, 0.016294296830892563, -0.01921616680920124, 0.020511530339717865, 0.019488874822854996, 0.009535036981105804, 0.024602148681879044, 0.05278845876455307, 0.02070632018148899, 0.03130296990275383, 0.032510675489902496, -0.021232258528470993, -0.03270546719431877, 0.009476599283516407, 0.020686842501163483, -0.01196018885821104, -0.011132325977087021, 0.026959123089909554, 0.03441963344812393, 0.003498939797282219, 0.029004432260990143, 0.011531648226082325, -0.016820233315229416, 0.017833149060606956, -0.009715219028294086, 0.014443779364228249, -0.06724197417497635, -0.030854951590299606, 0.03582213073968887, 0.0056246002204716206, -0.034945569932460785, -0.041841182857751846, -0.0038739130832254887, 0.058164697140455246, -0.022264651954174042, 0.017618877813220024, -0.026530582457780838, -0.015378777869045734, -0.04293201491236687, 0.04943804442882538, 0.011132325977087021, -0.047334298491477966, -0.024972252547740936, 0.06981322169303894, 0.019420698285102844, -0.00862925685942173, 0.02721235156059265, -0.011940710246562958, -0.06264489889144897, -0.012953625060617924, -0.031049741432070732, 0.040282852947711945, 0.025011209771037102, 0.0007055099122226238, -0.003596335416659713, 0.02423204481601715, 0.012904927134513855, -0.01763835735619068, 0.04526951164007187, -0.015495652332901955, -0.004304889123886824, -0.053139083087444305, -0.036835044622421265, 0.025692978873848915, -0.04001014307141304, 0.03521827608346939, 0.04375013709068298, -0.01922590658068657, -0.026452666148543358, 0.015417736023664474, -0.03067963756620884, 0.0016289426712319255, -0.0572686567902565, -0.03021213971078396, -0.04203597456216812, -0.07257925719022751, -0.0054395487532019615, -0.04047764465212822, 0.019021375104784966, 0.003910436294972897, 0.010440817102789879, -0.008113060146570206, -0.03475077822804451, -0.026627978309988976, 0.006394026335328817, -0.031088700518012047, -0.024115169420838356, 0.07994237542152405, 0.023569753393530846, -0.046944715082645416, -0.027972038835287094, 0.06159302592277527, -0.020044030621647835, 0.018475960940122604, 0.005132752005010843, -0.05481428653001785, 0.0642811506986618, 0.0028975214809179306, -0.007002749014645815, 0.10378483682870865, 0.016118984669446945, -0.056762199848890305, 0.03960108384490013, -0.037692125886678696, -0.02290746383368969, 0.0031531851273030043, 0.06393052637577057, -0.010830399580299854, -0.010450555942952633, -0.04550326243042946, -0.0007438595057465136, -0.006282021291553974, -0.024602148681879044, 0.00316779431886971, -0.051269084215164185, -0.011648522689938545, 0.06638489663600922, 0.037302546203136444, -0.008220194838941097, -0.019985593855381012, 0.0006114622228778899, -0.01455091405659914, -0.042074933648109436, -0.047957632690668106, 0.03428328037261963, 0.012865968979895115, 0.010606389492750168, 0.017988981679081917, 0.009345115162432194, -0.010791441425681114, -0.013352947309613228, -0.012583521194756031, -0.023199649527668953, 0.02793307974934578, -0.02847849577665329, -0.015164506621658802, 0.027894122526049614, -0.06447593867778778, -0.0026248134672641754, -0.05333387479186058, 0.028303183615207672, 0.01176539808511734, -0.0378284826874733, -0.045931801199913025, -0.006398896221071482, -0.04912637919187546, 0.025770897045731544, -0.008882486261427402, -0.004786997567862272, -0.007080665789544582, -0.033523593097925186, 0.0008491685730405152, -0.008395507000386715, 0.058788031339645386, -0.0058632199652493, -0.040438685566186905, 0.08594194799661636, -0.035413067787885666, 0.018485698848962784, 0.0440618060529232, 0.005064575467258692, -0.07811133563518524, 0.0379648357629776, 0.023472357541322708, 0.006204104516655207, -0.003060659160837531, 0.008244544267654419, 0.01302180252969265, 0.018018200993537903, -0.009398682974278927, 0.07320258766412735, 0.02314121276140213, 0.01180435623973608, 0.015583308413624763, 0.002532287733629346, -0.03578317165374756, 0.024212565273046494, -0.02791360206902027, 0.06393052637577057, 0.11812147498130798, -0.0476849228143692, -0.03013422340154648, 0.000333884556312114, -0.03790639713406563, 0.06693030893802643, -0.0031824037432670593, -0.02894599549472332, 0.06237219274044037, -0.026608498767018318, 0.0971619263291359, -0.006058011204004288, 0.014580133371055126, 0.023491837084293365, 0.04320472106337547, 0.013557478785514832, 0.0010810920502990484, 0.047412216663360596, -0.01443403959274292, 0.010070713236927986, 0.008302981965243816, -0.03806222975254059, 0.0034429372753947973, 0.034478068351745605, -0.045853886753320694, 0.00727545702829957, 0.07035863399505615, -0.009695739485323429, -0.0663459375500679, -0.10690149664878845, -0.02982255630195141, 0.04242555797100067, -0.0023241043090820312, -0.031166616827249527, 0.07020280510187149, -0.035101402550935745, 0.028614850714802742 ]
338
funcsigs
__eq__
null
def __eq__(self, other): return (issubclass(other.__class__, Parameter) and self._name == other._name and self._kind == other._kind and self._default == other._default and self._annotation == other._annotation)
(self, other)
[ 0.08598125725984573, -0.02758358232676983, 0.026642829179763794, 0.025879576802253723, -0.05104915425181389, -0.055522166192531586, -0.01660517416894436, -0.005311703309416771, 0.0383756160736084, 0.02658957988023758, -0.0012447225162759423, -0.07355622202157974, 0.03127559274435043, 0.04778314381837845, -0.013028538785874844, 0.0007016817689873278, -0.008759651333093643, 0.058291174471378326, -0.013569915667176247, -0.03163059428334236, -0.0006983536295592785, 0.02985559031367302, -0.009984404779970646, 0.026429828256368637, 0.04870614409446716, 0.04604363813996315, 0.0381271131336689, -0.012025660835206509, -0.037559110671281815, 0.04558213800191879, -0.05179465562105179, -0.042103126645088196, 0.04739264026284218, 0.04852864518761635, 0.026447579264640808, 0.007304146885871887, -0.029429588466882706, 0.07181671261787415, -0.04565313830971718, -0.0045484509319067, -0.02185031585395336, -0.02950058877468109, -0.01179491076618433, 0.0003846769395750016, 0.009585028514266014, -0.003818480297923088, -0.03113359399139881, 0.012655788101255894, -0.017048925161361694, 0.036671608686447144, 0.0046682641841471195, -0.04504963383078575, 0.006336769089102745, 0.058397676795721054, -0.03432860225439072, -0.0034989791456609964, 0.05921417847275734, 0.06461019068956375, -0.012700162827968597, 0.0391211174428463, -0.0027601332403719425, -0.019791308790445328, -0.001151534728705883, -0.05857517570257187, -0.04544013738632202, -0.03312160074710846, -0.05243365839123726, -0.00042627862421795726, 0.0003300400567241013, 0.0782422348856926, -0.0031195718329399824, -0.01391604170203209, -0.0034324165899306536, 0.03276659920811653, -0.04093162342905998, 0.023643070831894875, -0.003365853801369667, 0.024299822747707367, 0.011839285492897034, -0.0797332376241684, 0.0034479477908462286, -0.008054086938500404, -0.02783208340406418, -0.04164162650704384, -0.08505825698375702, 0.0015742077957838774, -0.07561522722244263, -0.02218756638467312, 0.04213862493634224, -0.031311094760894775, -0.02522282488644123, 0.022879818454384804, 0.053250160068273544, 0.0022220846731215715, 0.047250643372535706, -0.004144637379795313, 0.0008159477729350328, -0.03798511251807213, -0.00906583946198225, -0.0012902070302516222, 0.02032381109893322, 0.013632040470838547, 0.03060109168291092, 0.01304628886282444, 0.025187324732542038, -0.0022220846731215715, -0.004659389145672321, 0.0008481197291985154, -0.048990145325660706, 0.006753895431756973, -0.06081168353557587, 0.04927414655685425, -0.07831323146820068, 0.03159509599208832, 0.018096178770065308, -0.012531537562608719, -0.018673056736588478, -0.014350918121635914, -0.04153512418270111, -0.001126019051298499, 0.015841921791434288, 0.09719929099082947, 0.018726306036114693, 0.009061401709914207, 0.052504658699035645, 0.014200042933225632, 0.015531296841800213, 0.016010547056794167, -0.0715327113866806, -0.04788964241743088, 0.05754567310214043, -0.02950058877468109, -0.04835114628076553, 0.07043220847845078, 0.05779417231678963, -0.013507790863513947, 0.013259289786219597, 0.04565313830971718, -0.006026143208146095, 0.015140795148909092, 0.03571310639381409, 0.03741711378097534, 0.002120021963492036, -0.0188150554895401, -0.018850555643439293, -0.03699111193418503, -0.053995661437511444, -0.02270231768488884, -0.01631229929625988, -0.006603019777685404, -0.023270320147275925, -0.021104812622070312, 0.020412560552358627, -0.05328565835952759, -0.051510654389858246, -0.026412079110741615, -0.0028045084327459335, -0.062302686274051666, -0.01892155595123768, 0.011475409381091595, 0.004570638760924339, -0.027441581711173058, -0.015220670960843563, -0.01079203188419342, -0.007872148416936398, 0.011493159458041191, -0.05484766513109207, -0.008404649794101715, 0.022116566076874733, -0.010552406311035156, 0.015948422253131866, -0.02147756516933441, 0.01749267801642418, 0.0077523356303572655, -0.011679534800350666, 0.026784829795360565, 0.015415920875966549, -0.023909321054816246, 0.011253533884882927, -0.041961126029491425, 0.06120218336582184, -0.049345146864652634, -0.013010788708925247, -0.0019414121052250266, 0.021140312775969505, -0.020643312484025955, -0.017785552889108658, 0.023110568523406982, -0.011803785338997841, -0.01651642471551895, -0.018282555043697357, -0.0046105762012302876, -0.02696233056485653, -0.004299950320273638, -0.02646532841026783, -0.02934083715081215, 0.004033699631690979, 0.013161664828658104, 0.07419522106647491, 0.09343627840280533, -0.009336528368294239, -0.025524577125906944, -0.023021819069981575, -0.017971929162740707, -0.004359856713563204, -0.02696233056485653, 0.03173709660768509, -0.020980563014745712, 0.07902323454618454, -0.026412079110741615, -0.026536328718066216, -0.01660517416894436, 0.05190115422010422, -0.0028067270759493113, 0.0204303115606308, -0.01309953909367323, 0.0005261226906441152, -0.060172680765390396, -0.0004842436464969069, 0.044091131538152695, 0.10110430419445038, -0.020767562091350555, 0.00815614964812994, 0.04299062862992287, 0.004311044234782457, 0.005511391442269087, 0.017501551657915115, -0.006319019012153149, -0.018025178462266922, -0.05104915425181389, 0.04089612141251564, -0.00116151908878237, 0.022365067154169083, -0.00810289941728115, 0.008049649186432362, 0.054741162806749344, -0.008027461357414722, -0.008133961819112301, -0.11345834285020828, -0.011360034346580505, -0.0029686964116990566, -0.009842404164373875, -0.019915560260415077, 0.05119115486741066, -0.03074309229850769, -0.11026333272457123, -0.07263321429491043, 0.051120154559612274, 0.014084666967391968, -0.008932714350521564, -0.00793871097266674, -0.014377542771399021, -0.047499142587184906, -0.009558403864502907, -0.009185652248561382, 0.003818480297923088, -0.08555525541305542, -0.04327462986111641, 0.05981767922639847, 0.031009342521429062, -0.01041040662676096, 0.03894361853599548, 0.00011107650789199397, 0.04575963690876961, 0.003505635540932417, -0.007148833945393562, -0.015282795764505863, 0.024921074509620667, 0.04966465011239052, -0.04952264949679375, 0.06212518736720085, 0.0014000354567542672, 0.006855958141386509, 0.04249362647533417, -0.017909804359078407, -0.00872415117919445, 0.02859533578157425, -0.03897911682724953, -0.030050840228796005, -0.03573085740208626, 0.041215624660253525, 0.01492779515683651, 0.023128319531679153, -0.05637416988611221, -0.013729666359722614, 0.01811392977833748, -0.00022353972599375993, -0.015513546764850616, -0.021406564861536026, -0.012833288870751858, 0.01272678840905428, -0.008014149032533169, 0.06940270960330963, -0.007219834253191948, -0.003678698558360338, 0.062160685658454895, -0.027281831949949265, -0.002358538331463933, 0.024140072986483574, -0.0023851634468883276, -0.005151953082531691, 0.00991340447217226, 0.037204112857580185, -0.0020534591749310493, 0.0009817997924983501, 0.009487403556704521, 0.012389536947011948, 0.027707833796739578, 0.02069656178355217, 0.026074828580021858, 0.06542669236660004, 0.0680537074804306, 0.0175725519657135, 0.0631546899676323, 0.06524919718503952, -0.006216956302523613, 0.04323912784457207, -0.08491625636816025, 0.002264241222292185, 0.06120218336582184, 0.0013245977461338043, 0.033192601054906845, -0.02445957250893116, -0.042848628014326096, 0.00954065378755331, -0.06123768165707588, -0.04504963383078575, 0.05697767063975334, -0.005449266172945499, 0.032198596745729446, -0.004306606482714415, 0.016019422560930252, 0.056906670331954956, 0.008360275067389011, -0.021637314930558205, -0.02786758355796337, -0.006407769396901131, 0.04291962832212448, 0.019791308790445328, -0.011803785338997841, 0.0388726182281971, -0.04142862558364868, -0.008111773990094662, -0.04717964306473732, -0.012274161912500858, 0.0283468347042799, -0.052504658699035645, 0.011262408457696438, 0.03289084881544113, -0.02019955962896347, -0.06610120087862015, 0.021229064092040062, 0.050126150250434875, -0.028879337012767792, 0.019241057336330414, 0.023270320147275925, 0.0339026004076004, -0.01174166053533554, -0.04366512969136238, -0.036192357540130615, 0.12261736392974854, 0.00021771549654658884, 0.023802820593118668, -0.021424314007163048, 0.015682172030210495, 0.04387813061475754, 0.00787658616900444, -0.052149657160043716, -0.03209209442138672, -0.022666817530989647, -0.058007173240184784, -0.01593954861164093, 0.005045452620834112, -0.05317915976047516, -0.00928327813744545, -0.03399135172367096, -0.072526715695858, 0.011697284877300262, 0.0010833078995347023, -0.0283468347042799, 0.07646723091602325, 0.006620769854635, 0.003569979453459382, 0.062302686274051666, -0.04142862558364868, -0.0363876074552536, -0.008449025452136993, -0.028329085558652878, 0.062160685658454895, 0.05924967676401138, -0.06876370310783386, -0.020732061937451363, 0.00227422546595335, 0.05055215209722519, -0.03347659856081009, -0.017412802204489708, -0.03855311498045921, 0.007530460134148598, -0.1049383133649826, -0.015256171114742756, 0.003838449018076062, 0.0020967249292880297, 0.004499638453125954, 0.010836407542228699, 0.019773559644818306, -0.01844230480492115, 0.04508513584733009, 0.05239815637469292, -0.047605641186237335, 0.0335298515856266, -0.04654064029455185, -0.027565833181142807, -0.026412079110741615, -0.00026098123635165393, 0.009309902787208557, -0.02057231217622757, 0.060279179364442825, -0.01530054584145546, 0.09066727012395859, -0.0006561972550116479, -0.00796089880168438, 0.011448784731328487, 0.0015498015563935041, 0.012620287947356701, 0.007295271847397089, 0.025897327810525894, 0.007579272612929344, 0.0626576840877533, -0.017474927008152008, -0.0386241152882576, -0.05278865993022919, -0.009664904326200485, 0.04682464152574539, 0.02348332107067108, 0.04558213800191879, 0.003086290555074811, -0.006807145196944475, -0.06184118613600731, 0.030050840228796005, 0.019915560260415077, -0.008546650409698486, -0.03349434956908226, -0.02621682919561863, 0.011839285492897034, -0.0975542888045311, -0.008715275675058365, -0.0056267669424414635, 0.06585269421339035, 0.013623165898025036, -0.027139831334352493, 0.004508513491600752, 0.03541135787963867, -0.009948904626071453, -0.06347419321537018, -0.005280640907585621, -0.061557184904813766, -0.04323912784457207, -0.022524816915392876, 0.013383540324866772, -0.005586829036474228, -0.0048857019282877445, 0.008906088769435883, -0.00401151180267334, -0.023927072063088417, -0.025631077587604523, 0.029056837782263756, 0.03905011713504791, -0.0167649257928133, 0.04217412695288658, 0.060172680765390396, 0.029376337304711342, -0.02410457283258438, -0.008954902179539204, 0.018229303881525993, -0.04203212633728981, 0.024388572201132774, 0.013685290701687336, 0.05342765897512436, -0.06400669366121292, 0.05296615883708, -0.022684568539261818, 0.011111533269286156, 0.010366030968725681, -0.0075215850956737995, 0.04149962589144707, -0.04050562158226967, -0.03741711378097534, 0.04242262616753578, -0.04615013673901558, 0.007849960587918758, -0.01870855689048767, -0.03652960807085037, -0.04558213800191879, 0.05090715363621712, 0.012496037408709526, -0.019223308190703392, 0.030281590297818184, 0.010809781961143017, -0.016844799742102623, -0.00639445660635829, -0.004788076970726252, 0.032198596745729446, -0.03084959276020527, 0.0011593003291636705, 0.050871651619672775, -0.057013172656297684, -0.007091146428138018, -0.03791411221027374, -0.03830461576581001, 0.07845523208379745, 0.02309281937777996, -0.009416403248906136, 0.017173176631331444, -0.009700404480099678, 0.05772317200899124, 0.0282225850969553, -0.0031328843906521797, -0.020412560552358627, -0.01726192608475685, -0.049380648881196976, 0.03553560748696327, 0.0020534591749310493, 0.007250896655023098, -0.05924967676401138, -0.022436067461967468, 0.01518517080694437, -0.04529813677072525, -0.036707110702991486, 0.01278891321271658, -0.053001657128334045, 0.015273921191692352, -0.04703764244914055, -0.035553354769945145, 0.026447579264640808, -0.013259289786219597, 0.03968911990523338, -0.025808576494455338, 0.03274884819984436, -0.012318536639213562, 0.022631317377090454, 0.01530054584145546, 0.056622669100761414, 0.003931636922061443, 0.029944339767098427, -0.012274161912500858, 0.06180568411946297, -0.01397816650569439, -0.008537775836884975, 0.014590543694794178, 0.03645860776305199, 0.005143078044056892, 0.009318778291344643, -0.01691580004990101, -0.04164162650704384, -0.03186134621500969, 0.04927414655685425, 0.00843571312725544, 0.035961609333753586, 0.062302686274051666, 0.0757572278380394, 0.07937823981046677, 0.031790345907211304, 0.09244227409362793, -0.021637314930558205, 0.0039116679690778255, -0.06610120087862015, 0.01417341735213995, -0.013037414290010929, 0.021513065323233604, 0.049380648881196976, 0.04462363198399544, 0.002098943805322051, -0.01657854951918125, -0.009265528060495853, 0.05030364915728569, -0.013064038939774036, -0.0033791663590818644, 0.04654064029455185, -0.11310333758592606, -0.014191167429089546, -0.013898291625082493, 0.0188150554895401, 0.006190331187099218, -0.029039086773991585, -0.020519061014056206, -0.002957602497190237, -0.009744779206812382, -0.005591266788542271, -0.00010899642074946314, -0.009789153933525085, -0.05467016249895096, 0.0690477043390274, -0.0078100236132740974, -0.0346481055021286, 0.0018637556349858642, 0.0010283937444910407, 0.04480113461613655, -0.036174606531858444, -0.009877904318273067, 0.003973793238401413, 0.004903452005237341, -0.04693114012479782, -0.015957297757267952, -0.011945785954594612, 0.018726306036114693, -0.00551582919433713, -0.028080584481358528, -0.013081789016723633, -0.0007510491413995624, 0.03084959276020527, 0.09812229126691818, 0.0034035725984722376, 0.02923433668911457, -0.06794720143079758, 0.015327170491218567, -0.007827773690223694, -0.020039809867739677, 0.04803164303302765, -0.009061401709914207, 0.03237609565258026, -0.00946077797561884, 0.04281312972307205, -0.034186601638793945, 0.018140554428100586, -0.09272627532482147, -0.06382919102907181, -0.01159965991973877, -0.07547322660684586, 0.03037034161388874, -0.026642829179763794, 0.007636960595846176, 0.0011238002916797996, 0.0022109909914433956, -0.039440616965293884, -0.035553354769945145, -0.0757572278380394, 0.009842404164373875, -0.03399135172367096, -0.0036454172804951668, 0.07966224104166031, 0.02185031585395336, -0.011049408465623856, -0.033316850662231445, 0.06950920820236206, -0.03429310396313667, -0.0095939040184021, 0.005826455075293779, -0.05782967433333397, 0.041961126029491425, -0.0294650886207819, -0.02532932534813881, 0.0866202563047409, -0.0024872261565178633, -0.013339164666831493, 0.006119330879300833, -0.048848144710063934, -0.018229303881525993, 0.05094265192747116, 0.05548666790127754, -0.017421677708625793, 0.04519163444638252, -0.031027093529701233, 0.022933069616556168, -0.03175484389066696, 0.0035943856928497553, -0.007947586476802826, -0.004410888068377972, -0.04075412079691887, 0.009167902171611786, 0.015602297149598598, -0.044978633522987366, 0.005143078044056892, -0.02082081325352192, -0.023305820301175117, -0.005125327967107296, -0.07419522106647491, -0.008941588923335075, 0.003514510579407215, -0.019880060106515884, -0.01443079300224781, -0.040718622505664825, -0.0019480683840811253, -0.009194527752697468, 0.02334132045507431, 0.009585028514266014, 0.06237368658185005, -0.03124009445309639, -0.023163819685578346, 0.028524335473775864, 0.0035522293765097857, -0.018406804651021957, -0.060918182134628296, 0.027761083096265793, 0.014191167429089546, 0.021282313391566277, -0.010685532353818417, -0.01743055135011673, -0.027707833796739578, -0.04991314932703972, 0.04430413246154785, -0.02147756516933441, -0.038837116211652756, 0.01016190554946661, 0.004841327201575041, -0.005498079117387533, 0.005524704232811928, -0.03200334683060646, -0.00954065378755331, 0.0920872762799263, -0.04654064029455185, -0.03723961114883423, -0.007543772459030151, -0.014617168344557285, -0.08307024836540222, 0.050623152405023575, 0.048102643340826035, -0.03434635326266289, -0.008457900024950504, -0.0044020130299031734, 0.022027816623449326, -0.02245381660759449, -0.019667059183120728, 0.06226718798279762, 0.0027091018855571747, 0.00877740141004324, 0.05307265743613243, 0.04100262373685837, -0.04817364364862442, 0.018282555043697357, -0.0014188948553055525, 0.010516906157135963, 0.10422831028699875, -0.023057319223880768, -0.0017816616455093026, -0.04689564183354378, 0.005409328732639551, 0.007033458445221186, -0.009744779206812382, -0.0008165024337358773, 0.06997071206569672, 0.02071431279182434, 0.0589301772415638, 0.05218515545129776, -0.028684085234999657, 0.003161728149279952, 0.009789153933525085, -0.0188150554895401, -0.013791791163384914, 0.018282555043697357, -0.02096281200647354, -0.0021366626024246216, -0.016019422560930252, -0.003789636306464672, 0.0005596813862212002, 0.026305578649044037, 0.0401151217520237, -0.0005028257146477699, 0.0332813486456871, 0.01995106041431427, -0.02783208340406418, -0.03599710762500763, 0.03383160009980202, 0.031186843290925026, 0.0017761146882548928, -0.037310611456632614, 0.03855311498045921, -0.033796101808547974, 0.034683603793382645 ]
340
funcsigs
__init__
null
def __init__(self, name, kind, default=_empty, annotation=_empty, _partial_kwarg=False): if kind not in (_POSITIONAL_ONLY, _POSITIONAL_OR_KEYWORD, _VAR_POSITIONAL, _KEYWORD_ONLY, _VAR_KEYWORD): raise ValueError("invalid value for 'Parameter.kind' attribute") self._kind = kind if default is not _empty: if kind in (_VAR_POSITIONAL, _VAR_KEYWORD): msg = '{0} parameters cannot have default values'.format(kind) raise ValueError(msg) self._default = default self._annotation = annotation if name is None: if kind != _POSITIONAL_ONLY: raise ValueError("None is not a valid name for a " "non-positional-only parameter") self._name = name else: name = str(name) if kind != _POSITIONAL_ONLY and not re.match(r'[a-z_]\w*$', name, re.I): msg = '{0!r} is not a valid parameter name'.format(name) raise ValueError(msg) self._name = name self._partial_kwarg = _partial_kwarg
(self, name, kind, default=<class 'funcsigs._empty'>, annotation=<class 'funcsigs._empty'>, _partial_kwarg=False)
[ 0.04558732360601425, -0.018777722492814064, 0.04158972203731537, 0.0019667097367346287, 0.001963271526619792, -0.024187320843338966, 0.0007294934475794435, 0.004900728818029165, 0.04852134361863136, -0.008146488107740879, -0.02908346615731716, 0.01542193815112114, -0.04037943854928017, -0.017118168994784355, -0.025654330849647522, 0.034328024834394455, 0.016778921708464622, 0.05339914932847023, -0.07709135860204697, -0.0167972594499588, 0.0654653012752533, 0.023160414770245552, -0.0535091757774353, 0.046467531472444534, 0.06601542979478836, 0.003355784574523568, 0.005638818256556988, -0.015641989186406136, -0.027359729632735252, -0.03018372319638729, -0.008284020237624645, 0.021234964951872826, 0.03269597515463829, 0.057983554899692535, 0.021216627210378647, 0.00016217332449741662, 0.00381422508507967, 0.06777584552764893, -0.08039212971925735, -0.02490248903632164, 0.0014956621453166008, 0.010379092767834663, -0.06795921921730042, -0.037738822400569916, 0.02956024371087551, 0.009361355565488338, 0.055673014372587204, 0.04716435819864273, -0.029780294746160507, 0.03319109231233597, -0.0005080093978904188, 0.017081493511795998, 0.0015644282102584839, -0.027946533635258675, -0.039132483303546906, -0.008742460049688816, 0.06036744639277458, 0.0717000961303711, -0.009480549953877926, 0.03535493090748787, -0.02024473249912262, 0.024022283032536507, 0.019547903910279274, -0.04470711946487427, -0.031687408685684204, -0.0081281503662467, -0.008274851366877556, -0.04221320152282715, -0.025562642142176628, 0.0594872385263443, 0.010654157027602196, -0.009948158636689186, -0.005345416255295277, 0.03616178780794144, 0.01831011287868023, 0.0038715300615876913, -0.023875581100583076, -0.037280380725860596, 0.029615256935358047, -0.006335647776722908, -0.005010754801332951, 0.004474379122257233, -0.02383890561759472, -0.03781217336654663, -0.009283420629799366, -0.007399229798465967, -0.09322845935821533, -0.04639418050646782, 0.09806959331035614, -0.012157842516899109, -0.07085656374692917, 0.02691962569952011, 0.006482348777353764, 0.01401911024004221, 0.012707971036434174, -0.03803222253918648, 0.038509003818035126, -0.032164186239242554, 0.023857243359088898, -0.0077843195758759975, -0.05354585126042366, -0.048191264271736145, -0.014009942300617695, -0.0166688971221447, 0.022335221990942955, -0.025929395109415054, 0.03381457179784775, 0.023765556514263153, -0.037592120468616486, 0.0010549862636253238, 0.025489293038845062, -0.005313325673341751, -0.06542862951755524, 0.050061702728271484, 0.013267268426716328, 0.030715513974428177, -0.013111398555338383, -0.0479712150990963, -0.009205485694110394, -0.0012389355106279254, -0.007752228993922472, 0.002542052650824189, -0.04793453961610794, 0.01640300080180168, 0.017787491902709007, -0.010168210603296757, 0.007559684105217457, -0.0006836493848823011, 0.006752828601747751, 0.0244623851031065, 0.06737241894006729, -0.013386462815105915, -0.057653479278087616, -0.01244207564741373, 0.0010217492235824466, -0.040562815964221954, -0.008879992179572582, 0.0376654714345932, -0.05493950843811035, 0.015761185437440872, 0.014871809631586075, 0.0166688971221447, 0.024627424776554108, 0.0033282779622823, 0.017319882288575172, -0.05794687941670418, 0.03854567930102348, -0.07001303136348724, -0.015284406021237373, -0.024095632135868073, -0.006890360731631517, -0.024865813553333282, -0.027744818478822708, -0.010700001381337643, 0.03036709874868393, -0.03924250602722168, 0.02789152041077614, -0.10408433526754379, -0.02176675572991371, -0.010259898379445076, 0.009498887695372105, -0.04595407471060753, 0.007967695593833923, -0.029853645712137222, 0.026662899181246758, 0.022536935284733772, -0.04408363997936249, -0.05460943281650543, -0.006546530406922102, 0.0031036422587931156, 0.009893146343529224, -0.007463411428034306, 0.026222797110676765, 0.044597093015909195, 0.022628623992204666, 0.021986806765198708, 0.008453642949461937, -0.03553830832242966, 0.03328277915716171, -0.06465844810009003, 0.06198115646839142, 0.0077843195758759975, 0.01617378182709217, -0.0342913493514061, 0.011415168642997742, 0.025287577882409096, 0.0035552061162889004, 0.03220086172223091, -0.013368125073611736, -0.002982155419886112, 0.054095979779958725, 0.01432168111205101, -0.026882952079176903, 0.04789786413311958, -0.036345161497592926, -0.027909858152270317, 0.04976830258965492, 0.026552874594926834, 0.06733573973178864, 0.06645553559064865, 0.017219025641679764, 0.011020909994840622, 0.006835347972810268, 0.0013523994712159038, -0.015091861598193645, 0.033539507538080215, 0.054095979779958725, 0.014743446372449398, -0.029028452932834625, -0.04496384412050247, -0.01776915416121483, -0.02945021726191044, 0.04096624255180359, 0.014523395337164402, -0.024664098396897316, -0.03720702975988388, -0.014119967818260193, -0.004054906312376261, 0.01658637821674347, 0.030880551785230637, 0.0844264030456543, 0.026021083816885948, 0.03313608095049858, -0.015110199339687824, 0.04074619337916374, -0.021528366953134537, 0.04566067457199097, -0.03832562640309334, 0.0046738008968532085, 0.00981979537755251, -0.04202982410788536, -0.010718339122831821, 0.020299745723605156, 0.02209683321416378, -0.06117429956793785, -0.028459986671805382, 0.0016079801134765148, -0.046944309026002884, -0.06605210900306702, -0.03971928358078003, 0.06366821378469467, -0.006798672489821911, -0.05002502724528313, 0.061577729880809784, -0.06887610256671906, -0.011030078865587711, -0.05387592688202858, 0.08039212971925735, 0.08515990525484085, -0.016861442476511, -0.015376094728708267, 0.04030608758330345, -0.06920617818832397, 0.013982435688376427, -0.015055186115205288, 0.03176075965166092, -0.08119898289442062, -0.016393832862377167, 0.01853933371603489, 0.025104202330112457, -0.04342348501086235, 0.01714567467570305, -0.00031832963577471673, 0.0638149157166481, 0.06414499878883362, -0.028753388673067093, 0.022225195541977882, -0.04235990345478058, 0.03311774134635925, -0.014165811240673065, 0.0945487692952156, 0.006500686518847942, 0.04357018694281578, -0.009086290374398232, -0.013799059204757214, -0.0597439669072628, 0.012561270035803318, -0.03265930339694023, 0.017200687900185585, 0.01627463847398758, 0.057213373482227325, -0.03273265063762665, 0.045403946191072464, 0.051308661699295044, 0.033374469727277756, 0.02989032119512558, 0.00026603875448927283, 0.03825227543711662, -0.06891277432441711, -0.006665724795311689, -0.01214867364615202, 0.02768980711698532, 0.031045591458678246, 0.0398293100297451, 0.029340192675590515, 0.021601716056466103, 0.00033895944943651557, -0.006486933212727308, -0.0016652850899845362, -0.03300771489739418, 0.01665055938065052, -0.05163873732089996, 0.01384490355849266, -0.02040977217257023, -0.02658955007791519, -0.012111998163163662, 0.003942588344216347, -0.00391278974711895, -0.004442288540303707, 0.023857243359088898, 0.0688394233584404, 0.05934054031968117, -0.02457241155207157, -0.01042493712157011, 0.04588072746992111, 0.04826461523771286, 0.0703064352273941, -0.08112563192844391, 0.04668758064508438, 0.045073870569467545, 0.03297103941440582, -0.005904713645577431, -0.032585952430963516, -0.08846067637205124, -0.04470711946487427, -0.03427301347255707, -0.036510203033685684, 0.010241560637950897, -0.043643537908792496, 0.042249877005815506, -0.026846276596188545, 0.026534536853432655, -0.03407130017876625, -0.018704373389482498, -0.054242681711912155, -0.048631370067596436, -0.013404800556600094, -0.004749443847686052, 0.007857670076191425, -0.029065128415822983, 0.05303239822387695, 0.008302357979118824, -0.030165385454893112, 0.0020400602370500565, -0.02831328473985195, -0.003030291758477688, 0.0046164956875145435, -0.06135767698287964, 0.10107696056365967, -0.0647684782743454, -0.005294987931847572, 0.00622562225908041, -0.01858517900109291, 0.013523994944989681, 0.0448538176715374, -0.004524807911366224, 0.03284267708659172, -0.04503719508647919, -0.03561165928840637, -0.06146770343184471, 0.0503917820751667, -0.020813198760151863, 0.009682263247668743, 0.03720702975988388, 0.0405261404812336, 0.016476351767778397, 0.03302605450153351, -0.00661071203649044, -0.0006538507877849042, 0.020886549726128578, -0.023307114839553833, -0.07078321278095245, -0.03146735578775406, -0.012891346588730812, -0.0016721617430448532, -0.02787318266928196, -0.0037225368432700634, -0.008568253368139267, -0.021675067022442818, -0.08046548068523407, 0.0009781974367797375, 0.00258560455404222, 0.0313023179769516, 0.0426899790763855, -0.031100604683160782, -0.03381457179784775, 0.012772152200341225, -0.0083986297249794, 0.04059949144721031, 0.018172580748796463, -0.04635750502347946, -0.011983634904026985, 0.03854567930102348, -0.008008955977857113, 0.021675067022442818, 0.0034016284625977278, 0.025746019557118416, -0.005556298885494471, -0.043203432112932205, 0.04232322797179222, 0.019877979531884193, -0.06535527855157852, 0.02273864857852459, 0.010874208994209766, 0.00853157788515091, -0.035428281873464584, 0.06403496861457825, -0.0021901994477957487, -0.014761784113943577, 0.03487815335392952, 0.017347387969493866, 0.009155056439340115, -0.04338680952787399, -0.01899777539074421, 0.0535091757774353, 0.021711742505431175, 0.0439002625644207, -0.033392805606126785, 0.016467183828353882, -0.057029999792575836, 0.0023586764000356197, 0.00241139717400074, 0.05090523511171341, 0.04628415405750275, 0.04280000552535057, 0.0594872385263443, -0.005272065754979849, -0.024040620774030685, 0.009654756635427475, -0.04122297093272209, -0.06902280449867249, 0.01993299275636673, -0.004086996894329786, -0.0388757549226284, 0.03476812690496445, 0.00832527969032526, -0.012176180258393288, -0.031504031270742416, -0.012992204166948795, -0.01011319737881422, -0.03304439038038254, -0.026699574664235115, 0.008027293719351292, 0.015568639151751995, -0.06462177634239197, -0.01012236624956131, -0.010452443733811378, 0.05185879021883011, 0.003658355213701725, -0.018942762166261673, 0.06542862951755524, 0.04386358708143234, 0.0921282023191452, -0.06751912087202072, 0.012588776648044586, -0.10452443361282349, -0.08141903579235077, 0.012377893552184105, 0.037922199815511703, -0.037280380725860596, 0.036381836980581284, 0.04668758064508438, -0.004222237039357424, -0.04852134361863136, -0.037738822400569916, 0.01588037982583046, 0.04951157420873642, -0.010159041732549667, 0.0031655316706746817, -0.02508586458861828, 0.005794688127934933, 0.046944309026002884, 0.005226221866905689, 0.0038646534085273743, -0.0458073765039444, 0.003025707323104143, -0.0027987794019281864, 0.03720702975988388, -0.016778921708464622, 0.01839263364672661, 0.017072323709726334, 0.019364526495337486, 0.002019430510699749, 0.03271431475877762, 0.002982155419886112, -0.006739075295627117, -0.03678526729345322, 0.026846276596188545, -0.029358530417084694, 0.021565040573477745, -0.037097007036209106, 0.05075853317975998, 0.030715513974428177, 0.050538480281829834, 0.013432307168841362, 0.024040620774030685, 0.010736676864326, 0.014743446372449398, 0.03132065385580063, 0.04859469458460808, -0.014816797338426113, -0.03858235478401184, -0.018676865845918655, -0.045990750193595886, 0.048337966203689575, -0.1084120124578476, -0.025415942072868347, -0.008632434532046318, 0.019712941721081734, 0.010452443733811378, -0.024535736069083214, -0.018484320491552353, 0.03487815335392952, 0.024719111621379852, -0.01643967628479004, 0.011882778257131577, -0.010159041732549667, 0.010351586155593395, -0.04213985055685043, -0.028221597895026207, 0.014825966209173203, 0.007142503280192614, -0.015275238081812859, -0.03513488173484802, -0.018346788361668587, 0.03707866743206978, -0.011534363031387329, -0.07206685096025467, 0.011387662030756474, 0.0018303237156942487, 0.024664098396897316, -0.04158972203731537, -0.020446445792913437, -0.002042352454736829, -0.0056984154507517815, 0.041956476867198944, -0.03579503297805786, 0.05292237177491188, -0.025911057367920876, 0.03561165928840637, 0.015311912633478642, 0.04004936292767525, 0.012286205776035786, 0.031063929200172424, 0.01049828715622425, 0.03319109231233597, 0.0057121687568724155, 0.0023300237953662872, -0.03287935256958008, -0.0084307212382555, 0.01354233268648386, -0.019584577530622482, -0.10958562046289444, -0.031228967010974884, 0.011085091158747673, 0.041663073003292084, 0.047091007232666016, -0.01733822003006935, -0.008696616627275944, 0.04903479665517807, 0.034621428698301315, 0.020318083465099335, 0.03781217336654663, 0.012313712388277054, -0.024334022775292397, -0.02956024371087551, 0.007000386714935303, -0.052555620670318604, -0.022316884249448776, 0.02488415129482746, 0.01656804047524929, -0.011240961030125618, 0.013753214851021767, 0.042249877005815506, 0.008018124848604202, 0.03561165928840637, 0.0616510808467865, 0.01632048189640045, -0.0697929859161377, -0.027341391891241074, 0.029835307970643044, -0.010965896770358086, -0.056443195790052414, -0.03163239359855652, -0.031852446496486664, 0.06513522565364838, -0.0021420633420348167, -0.014000773429870605, -0.008238175883889198, 0.019492890685796738, 0.007706385105848312, 0.01706315577030182, 0.023930594325065613, -0.019969668239355087, -0.06212785840034485, 0.048191264271736145, 0.011286805383861065, -0.05475613474845886, 0.06509855389595032, -0.010984234511852264, -0.06403496861457825, 0.02737806737422943, -0.04767781123518944, 0.06634551286697388, 0.02134498953819275, 0.025342591106891632, -0.046174127608537674, 0.013047216460108757, -0.007541346363723278, 0.008403214626014233, 0.026681236922740936, -0.030715513974428177, -0.029816970229148865, -0.02569100633263588, -0.01881439797580242, 0.040416114032268524, -0.025746019557118416, 0.027139678597450256, 0.03924250602722168, -0.030788864940404892, -0.022335221990942955, 0.00972810760140419, -0.0045637753792107105, 0.029945334419608116, -0.06304474174976349, -0.03546495735645294, -0.03685861825942993, -0.07419401407241821, -0.0021695697214454412, -0.0016744539607316256, 0.01082836464047432, 0.00762845017015934, -0.046137452125549316, 0.011341817677021027, -0.042946707457304, -0.036070097237825394, -0.0042818342335522175, -0.0458073765039444, 0.0188327357172966, 0.05413265526294708, 0.0044950093142688274, -0.007160840556025505, 0.03234756365418434, 0.039132483303546906, -0.009191731922328472, 0.02818492241203785, 0.001595372916199267, -0.041002918034791946, 0.05479281023144722, 0.020116370171308517, 0.008059384301304817, 0.057836852967739105, 0.03529991954565048, -0.03968261182308197, 0.027231365442276, -0.04096624255180359, -0.030385436490178108, 0.008852486498653889, 0.08090557903051376, -0.03297103941440582, -0.05508621037006378, -0.04976830258965492, 0.02275698632001877, -0.015357756987214088, -0.005505870562046766, 0.01049828715622425, -0.07848501205444336, -0.07826496660709381, 0.013285606168210506, 0.027469754219055176, -0.03364953398704529, 0.023013712838292122, 0.02273864857852459, 0.007302957121282816, -0.030000345781445503, -0.026076095178723335, 0.01190111506730318, 0.00813731923699379, 0.028258273378014565, 0.05545296519994736, -0.01860351487994194, -0.01752159558236599, 0.024517398327589035, -0.01945621520280838, -0.037097007036209106, 0.03707866743206978, -0.04932819679379463, -0.010901715606451035, 0.033997949212789536, -0.044303689152002335, -0.012038648128509521, -0.02664456143975258, -0.00020013793255202472, 0.011002572253346443, -0.03036709874868393, -0.053765904158353806, -0.001596519025042653, -0.059707291424274445, 0.017549103125929832, 0.019877979531884193, -0.02726804092526436, 0.006331063341349363, -0.06212785840034485, 0.01114010438323021, -0.026736250147223473, 0.025929395109415054, -0.008517825044691563, -0.024664098396897316, 0.05651654675602913, -0.04452374204993248, 0.02488415129482746, 0.038839079439640045, -0.01916281320154667, -0.08479315787553787, 0.020923225209116936, 0.06429169327020645, 0.03693196550011635, -0.017741648480296135, -0.015091861598193645, -0.010250729508697987, 0.026057757437229156, -0.016494689509272575, 0.014028279110789299, 0.014174980111420155, -0.005835947580635548, -0.025250902399420738, -0.03115561604499817, -0.04635750502347946, 0.015229393728077412, -0.03755544498562813, 0.03484147787094116, 0.08017207682132721, -0.029376868158578873, -0.02239023521542549, -0.007866838946938515, -0.03051380068063736, 0.10694500058889389, 0.016861442476511, 0.0018773138290271163, 0.06352151930332184, -0.03854567930102348, 0.07177344709634781, -0.010479950346052647, -0.006835347972810268, 0.012469581328332424, 0.03964593634009361, 0.027653131633996964, -0.03968261182308197, 0.04749443754553795, 0.007174593862146139, -0.015284406021237373, -0.019712941721081734, -0.004987832624465227, 0.03990266099572182, 0.005258312448859215, -0.041332997381687164, 0.0097189387306571, 0.06458509713411331, -0.015146873891353607, -0.04015938937664032, -0.09770283848047256, -0.0266262236982584, 0.019089462235569954, -0.01885107345879078, -0.04265330359339714, 0.07107661664485931, 0.007573436945676804, 0.02862502448260784 ]
342
funcsigs
__repr__
null
def __repr__(self): return '<{0} at {1:#x} {2!r}>'.format(self.__class__.__name__, id(self), self.name)
(self)
[ 0.03509392961859703, -0.030647877603769302, 0.07598705589771271, 0.02762526646256447, 0.0381692610681057, -0.0669543668627739, 0.012661579996347427, 0.0011554460506886244, 0.03228219598531723, -0.028697239235043526, -0.02077166922390461, 0.012459486722946167, 0.020560789853334427, 0.06488071382045746, -0.02715078555047512, 0.03809896856546402, 0.0024712488520890474, -0.06087399646639824, -0.022880468517541885, 0.01158960722386837, 0.009190849028527737, 0.029575904831290245, 0.044249631464481354, -0.039399392902851105, 0.004191237967461348, 0.057605355978012085, -0.03637678176164627, 0.015991725027561188, -0.0160356592386961, -0.03918851166963577, -0.06997697800397873, -0.06235015392303467, 0.012415553443133831, -0.03418011590838432, 0.004057241138070822, 0.0026469819713383913, -0.06779788434505463, 0.01936580426990986, -0.004041864536702633, -0.012687940150499344, 0.10438554733991623, 0.007314896211028099, -0.01680888421833515, -0.05187645182013512, -0.028170038014650345, -0.006115516647696495, 0.06846567243337631, 0.02358340099453926, -0.030349131673574448, -0.07535441219806671, 0.020033590495586395, 0.04502285644412041, -0.025692200288176537, 0.012863673269748688, -0.05423127859830856, 0.01054399460554123, 0.03838013857603073, 0.028978411108255386, -0.0031917549204081297, 0.04101613909006119, -0.04667475074529648, 0.04839693382382393, 0.04547976329922676, -0.03463702276349068, -0.010262821801006794, -0.0509977862238884, -0.01675616391003132, 0.0031082816421985626, -0.0267465990036726, 0.028697239235043526, 0.060171063989400864, -0.015939004719257355, -0.025955799967050552, 0.040207765996456146, -0.023548254743218422, -0.02558675967156887, -0.01493732538074255, 0.028539078310132027, 0.0409809909760952, -0.03560355678200722, 0.0047843377105891705, 0.018979189917445183, -0.04119187220931053, -0.00782012939453125, -0.0034070282708853483, -0.04062952473759651, -0.013768699951469898, -0.043335817754268646, -0.08449254184961319, 0.0015881891595199704, 0.0054257637821137905, 0.031016917899250984, -0.04583122953772545, 0.02683446556329727, -0.030138250440359116, -0.04460109770298004, 0.009340221993625164, -0.032141610980033875, 0.05915180966258049, 0.0019726057071238756, 0.014111379161477089, -0.01491975225508213, -0.07823643833398819, -0.01892646960914135, -0.06987153738737106, 0.008422015234827995, -0.027783425524830818, 0.01575448550283909, -0.03212403506040573, -0.005768443923443556, -0.009718048386275768, 0.08329755812883377, 0.010983327403664589, -0.0033806683495640755, 0.04667475074529648, -0.03634163364768028, -0.0020275223068892956, 0.01427832618355751, 0.05282541364431381, -0.02874995954334736, 0.018785884603857994, -0.001707907416857779, -0.02774827927350998, 0.014462846331298351, -0.06906316429376602, 0.03289726376533508, -0.042808618396520615, -0.02599094621837139, -0.007578496355563402, -0.10452613234519958, 0.03760691359639168, -0.007029329892247915, -0.04259773716330528, 0.01817081682384014, 0.055566851049661636, -0.006005683448165655, 0.03177256882190704, 0.026359986513853073, -0.010693367570638657, 0.12238062918186188, 0.009269928559660912, -0.020226895809173584, 0.01744152419269085, 0.040559232234954834, -0.034232836216688156, -0.011844420805573463, 0.0007864062790758908, 0.08800721168518066, 0.020947402343153954, -0.02505956031382084, 0.008316575549542904, 0.018680443987250328, 0.059889890253543854, 0.016870390623807907, -0.007446696050465107, 0.04150819033384323, -0.01074608787894249, -0.015403018333017826, 0.013408446684479713, -0.037079714238643646, -0.043933309614658356, -0.03634163364768028, 0.029365025460720062, -0.030384277924895287, 0.002449281979352236, 0.007644396275281906, -0.002258172258734703, -0.05177101492881775, 0.02606124058365822, -0.003354308195412159, -0.025235293433070183, -0.07753350585699081, -0.04354669898748398, 0.03572656959295273, -0.01616745814681053, 0.03581443428993225, -0.010877887718379498, 0.09496624767780304, -0.010913033969700336, -0.026201827451586723, 0.06769244372844696, -0.0447416827082634, -0.04502285644412041, -0.020982548594474792, 0.02129886858165264, -0.057324182242155075, 0.037150006741285324, 0.008237496018409729, 0.06674348562955856, -0.00026154049555771053, 0.012160740792751312, 0.007082049734890461, -0.010456128045916557, 0.01243312656879425, -0.00011628598440438509, -0.02498926781117916, -0.008171595633029938, -0.0707150548696518, 0.01801265776157379, 0.019400950521230698, 0.010851527564227581, 0.032826971262693405, -0.02124614827334881, 0.015367872081696987, 0.02874995954334736, -0.010359474457800388, 0.021755775436758995, -0.049310747534036636, 0.032949984073638916, -0.020701376721262932, 0.02730894647538662, -0.00009040651639224961, 0.0022416971623897552, 0.0237767081707716, 0.011334794573485851, -0.034390997141599655, -0.0638263151049614, -0.043089792132377625, -0.030366703867912292, 0.02859179861843586, 0.0700824186205864, -0.023231934756040573, -0.012099233455955982, -0.05170071870088577, -0.06832508742809296, -0.01146659441292286, 0.005118230823427439, -0.015605111606419086, -0.01889132335782051, -0.00010605775605654344, 0.05539111793041229, -0.043616991490125656, -0.007833309471607208, 0.006089156959205866, -0.023829428479075432, 0.06119031459093094, -0.03331902250647545, -0.004863417707383633, -0.04769400134682655, 0.010060728527605534, -0.03208889067173004, 0.04892413318157196, 0.06459954380989075, -0.005614676978439093, 0.07152342796325684, -0.05964386463165283, -0.0050830841064453125, 0.062420446425676346, -0.026518145576119423, -0.03541024774312973, 0.005219277460128069, -0.01964697614312172, -0.03809896856546402, -0.008848168887197971, 0.016228964552283287, -0.08083729445934296, -0.04720195010304451, -0.021105563268065453, 0.008729549124836922, 0.05570743978023529, -0.010438554920256138, 0.0403483510017395, -0.002517378656193614, 0.012037727050483227, 0.051068078726530075, 0.030577585101127625, -0.08765574544668198, 0.013768699951469898, -0.023882146924734116, 0.014585859142243862, 0.1345413774251938, -0.015455738641321659, -0.04611240327358246, 0.06621628254652023, -0.043054644018411636, -0.05679698288440704, -0.011914714239537716, -0.009981648065149784, -0.0666380450129509, -0.06502129882574081, 0.007139163091778755, -0.01580720581114292, 0.012538567185401917, -0.014814312569797039, 0.0025371487718075514, -0.04502285644412041, 0.012283753603696823, 0.022001802921295166, 0.004224187694489956, 0.005465304013341665, 0.03778264671564102, 0.024391774088144302, -0.02646542713046074, 0.0036288914270699024, 0.04751826822757721, -0.01568419113755226, 0.012608860619366169, 0.06396690011024475, -0.03096419759094715, 0.011615967378020287, -0.004797517322003841, -0.011510527692735195, 0.026887185871601105, 0.03577928990125656, -0.0509977862238884, 0.013127272948622704, -0.020982548594474792, 0.05138440057635307, 0.0223708413541317, 0.0079387491568923, 0.006546063348650932, 0.02790643833577633, 0.024356627836823463, 0.043898165225982666, 0.024602653458714485, 0.030542436987161636, -0.004832664038985968, -0.02611396089196205, 0.03757176920771599, 0.08498459309339523, -0.010464915074408054, 0.014568286016583443, -0.027783425524830818, 0.008813021704554558, 0.05721874535083771, -0.012661579996347427, -0.03437342122197151, 0.03407467529177666, 0.012151953764259815, 0.04913501441478729, -0.03400438278913498, -0.05064631998538971, 0.016413485631346703, 0.015130632556974888, 0.014462846331298351, 0.0007759720901958644, 0.014647365547716618, 0.01723943091928959, -0.05025970935821533, -0.06948492676019669, 0.056445516645908356, 0.032949984073638916, -0.012846100144088268, -0.02887297235429287, -0.015148205682635307, 0.021790921688079834, -0.03240520879626274, 0.017854496836662292, 0.02583278715610504, -0.01672980561852455, -0.046182695776224136, -0.02430390752851963, 0.007991469465196133, -0.013715979643166065, -0.025885507464408875, 0.00018603011267259717, -0.010737300850450993, 0.022265402600169182, -0.029523184522986412, 0.059011224657297134, 0.03319600969552994, -0.022036949172616005, -0.009138128720223904, -0.035304807126522064, -0.059327542781829834, -0.030103104189038277, -0.015982938930392265, 0.006748156622052193, 0.03024369105696678, 0.009876208379864693, -0.06435351073741913, 0.01788085699081421, -0.05321202799677849, -0.03407467529177666, -0.03591987490653992, 0.027994304895401, -0.0027348485309630632, 0.03648222237825394, -0.027730705216526985, -0.10501818358898163, 0.04917016252875328, 0.0006156155141070485, 0.026219399645924568, 0.033740781247615814, -0.009331434965133667, 0.004092387855052948, 0.03177256882190704, 0.020964976400136948, 0.019260363653302193, 0.017538176849484444, -0.04523373767733574, -0.017669977620244026, 0.016193818300962448, -0.002458068775013089, -0.02386457473039627, -0.04038349911570549, 0.06969580799341202, -0.009269928559660912, -0.0669192224740982, -0.025727346539497375, 0.003626694902777672, 0.0028095352463424206, -0.014005939476191998, -0.0192427895963192, 0.009630181826651096, -0.012564927339553833, 0.028925692662596703, 0.007521382998675108, -0.01004315447062254, -0.03368806093931198, -0.015376659110188484, 0.002335055498406291, -0.0447416827082634, -0.05507479980587959, 0.09616123139858246, -0.02955833077430725, -0.020841963589191437, 0.011897140182554722, 0.021755775436758995, -0.0005280234618112445, -0.0553559735417366, 0.04446050897240639, -0.0006161647033877671, 0.019137350842356682, -0.03284454345703125, 0.026289694011211395, -0.03978600725531578, 0.0459718182682991, 0.042808618396520615, 0.0466044545173645, -0.027256226167082787, 0.002414135495200753, 0.029769212007522583, 0.026658732444047928, 0.040524084120988846, -0.059257250279188156, 0.02430390752851963, -0.04242200404405594, -0.020824389532208443, 0.06983639299869537, 0.02570977434515953, -0.0036574481055140495, 0.02518257312476635, -0.0024053486995399, 0.008786662481725216, -0.0033191617112606764, -0.056445516645908356, 0.0034092250280082226, 0.03588472679257393, 0.010192528367042542, 0.051630426198244095, 0.025288013741374016, 0.013215139508247375, -0.05310658738017082, -0.03866131231188774, -0.05085720121860504, -0.02186121605336666, -0.0475534163415432, -0.004771157633513212, -0.01491975225508213, -0.07310502976179123, 0.025129854679107666, -0.011545673944056034, 0.007574102841317654, -0.04583122953772545, -0.03641192987561226, 0.03324873000383377, -0.0005077043315395713, -0.062139276415109634, 0.0012663776287809014, 0.03384622186422348, 0.02446206659078598, -0.02286289446055889, -0.011422661133110523, -0.04214083030819893, 0.05409069359302521, -0.0236185472458601, -0.005619070492684841, -0.0384855791926384, -0.033266302198171616, -0.05117351934313774, -0.07046902924776077, 0.00897996872663498, 0.0012828527251258492, -0.00678769638761878, 0.03268638253211975, 0.005452123936265707, 0.04013747349381447, -0.013039406388998032, 0.01892646960914135, 0.010289181023836136, 0.05148984119296074, -0.11591364443302155, 0.028539078310132027, 0.008953608572483063, 0.02570977434515953, -0.015780845656991005, -0.029628625139594078, -0.07401884347200394, -0.008703188970685005, -0.0016156474594026804, -0.045339178293943405, 0.03961027413606644, -0.033143289387226105, 0.0378529392182827, -0.005961750168353319, 0.03546296805143356, 0.011264501139521599, 0.010368261486291885, -0.027045346796512604, 0.04945133626461029, -0.05465303733944893, 0.018944043666124344, -0.004432871006429195, -0.001607959158718586, -0.0353575274348259, -0.004569064360111952, -0.0002748577680904418, -0.01427832618355751, -0.008206742815673351, 0.047904882580041885, 0.0025085920933634043, -0.04924045503139496, -0.002996251918375492, -0.03300270438194275, 0.03644707426428795, -0.003903474658727646, 0.02955833077430725, -0.04073496535420418, 0.07451089471578598, 0.008171595633029938, 0.0013630309840664268, -0.0016442041378468275, -0.017265791073441505, -0.033301450312137604, 0.08863984793424606, -0.07612764090299606, 0.04400360584259033, -0.024514786899089813, 0.017916005104780197, 0.02333737537264824, -0.036868833005428314, 0.005847523454576731, -0.0444253645837307, -0.017617257311940193, -0.055285677313804626, 0.0062824636697769165, 0.0007825621287338436, 0.007139163091778755, -0.023091347888112068, 0.03922365978360176, -0.04779944196343422, -0.0024712488520890474, -0.01852228306233883, 0.00760924955829978, 0.055039651691913605, 0.018750736489892006, 0.03133323788642883, 0.006414263509213924, 0.04983794689178467, 0.00858017522841692, 0.0635099932551384, 0.061822954565286636, -0.034426141530275345, 0.034707315266132355, 0.04917016252875328, -0.001640909118577838, -0.007701509166508913, -0.02017417550086975, -0.009533528238534927, -0.015833565965294838, 0.003343324875459075, 0.050048828125, 0.008180382661521435, -0.03351232782006264, 0.03560355678200722, -0.005232457537204027, 0.06836023181676865, 0.0036091215442866087, -0.014656152576208115, 0.003903474658727646, 0.00718748988583684, -0.030349131673574448, -0.05345805361866951, -0.011633540503680706, -0.005289570428431034, -0.03634163364768028, 0.01817081682384014, 0.01405865978449583, -0.04871325567364693, -0.02124614827334881, -0.055988609790802, -0.007323682773858309, 0.007350042928010225, 0.05753506347537041, -0.024567507207393646, 0.02245870791375637, -0.02983950451016426, -0.003883704775944352, 0.03641192987561226, 0.0588003434240818, 0.011738981120288372, 0.03150897100567818, 0.03887219354510307, 0.0397157147526741, -0.0218963623046875, 0.027221079915761948, 0.0066251433454453945, -0.02890811860561371, 0.022950761020183563, -0.008430802263319492, 0.02918929234147072, 0.011844420805573463, -0.0378529392182827, -0.02333737537264824, -0.049908239394426346, -0.021527322009205818, 0.02955833077430725, -0.04498771205544472, 0.03845043480396271, -0.0046876841224730015, 0.02514742687344551, -0.06589996814727783, 0.031667131930589676, 0.0036069247871637344, 0.006308823358267546, 0.01054399460554123, 0.015991725027561188, 0.06639201939105988, -0.00916448887437582, 0.039680566638708115, 0.0231440681964159, -0.0009637870243750513, -0.07760380208492279, -0.05967900902032852, -0.0074730562046170235, -0.004224187694489956, 0.03233491629362106, -0.03418011590838432, 0.049310747534036636, -0.004191237967461348, -0.028064599260687828, -0.09215451031923294, 0.014752806164324284, -0.03753662109375, -0.005790410563349724, 0.0006205580430105329, -0.08231344819068909, -0.00479312427341938, -0.03602531552314758, -0.010289181023836136, -0.00344876479357481, 0.012195887044072151, -0.010570354759693146, 0.010464915074408054, 0.03634163364768028, -0.05117351934313774, 0.010974541306495667, -0.06607569754123688, 0.012995473109185696, -0.021263722330331802, -0.04456594958901405, 0.009638968855142593, -0.0490998700261116, 0.061295755207538605, 0.04583122953772545, -0.015288792550563812, 0.018944043666124344, -0.023530680686235428, -0.029224438592791557, -0.025797640904784203, 0.02121100202202797, -0.03620104864239693, -0.05089234560728073, -0.07598705589771271, -0.013127272948622704, 0.0028183218091726303, 0.014269539155066013, 0.02896083891391754, -0.019190069288015366, 0.016975831240415573, -0.006124303676187992, -0.04523373767733574, -0.053071439266204834, 0.024602653458714485, 0.02827547863125801, 0.009032689034938812, 0.022529002279043198, 0.002368005458265543, -0.06554850190877914, -0.04301949962973595, -0.022669589146971703, 0.012740660458803177, 0.019910575821995735, 0.015148205682635307, 0.008733942173421383, 0.06322882324457169, -0.06783302873373032, 0.029663771390914917, -0.01968212239444256, 0.02193150855600834, 0.020420202985405922, 0.05771079659461975, 0.009928928688168526, 0.04843208193778992, 0.025639479979872704, 0.04495256394147873, 0.026254545897245407, 0.035990167409181595, 0.02446206659078598, 0.02855665236711502, 0.08969424664974213, 0.026482999324798584, -0.02683446556329727, 0.013206353411078453, -0.0139971524477005, -0.009920141659677029, 0.03950483351945877, -0.023759134113788605, 0.049732506275177, -0.012125593610107899, 0.03890734165906906, 0.052473947405815125, -0.010842741467058659, 0.009340221993625164, 0.10494789481163025, -0.01659800484776497, -0.042808618396520615, -0.04326552525162697, -0.0054916637018322945, 0.01961182989180088, 0.04555005580186844, -0.04298435151576996, 0.011501740664243698, 0.04983794689178467, 0.01010466180741787, 0.016835244372487068, -0.01115027442574501, 0.021404309198260307, 0.04010232537984848, -0.007855275645852089, 0.027959158644080162, 0.014867031946778297, 0.02477838657796383, 0.004779944196343422, 0.029347451403737068, -0.004498770926147699, 0.06199868768453598, -0.020525643602013588, 0.03156169131398201, 0.048783548176288605, 0.025797640904784203, -0.043054644018411636, 0.013847779482603073, 0.0531768798828125, -0.030893905088305473, 0.008773482404649258, 0.025235293433070183, 0.030085531994700432, -0.03235248848795891, -0.03565627336502075, -0.01668587140738964, 0.003316964954137802, 0.032739102840423584, -0.03300270438194275, 0.0619283951818943, -0.009981648065149784, 0.011844420805573463 ]
343
funcsigs
__str__
null
def __str__(self): kind = self.kind formatted = self._name if kind == _POSITIONAL_ONLY: if formatted is None: formatted = '' formatted = '<{0}>'.format(formatted) # Add annotation and default value if self._annotation is not _empty: formatted = '{0}:{1}'.format(formatted, formatannotation(self._annotation)) if self._default is not _empty: formatted = '{0}={1}'.format(formatted, repr(self._default)) if kind == _VAR_POSITIONAL: formatted = '*' + formatted elif kind == _VAR_KEYWORD: formatted = '**' + formatted return formatted
(self)
[ 0.033840883523225784, -0.03498060256242752, 0.051936112344264984, -0.02242616005241871, 0.0640697330236435, -0.05898483470082283, 0.018621252849698067, -0.061895500868558884, 0.06073824688792229, -0.0581081286072731, -0.03287650644779205, -0.0022191640455275774, -0.03717236965894699, 0.00041314808186143637, 0.00617201579734683, 0.03650607168674469, 0.011116642504930496, -0.08339235186576843, 0.007136393338441849, 0.03671647980809212, 0.02531929314136505, 0.037873733788728714, -0.004707915708422661, -0.07476555556058884, 0.03710223361849785, 0.019901243969798088, -0.0059966747649014, -0.03431430459022522, -0.0599316768348217, -0.03401622548699379, -0.013185670599341393, -0.068558469414711, 0.026616819202899933, -0.0202519278973341, 0.004795586224645376, -0.024442585185170174, -0.03931153193116188, 0.03433183953166008, -0.04018824175000191, -0.05077885836362839, 0.010345140472054482, 0.002107383916154504, -0.0800257995724678, -0.056950874626636505, -0.06179029494524002, -0.00222793105058372, 0.08381316810846329, 0.05852894484996796, -0.002461354248225689, -0.0036690179258584976, 0.026932433247566223, 0.045132867991924286, -0.04401068016886711, -0.013159369118511677, -0.08023620396852493, -0.04092467203736305, 0.06505164504051208, 0.02023439295589924, 0.004821887239813805, 0.03962714597582817, -0.01846344582736492, 0.057617172598838806, 0.03457731753587723, -0.057617172598838806, -0.020479870960116386, -0.022338489070534706, -0.015333602204918861, 0.011765405535697937, 0.009319392964243889, 0.03804907575249672, 0.03738277778029442, -0.06592835485935211, 0.0005273939459584653, 0.03119322843849659, 0.02495107613503933, -0.03459484875202179, -0.06084345281124115, -0.029229404404759407, 0.03738277778029442, -0.052216656506061554, -0.012861289083957672, -0.02062014490365982, -0.020795485004782677, -0.024565324187278748, 0.0398375578224659, -0.04983201622962952, -0.09510515630245209, -0.020988360047340393, 0.060668110847473145, -0.008105154149234295, 0.017358794808387756, 0.041661106050014496, -0.009135284461081028, 0.07925429195165634, -0.05309336259961128, -0.020813019946217537, 0.031982265412807465, -0.08788108825683594, 0.04909558221697807, 0.029229404404759407, -0.00023698480799794197, -0.0361904576420784, -0.03675154969096184, 0.002133685164153576, -0.06284234672784805, -0.009170353412628174, 0.015272232703864574, 0.03994276374578476, -0.013194437138736248, 0.016701264306902885, 0.005299692507833242, 0.003956139553338289, 0.01076595950871706, -0.017691943794488907, 0.04488738998770714, 0.006768176332116127, -0.02991323545575142, 0.012607043609023094, 0.039206329733133316, -0.04418602213263512, 0.011905678547918797, -0.016420718282461166, -0.021356577053666115, -0.01709578186273575, -0.029439814388751984, 0.04657066613435745, -0.03334992751479149, -0.009713911451399326, 0.026318738237023354, -0.07034695148468018, 0.004262987058609724, -0.0008542411960661411, -0.04488738998770714, 0.009757746942341328, 0.08647835999727249, -0.00968760997056961, 0.012896357104182243, 0.014693605713546276, 0.021409180015325546, 0.1308046579360962, 0.017674408853054047, -0.024758199229836464, -0.007364337332546711, -0.0029260090086609125, -0.020497405901551247, -0.014790044166147709, 0.04327424615621567, 0.03839975968003273, -0.014842646196484566, -0.04562382027506828, 0.03206993639469147, -0.000470134022179991, -0.025161486119031906, 0.0049446262419223785, 0.045693960040807724, 0.05579362064599991, -0.0012964302441105247, -0.060668110847473145, 0.021654658019542694, -0.0052383230067789555, -0.006562150549143553, -0.060633040964603424, 0.02680969424545765, 0.0029610772617161274, 0.05144515633583069, 0.06294754892587662, 0.026073260232806206, -0.030000906437635422, 0.032245274633169174, 0.011283216997981071, -0.014413059689104557, -0.037908803671598434, -0.03720743581652641, 0.05607416853308678, 0.035436488687992096, 0.07532665133476257, -0.020409734919667244, 0.06550753116607666, -0.021917670965194702, -0.06073824688792229, 0.021023429930210114, -0.04043371602892876, -0.036295659840106964, 0.01514072623103857, 0.0400128997862339, -0.04236247390508652, 0.0264765452593565, -0.016596060246229172, 0.03057953342795372, -0.0009517748258076608, 0.010809794999659061, 0.026073260232806206, -0.02716037631034851, 0.04934106022119522, -0.007215296849608421, -0.05617937073111534, 0.036295659840106964, -0.08044661581516266, 0.06477110087871552, -0.018586184829473495, 0.01837577484548092, 0.0292995423078537, -0.01262457761913538, 0.030000906437635422, 0.0175166018307209, 0.023565879091620445, 0.05155035853385925, -0.017560437321662903, -0.026704490184783936, -0.018954401835799217, -0.02402176707983017, 0.005378596018999815, 0.002842721762135625, -0.018814127892255783, 0.02837023138999939, -0.0368567556142807, -0.008468987420201302, 0.015973597764968872, -0.04646546021103859, 0.06417493522167206, 0.061614952981472015, -0.035383887588977814, 0.01904207095503807, -0.02372368611395359, -0.010599385015666485, 0.01450073067098856, 0.045378345996141434, -0.021970272064208984, 0.00996815599501133, 0.013694160617887974, 0.0405038557946682, -0.026914898306131363, -0.04394054412841797, 0.03459484875202179, -0.05502212047576904, 0.06203577294945717, -0.03063213638961315, -0.02554723620414734, -0.03780359774827957, -0.009389529936015606, -0.030193781480193138, 0.011888144537806511, 0.003686552168801427, 0.03301677852869034, 0.023863960057497025, -0.05940565466880798, -0.010020758956670761, 0.05470650643110275, 0.016990577802062035, -0.0018925907788798213, 0.022917116060853004, 0.016482088714838028, -0.03808414191007614, 0.01777961477637291, 0.014141281135380268, -0.016087569296360016, -0.0400128997862339, 0.0069742025807499886, 0.017332494258880615, -0.005233939737081528, -0.055092256516218185, 0.019427822902798653, -0.011502393521368504, 0.013325943611562252, 0.06329823285341263, 0.013781830668449402, -0.015447573736310005, -0.02244369499385357, 0.024091903120279312, -0.016438253223896027, 0.04460684210062027, 0.040363579988479614, -0.04236247390508652, -0.006838313303887844, -0.03927646577358246, -0.060352496802806854, 0.0018169748364016414, 0.005225172732025385, -0.010187333449721336, -0.0499722883105278, 0.015359902754426003, -0.03084254451096058, 0.015508943237364292, 0.03252582252025604, 0.06680505722761154, -0.0012186224339529872, 0.028212424367666245, -0.0287209153175354, 0.0013304025633260608, 0.016464553773403168, 0.01077472697943449, 0.025705043226480484, -0.004234493710100651, 0.026704490184783936, 0.05617937073111534, -0.00023040951055008918, 0.04022330790758133, 0.018603717908263206, -0.01777961477637291, -0.020672746002674103, -0.01309799961745739, 0.027248047292232513, 0.03966221585869789, -0.015815790742635727, -0.023899028077721596, 0.008556658402085304, -0.028300095349550247, -0.03177185356616974, 0.010047060437500477, -0.019270015880465508, -0.007285433355718851, 0.020111653953790665, 0.02931707538664341, 0.06143961101770401, 0.009170353412628174, 0.08156879991292953, -0.01753413677215576, -0.0336129404604435, 0.06119413673877716, 0.05498705059289932, 0.0031671032775193453, -0.02062014490365982, -0.060001812875270844, -0.013071698136627674, 0.006334206555038691, -0.04530820623040199, -0.05449609458446503, 0.02119877003133297, 0.04586929827928543, 0.026353806257247925, -0.03086007945239544, -0.022583967074751854, 0.0065226987935602665, 0.007175845094025135, -0.011020204983651638, -0.01939275488257408, 0.01592976227402687, -0.025512168183922768, -0.047272030264139175, -0.03585730865597725, 0.04741230234503746, 0.03875043988227844, -0.013527586124837399, 0.03250828757882118, -0.015342368744313717, 0.0113708870485425, -0.02147931605577469, -0.02023439295589924, 0.047307100147008896, -0.007373104337602854, -0.02709024026989937, -0.026757091283798218, 0.005321610253304243, -0.0015243740053847432, 0.02063767798244953, -0.015508943237364292, 0.022583967074751854, 0.0292995423078537, -0.0448172502219677, 0.020497405901551247, 0.024267245084047318, -0.03334992751479149, 0.044431500136852264, 0.021111099049448967, 0.0060536605305969715, -0.001144102425314486, 0.014185115694999695, 0.010546782985329628, 0.04418602213263512, 0.007833375595510006, -0.052953090518713, -0.011028971523046494, -0.02658175118267536, -0.07427459955215454, -0.09166846424341202, 0.07771129161119461, 0.00968760997056961, 0.0064569455571472645, -0.034156497567892075, -0.137467622756958, 0.03401622548699379, 0.0341915637254715, 0.003664634423330426, 0.05077885836362839, -0.016105104237794876, 0.027020104229450226, 0.0017183453310281038, 0.020742883905768394, 0.019585629925131798, 0.04295863211154938, -0.010362674482166767, 0.005663525778800249, 0.009994457475841045, 0.00332271889783442, -0.027668867260217667, -0.020760416984558105, -0.01595606468617916, -0.03959207981824875, -0.030369123443961143, 0.051901042461395264, 0.024845870211720467, -0.06273713707923889, -0.0342792347073555, -0.00964377447962761, -0.012431702576577663, -0.014570866711437702, 0.039486873894929886, -0.001533141010440886, -0.027826674282550812, 0.05866922065615654, 0.011809241026639938, -0.01514072623103857, -0.04625505208969116, -0.0168503038585186, 0.11551488935947418, 0.002930392511188984, -0.013062931597232819, -0.0072065298445522785, -0.009336927905678749, -0.02616093121469021, -0.07476555556058884, 0.018551116809248924, 0.032245274633169174, 0.08696931600570679, -0.0077369376085698605, 0.0443262942135334, -0.03345513343811035, 0.034454576671123505, 0.05884455889463425, 0.031631581485271454, -0.018305638805031776, 0.023916561156511307, -0.009310626424849033, 0.01249307207763195, 0.03846989572048187, -0.03462991863489151, 0.024425052106380463, -0.028177356347441673, -0.0023999849800020456, 0.012414168566465378, 0.027931878343224525, -0.007890361361205578, 0.01649962179362774, 0.04986708238720894, -0.04706162214279175, 0.02214561402797699, -0.06203577294945717, 0.008942409418523312, -0.012037184089422226, 0.01184430904686451, 0.043239179998636246, 0.04373013600707054, 0.017604272812604904, -0.005435582250356674, 0.015245931223034859, -0.07259131968021393, -0.019462890923023224, -0.035383887588977814, -0.002371491864323616, -0.06284234672784805, -0.01969083398580551, 0.06256179511547089, -0.03180692344903946, 0.060668110847473145, 0.0007780772866681218, -0.03997782990336418, 0.020795485004782677, 0.015999898314476013, -0.1022590845823288, -0.02305738814175129, 0.04029344394803047, 0.013983473181724548, -0.01998891495168209, 0.020672746002674103, -0.008468987420201302, 0.035980045795440674, -0.010196099989116192, -0.00001447764861950418, -0.07469542324542999, -0.039767421782016754, -0.04941119626164436, -0.05091913044452667, -0.05968619883060455, 0.053514182567596436, 0.0026147780008614063, 0.07101324945688248, 0.020409734919667244, 0.05239199846982956, -0.01963823288679123, 0.0005224624765105546, 0.004153398331254721, 0.07581760734319687, -0.05056845024228096, -0.004164357203990221, 0.01962069794535637, 0.03892578184604645, -0.012107321061193943, -0.02966775745153427, -0.07301214337348938, 0.0461498461663723, -0.020392199978232384, -0.027949413284659386, 0.005233939737081528, -0.0036142237950116396, 0.04015317186713219, -0.053198568522930145, 0.04187151789665222, 0.03233294561505318, 0.002133685164153576, -0.003813674673438072, 0.03028145246207714, -0.07164447754621506, 0.035383887588977814, -0.004558875225484371, 0.0022597117349505424, -0.014702373184263706, 0.02684476226568222, 0.013659091666340828, -0.016368115320801735, 0.0029172420036047697, -0.031070489436388016, -0.03706716373562813, -0.10211880505084991, -0.018165364861488342, -0.0037829899229109287, 0.04187151789665222, 0.014886481687426567, 0.0037040861789137125, -0.0723809152841568, 0.05684566870331764, 0.026353806257247925, 0.010073360987007618, 0.022040409967303276, 0.00413148058578372, -0.012116087600588799, 0.08430412411689758, -0.056039098650217056, 0.05028790235519409, -0.04453670606017113, 0.01937521994113922, 0.03233294561505318, 0.0038180581759661436, -0.025406962260603905, -0.05982647091150284, 0.01683277077972889, -0.02153191901743412, 0.04264301806688309, -0.0234080720692873, 0.03811921179294586, -0.022899581119418144, -0.021286441013216972, -0.03839975968003273, -0.037908803671598434, -0.005247090011835098, -0.020181789994239807, 0.04751750826835632, -0.004192850086838007, 0.012422935105860233, 0.04271315410733223, 0.03769839182496071, -0.0027923111338168383, 0.020409734919667244, 0.04057399183511734, 0.004580792970955372, -0.011160477995872498, 0.028265027329325676, -0.009941855445504189, -0.028177356347441673, -0.03171925246715546, -0.0007298584096133709, 0.00003948605080950074, -0.030684737488627434, 0.06435027718544006, 0.021356577053666115, -0.050077494233846664, 0.023636015132069588, 0.03657620772719383, 0.0737135112285614, -0.01496538519859314, 0.04734216630458832, -0.03173678740859032, 0.020655212923884392, -0.0010021855123341084, -0.04723696410655975, -0.013851967640221119, 0.043554794043302536, -0.005426815245300531, -0.012922658585011959, 0.001416977378539741, -0.03892578184604645, -0.035681966692209244, -0.020076585933566093, 0.028896255418658257, -0.028826119378209114, 0.03910112380981445, -0.0031671032775193453, 0.012677180580794811, -0.01753413677215576, 0.043239179998636246, -0.008666247129440308, -0.006334206555038691, 0.01262457761913538, -0.0006284891860559583, 0.06312289088964462, 0.04593943804502487, -0.00035999773535877466, 0.0411701500415802, 0.023180127143859863, -0.013439915142953396, 0.03343759849667549, -0.025371894240379333, 0.048850104212760925, -0.0499722883105278, -0.021023429930210114, -0.05281281843781471, 0.00016273869550786912, 0.014053610153496265, 0.010730891488492489, -0.022338489070534706, -0.02651161327958107, 0.00249423086643219, 0.040047965943813324, -0.08739013224840164, -0.0032043633982539177, -0.009915553964674473, 0.011633899062871933, -0.030316520482301712, -0.0350332036614418, 0.019147276878356934, -0.06382425874471664, 0.005900236777961254, 0.033788278698921204, -0.0004153398622293025, -0.025108883157372475, -0.06715574115514755, -0.022005340084433556, -0.00048054492799565196, 0.003592306049540639, -0.05852894484996796, 0.01230896357446909, 0.0037391544319689274, -0.04295863211154938, -0.01776207983493805, 0.0349455326795578, -0.018936866894364357, 0.017604272812604904, -0.0234080720692873, -0.03959207981824875, -0.006408726796507835, -0.04373013600707054, -0.031684182584285736, -0.007241598330438137, -0.0056459917686879635, 0.005391746759414673, 0.026423942297697067, 0.04870982840657234, -0.029492417350411415, 0.0033621706534177065, 0.00032410756102763116, -0.028791051357984543, -0.03966221585869789, -0.05698594078421593, -0.009082682430744171, -0.044747114181518555, 0.03086007945239544, -0.009705143980681896, -0.04159097000956535, 0.0024701214861124754, 0.029387211427092552, -0.025424497202038765, -0.008933641947805882, 0.020164256915450096, -0.01495661772787571, -0.03741784766316414, -0.04376520216464996, -0.035769637674093246, 0.06045770272612572, 0.048464350402355194, 0.025143951177597046, -0.05968619883060455, 0.03612032160162926, -0.03608525171875954, -0.013457449153065681, -0.05670539662241936, 0.017990022897720337, 0.03256089240312576, -0.02833516336977482, 0.0006717765936627984, 0.04520300403237343, -0.03682168573141098, -0.041345492005348206, -0.0630878210067749, 0.00044931223965249956, -0.018656320869922638, 0.03578717261552811, -0.029790496453642845, 0.05740676075220108, -0.028966393321752548, 0.009950621984899044, -0.05186597630381584, 0.02866831235587597, 0.04187151789665222, 0.011765405535697937, 0.016920441761612892, 0.02430231310427189, 0.0007227351889014244, 0.05277774855494499, -0.014860180206596851, -0.006969819311052561, -0.012791152112185955, 0.027896810322999954, 0.08591726422309875, -0.017884818837046623, -0.053864866495132446, 0.0008219126029871404, -0.02123383805155754, -0.004589559976011515, 0.029843099415302277, 0.020462336018681526, 0.008986244909465313, -0.004541341215372086, 0.021935204043984413, 0.020970826968550682, -0.010204867459833622, 0.06845326721668243, 0.0654023289680481, -0.026108328253030777, -0.02495107613503933, 0.002965460764244199, -0.021935204043984413, 0.017954954877495766, 0.08563672006130219, -0.032578423619270325, 0.011142943054437637, 0.030176248401403427, 0.012265128083527088, 0.007430090103298426, 0.005667909514158964, 0.006435027811676264, 0.042292337864637375, -0.005619690753519535, 0.06705053895711899, 0.001532045193016529, -0.008315564133226871, 0.03741784766316414, 0.007912279106676579, 0.03892578184604645, 0.02687983028590679, -0.03899591788649559, 0.02305738814175129, 0.009599939920008183, 0.021619589999318123, -0.029509950429201126, -0.01872645691037178, 0.03235048055648804, -0.04341452196240425, 0.01650838926434517, 0.05032297223806381, 0.021356577053666115, -0.017648108303546906, -0.05530266463756561, -0.04145069792866707, 0.02654668129980564, 0.04015317186713219, -0.052216656506061554, 0.06501657515764236, -0.042888496071100235, -0.008065702393651009 ]
344
funcsigs
replace
Creates a customized copy of the Parameter.
def replace(self, name=_void, kind=_void, annotation=_void, default=_void, _partial_kwarg=_void): '''Creates a customized copy of the Parameter.''' if name is _void: name = self._name if kind is _void: kind = self._kind if annotation is _void: annotation = self._annotation if default is _void: default = self._default if _partial_kwarg is _void: _partial_kwarg = self._partial_kwarg return type(self)(name, kind, default=default, annotation=annotation, _partial_kwarg=_partial_kwarg)
(self, name=<class 'funcsigs._void'>, kind=<class 'funcsigs._void'>, annotation=<class 'funcsigs._void'>, default=<class 'funcsigs._void'>, _partial_kwarg=<class 'funcsigs._void'>)
[ 0.04757272079586983, -0.06937403231859207, 0.024385297670960426, -0.020808786153793335, -0.07009276002645493, -0.03713410347700119, 0.0034695572685450315, -0.005321984179317951, 0.06352156400680542, -0.01759163849055767, -0.016530664637684822, -0.01829325035214424, -0.06471943110227585, -0.00828672293573618, -0.026558583602309227, 0.05089254304766655, 0.012911372818052769, 0.04014590010046959, -0.05486264079809189, -0.033951178193092346, 0.05133746936917305, 0.03829775005578995, -0.05838781222701073, -0.021356387063860893, 0.04801764339208603, 0.02645590901374817, 0.027243083342909813, -0.028064481914043427, -0.019850486889481544, -0.009668556042015553, 0.033574704080820084, -0.018207687884569168, 0.013270735740661621, 0.0498315691947937, 0.0571899376809597, -0.016205526888370514, -0.04839412122964859, 0.0987732857465744, -0.024573534727096558, -0.026267671957612038, 0.010130593553185463, -0.03867422416806221, -0.042370524257421494, -0.05438349023461342, 0.02587408386170864, 0.03386561572551727, 0.06157073751091957, 0.043705299496650696, 0.009360531345009804, 0.03528595343232155, 0.027790682390332222, 0.010344499722123146, -0.03268485516309738, 0.005005402956157923, -0.04589569568634033, 0.011944517493247986, 0.056505441665649414, 0.11013597995042801, 0.021647298708558083, 0.03431054204702377, 0.02120237424969673, -0.02009006217122078, 0.01365576684474945, -0.06352156400680542, -0.02428262308239937, -0.003687741467729211, -0.008787263184785843, -0.037339452654123306, -0.005929477512836456, 0.06779967993497849, -0.01595739647746086, -0.010370168834924698, 0.011568042449653149, 0.030152205377817154, 0.03444744274020195, 0.02734575793147087, -0.0017764902440831065, -0.064890556037426, 0.039427176117897034, -0.04808609560132027, 0.0007909178384579718, 0.009856794029474258, -0.018789513036608696, -0.011670717969536781, -0.02763666957616806, -0.02645590901374817, -0.07433665543794632, -0.06807348132133484, 0.048941720277071, -0.04791497066617012, -0.04288389906287193, 0.008012923412024975, 0.012996935285627842, 0.021031249314546585, 0.024590646848082542, -0.03716832771897316, 0.03054579347372055, -0.06393226236104965, 0.058422040194272995, -0.019268663600087166, -0.00903539452701807, -0.010772312059998512, -0.024778883904218674, -0.04209672287106514, 0.06612265855073929, -0.0244708601385355, 0.0628712847828865, 0.03778437525033951, -0.050208043307065964, 0.03436188027262688, 0.012894260697066784, -0.02885165624320507, -0.07556875050067902, 0.03798972815275192, -0.004962621722370386, 0.01370710413902998, -0.0580797903239727, -0.017779875546693802, 0.025446271523833275, 0.009719894267618656, -0.04935241863131523, 0.008530575782060623, -0.0476069450378418, -0.015093215741217136, 0.023426998406648636, 0.03326667845249176, 0.024077272042632103, 0.03432765230536461, -0.008509185165166855, -0.01541835255920887, 0.00010060272325063124, 0.0000059743310885096435, -0.0628712847828865, 0.008243941701948643, 0.017506076022982597, -0.018122125416994095, 0.00883004441857338, 0.011379805393517017, -0.01854993775486946, 0.03492658957839012, -0.03655227646231651, -0.008898494765162468, 0.03213725611567497, 0.043705299496650696, 0.03241105377674103, -0.0627686083316803, 0.06951092928647995, -0.00949743203818798, -0.053151391446590424, -0.006353011820465326, 0.00006965317879803479, 0.034276317805051804, -0.008256776258349419, 0.0013219397515058517, 0.00033128709765151143, 0.010806537233293056, 0.021955324336886406, -0.04486894607543945, -0.060338638722896576, -0.0150504345074296, 0.027243083342909813, -0.026507245376706123, -0.000737441354431212, -0.022400248795747757, 0.06417183578014374, 0.010917767882347107, 0.04219939932227135, 0.013501754030585289, 0.03407096490263939, -0.007816129364073277, -0.020706111565232277, -0.02315319888293743, 0.03668917715549469, 0.05671079084277153, 0.02590830810368061, 0.0996631383895874, -0.013424747623503208, -0.047230470925569534, 0.05250111594796181, 0.012765916995704174, 0.05729261413216591, -0.010276050306856632, 0.0002506712335161865, -0.019234437495470047, 0.02907411940395832, 0.019953163340687752, 0.015195890329778194, 0.0484967939555645, -0.010541293770074844, -0.01197874266654253, 0.07077725231647491, 0.01260334812104702, 0.01529000885784626, 0.02130504883825779, -0.04000899940729141, -0.051132116466760635, -0.006109158508479595, 0.01685580238699913, 0.02421417273581028, 0.051132116466760635, 0.020637663081288338, -0.017061151564121246, -0.0033904118463397026, 0.0022973516024649143, 0.019268663600087166, 0.024128610268235207, 0.04993424564599991, -0.026370346546173096, -0.02315319888293743, -0.03025488182902336, 0.0036128743086010218, 0.02108258754014969, 0.024094384163618088, -0.013048273511230946, -0.01788255199790001, -0.07372060418128967, -0.029673056676983833, -0.0011829008581116796, 0.006498467642813921, 0.05325406789779663, 0.060407087206840515, 0.0009823638247326016, -0.004355128388851881, -0.008723091334104538, 0.03908492624759674, -0.0064727989956736565, 0.019816262647509575, -0.07974419742822647, -0.004992568865418434, -0.03826352581381798, -0.0301008690148592, -0.0637611374258995, -0.009206519462168217, 0.012552010826766491, -0.007508104667067528, -0.009428981691598892, -0.0010304927127435803, -0.040864624083042145, -0.05866161361336708, 0.002337993821129203, 0.01873817667365074, 0.02501845918595791, -0.009360531345009804, 0.08775284886360168, -0.040693499147892, -0.015632258728146553, -0.09747274219989777, 0.06057821214199066, 0.07255695760250092, -0.025258034467697144, 0.002005369868129492, 0.01549535896629095, -0.0610915869474411, 0.03833197429776192, -0.004735881462693214, 0.03463567793369293, -0.04798341915011406, -0.01529000885784626, 0.017223721370100975, 0.016102852299809456, 0.0037839992437511683, -0.006348733324557543, 0.021886873990297318, 0.03535440191626549, 0.06013328582048416, -0.022177785634994507, -0.03970097377896309, -0.02207511104643345, 0.022160673514008522, 0.002374358009546995, 0.003818224184215069, 0.01583760976791382, 0.010797981172800064, -0.019679361954331398, 0.0068321614526212215, -0.0251382477581501, -0.004885615780949593, 0.018703950569033623, 0.026815271005034447, -0.0338313914835453, 0.06910023093223572, -0.03559397906064987, 0.04195982217788696, -0.002579707885161042, -0.006922001950442791, 0.00859047006815672, 0.012286767363548279, 0.04685399681329727, -0.030374668538570404, 0.00432518171146512, -0.015332790091633797, 0.034875255078077316, -0.013339185155928135, 0.05174816772341728, 0.004263149108737707, 0.05968836322426796, -0.058045562356710434, 0.04305502399802208, -0.0019444066565483809, -0.016736013814806938, 0.011456811800599098, -0.05181661620736122, -0.01529000885784626, 0.02149328589439392, 0.028167158365249634, -0.0015337069053202868, 0.007867466658353806, -0.0363469272851944, -0.03538862615823746, 0.03805817663669586, 0.03829775005578995, 0.009925243444740772, -0.04110420122742653, -0.02142483741044998, 0.07645860314369202, -0.022109337151050568, 0.06513013690710068, -0.0537332147359848, 0.0381266251206398, 0.03778437525033951, 0.006246058735996485, -0.08576779812574387, -0.07775915414094925, -0.05564981698989868, 0.021133923903107643, -0.04695666953921318, -0.05421236529946327, 0.03389983996748924, -0.012894260697066784, 0.03562820330262184, -0.04261009767651558, 0.0035080602392554283, -0.01810501329600811, 0.008966944180428982, -0.06653335690498352, -0.05431504175066948, -0.011208680458366871, 0.006639645900577307, -0.013570204377174377, -0.019234437495470047, 0.03386561572551727, 0.02542915940284729, -0.053048718720674515, 0.01503332145512104, -0.029758619144558907, 0.03268485516309738, 0.0032021745573729277, -0.02660992182791233, 0.10185353457927704, -0.027585333213210106, -0.0020609854254871607, -0.05818246304988861, 0.02207511104643345, 0.0363469272851944, 0.06821038573980331, -0.013878229074180126, 0.040830399841070175, 0.013467528857290745, -0.034396104514598846, -0.10103213787078857, 0.019662249833345413, 0.003833197522908449, 0.02027829922735691, 0.018789513036608696, 0.09288658946752548, 0.03528595343232155, -0.03167521953582764, 0.013022604398429394, -0.03083670511841774, 0.00010394500714028254, -0.008855713531374931, -0.03223992884159088, 0.0022417360451072454, -0.04541654512286186, -0.022725386545062065, -0.020997025072574615, -0.029262356460094452, -0.0043358770199120045, -0.05736106261610985, -0.08255065232515335, 0.03911915048956871, 0.0002421149838482961, 0.03535440191626549, 0.031812116503715515, -0.008547688834369183, -0.014682515524327755, 0.02133927494287491, 0.00005220646198722534, 0.03184634447097778, -0.007512382697314024, -0.05660811439156532, -0.01931999996304512, 0.008419345133006573, 0.006074933800846338, 0.025001347064971924, 0.00003803518120548688, -0.024676209315657616, 0.0031444199848920107, -0.052672240883111954, 0.011054668575525284, 0.021886873990297318, -0.03176078200340271, 0.005523055791854858, 0.0244708601385355, -0.0033283792436122894, -0.03576510399580002, 0.08036024868488312, 0.05623164027929306, -0.0063273427076637745, 0.014913534745573997, -0.03754480183124542, 0.012380885891616344, -0.03028910607099533, -0.024898672476410866, 0.08474104851484299, 0.027328645810484886, 0.04555344581604004, -0.0018353144405409694, -0.0019187378929927945, -0.027842020615935326, -0.026079433038830757, -0.0001385042123729363, 0.019439788535237312, 0.07248850166797638, 0.009129513055086136, 0.05715571343898773, 0.01788255199790001, -0.013493197970092297, -0.03253084048628807, -0.033335130661726, -0.03976942598819733, -0.009343419224023819, 0.01769431307911873, 0.01657344587147236, 0.04397909715771675, -0.015521028079092503, 0.02315319888293743, -0.04411599785089493, -0.004889893811196089, 0.015358459204435349, 0.0033968291245400906, -0.00803003553301096, -0.0035850664135068655, -0.0003962610790040344, -0.06516435742378235, 0.008560522459447384, -0.0771431028842926, 0.03237682953476906, -0.004389353562146425, -0.04699089750647545, 0.058011338114738464, 0.04948931932449341, 0.06311085820198059, -0.040830399841070175, 0.02568584680557251, -0.09131224453449249, -0.06913445889949799, -0.06927135586738586, 0.027277307584881783, -0.04901016876101494, 0.04507429525256157, 0.007717732805758715, 0.013869673013687134, -0.01036161184310913, -0.009625774808228016, -0.00009151171252597123, 0.03367738053202629, -0.05756641551852226, -0.032736193388700485, -0.029946856200695038, 0.046648647636175156, -0.03253084048628807, 0.0038631444331258535, -0.030956493690609932, -0.0188408512622118, 0.02999819442629814, 0.0017700730822980404, 0.050618741661310196, -0.012406555004417896, 0.022571373730897903, -0.0083337826654315, -0.0029369310941547155, -0.0037390789948403835, 0.07392595708370209, -0.015375571325421333, 0.02296495996415615, -0.004979734309017658, 0.039324499666690826, -0.02635323442518711, 0.05920921266078949, -0.036415375769138336, 0.0498315691947937, -0.013270735740661621, 0.023598123341798782, -0.02984418161213398, 0.0005754074663855135, 0.015820495784282684, -0.028218494728207588, 0.0054246592335402966, 0.002825699746608734, -0.018892187625169754, -0.08809509873390198, -0.011730611324310303, -0.007790460716933012, 0.05725838989019394, -0.11492747813463211, -0.007858910597860813, 0.02031252533197403, -0.044252898544073105, 0.0476069450378418, -0.03477257862687111, -0.01979915052652359, 0.028697645291686058, -0.004778662696480751, 0.03460145369172096, -0.02539493329823017, -0.005108078010380268, -0.0032385385129600763, -0.043260373175144196, -0.0810447484254837, 0.013048273511230946, 0.016710346564650536, 0.0038075288757681847, -0.02086012437939644, 0.027653783559799194, 0.01902908831834793, 0.016162745654582977, -0.034687016159296036, 0.016650451347231865, -0.022879397496581078, 0.002129435306414962, -0.044287122786045074, -0.015375571325421333, -0.02465909719467163, 0.03569665178656578, 0.027294419705867767, -0.027003508061170578, 0.01707826368510723, -0.0044107441790401936, -0.015469690784811974, -0.019114650785923004, 0.016162745654582977, -0.030374668538570404, 0.03270196542143822, -0.024967122822999954, 0.04302079975605011, -0.04151489958167076, -0.011610823683440685, 0.0023208814673125744, -0.04062505066394806, -0.031264517456293106, -0.007807573303580284, -0.07529495656490326, 0.020449424162507057, -0.06311085820198059, 0.029604606330394745, 0.011533818207681179, 0.003140141721814871, 0.0031914792489260435, 0.05345941707491875, 0.03297576680779457, 0.03492658957839012, 0.09952624142169952, 0.013715660199522972, -0.006156218238174915, 0.023649459704756737, -0.0158033836632967, -0.002896288875490427, -0.016787352040410042, 0.015965953469276428, 0.05092676728963852, -0.03285598009824753, 0.041891373693943024, 0.014870753511786461, -0.010207599960267544, 0.03172655403614044, 0.06690983474254608, 0.009189406409859657, -0.09405024349689484, -0.033951178193092346, -0.03389983996748924, 0.015272896736860275, -0.020552100613713264, -0.053082942962646484, -0.051577042788267136, 0.024316847324371338, -0.013031160458922386, 0.0429181233048439, 0.030819592997431755, -0.004979734309017658, -0.019371338188648224, 0.07543185353279114, -0.0029198185075074434, -0.038879577070474625, -0.031264517456293106, 0.05092676728963852, -0.027756458148360252, -0.03345491737127304, 0.02104836143553257, -0.0006951948744244874, -0.03621002659201622, -0.02436818554997444, -0.017215164378285408, 0.08166079968214035, 0.007777626626193523, 0.0041840034537017345, -0.03833197429776192, 0.007867466658353806, 0.029981080442667007, 0.003223565174266696, 0.047641169279813766, -0.011294242925941944, 0.015135996975004673, -0.013801222667098045, -0.018892187625169754, 0.03282175585627556, -0.03829775005578995, 0.0301008690148592, -0.018241913989186287, -0.029193906113505363, -0.05623164027929306, 0.0415833480656147, -0.013758441433310509, -0.0038438928313553333, -0.03870845213532448, -0.03881112486124039, -0.03757902607321739, -0.031486980617046356, -0.003424637019634247, 0.016145633533596992, 0.006348733324557543, -0.008201160468161106, -0.009694225154817104, 0.018019450828433037, -0.04445824772119522, 0.005946590099483728, -0.02178419940173626, -0.01660767011344433, -0.030665580183267593, 0.04018012434244156, 0.05147436633706093, -0.01595739647746086, 0.04165180027484894, 0.03460145369172096, -0.010404393076896667, -0.02520669624209404, -0.0003839614801108837, -0.04014590010046959, -0.01724083349108696, -0.015187334269285202, -0.02075744979083538, 0.06167341023683548, 0.009505988098680973, -0.006755155045539141, 0.06783390790224075, -0.008252497762441635, 0.005570115055888891, 0.032445278018713, 0.06304240971803665, -0.023170311003923416, -0.03915337473154068, -0.03518327698111534, 0.011525261215865612, 0.010181930847465992, 0.02086012437939644, 0.038913801312446594, -0.041891373693943024, -0.06280283629894257, -0.00940331257879734, -0.026763932779431343, -0.026661258190870285, -0.0006962643819861114, -0.018857963383197784, 0.010549849830567837, -0.015760602429509163, -0.06927135586738586, -0.0010935950558632612, 0.003617152338847518, 0.01492209080606699, 0.02856074459850788, -0.007533773314207792, -0.06054398790001869, 0.005792577750980854, -0.006631089840084314, -0.038400426506996155, 0.05784021317958832, -0.038879577070474625, -0.02866341918706894, 0.017138158902525902, -0.013553091324865818, 0.01935422606766224, -0.05024226754903793, 0.009206519462168217, 0.013630097731947899, -0.024351071566343307, 0.0012481422163546085, -0.016162745654582977, -0.06735476106405258, 0.018156351521611214, 0.030169319361448288, 0.003694158745929599, 0.009950912557542324, -0.0528433658182621, -0.009488875046372414, 0.01280869822949171, 0.03389983996748924, 0.03321534022688866, -0.04853101819753647, 0.0216815248131752, -0.0411384254693985, 0.03747635334730148, 0.023837696760892868, 0.00895838811993599, -0.005762630607932806, 0.018190575763583183, 0.030083756893873215, -0.025891195982694626, -0.053596317768096924, 0.015272896736860275, 0.024008821696043015, 0.018378812819719315, -0.008184048347175121, 0.04510852321982384, -0.004397909622639418, 0.023067636415362358, 0.029193906113505363, -0.027773570269346237, -0.04781229421496391, 0.02120237424969673, -0.004258870612829924, 0.047196246683597565, 0.09350264072418213, -0.012646129354834557, -0.03532017767429352, 0.011354136280715466, -0.027739346027374268, 0.05185084417462349, 0.02594253420829773, -0.026849495247006416, 0.008821488358080387, -0.05920921266078949, 0.07522650063037872, 0.002949765417724848, 0.04401332139968872, 0.030271993950009346, 0.029022781178355217, 0.018344588577747345, -0.026815271005034447, 0.02491578459739685, 0.04661441966891289, 0.0012513507390394807, 0.019628025591373444, -0.0009989415993914008, 0.04743582010269165, 0.049078620970249176, -0.07173555344343185, 0.027653783559799194, 0.09138069301843643, 0.00803003553301096, -0.02856074459850788, -0.07858055084943771, 0.0008882451220415533, 0.009437537752091885, 0.0012192648136988282, -0.027756458148360252, 0.07474735379219055, 0.01938845030963421, 0.014263260178267956 ]
345
funcsigs
Signature
A Signature object represents the overall signature of a function. It stores a Parameter object for each parameter accepted by the function, as well as information specific to the function itself. A Signature object has the following public attributes and methods: * parameters : OrderedDict An ordered mapping of parameters' names to the corresponding Parameter objects (keyword-only arguments are in the same order as listed in `code.co_varnames`). * return_annotation : object The annotation for the return type of the function if specified. If the function has no annotation for its return type, this attribute is not set. * bind(*args, **kwargs) -> BoundArguments Creates a mapping from positional and keyword arguments to parameters. * bind_partial(*args, **kwargs) -> BoundArguments Creates a partial mapping from positional and keyword arguments to parameters (simulating 'functools.partial' behavior.)
class Signature(object): '''A Signature object represents the overall signature of a function. It stores a Parameter object for each parameter accepted by the function, as well as information specific to the function itself. A Signature object has the following public attributes and methods: * parameters : OrderedDict An ordered mapping of parameters' names to the corresponding Parameter objects (keyword-only arguments are in the same order as listed in `code.co_varnames`). * return_annotation : object The annotation for the return type of the function if specified. If the function has no annotation for its return type, this attribute is not set. * bind(*args, **kwargs) -> BoundArguments Creates a mapping from positional and keyword arguments to parameters. * bind_partial(*args, **kwargs) -> BoundArguments Creates a partial mapping from positional and keyword arguments to parameters (simulating 'functools.partial' behavior.) ''' __slots__ = ('_return_annotation', '_parameters') _parameter_cls = Parameter _bound_arguments_cls = BoundArguments empty = _empty def __init__(self, parameters=None, return_annotation=_empty, __validate_parameters__=True): '''Constructs Signature from the given list of Parameter objects and 'return_annotation'. All arguments are optional. ''' if parameters is None: params = OrderedDict() else: if __validate_parameters__: params = OrderedDict() top_kind = _POSITIONAL_ONLY for idx, param in enumerate(parameters): kind = param.kind if kind < top_kind: msg = 'wrong parameter order: {0} before {1}' msg = msg.format(top_kind, param.kind) raise ValueError(msg) else: top_kind = kind name = param.name if name is None: name = str(idx) param = param.replace(name=name) if name in params: msg = 'duplicate parameter name: {0!r}'.format(name) raise ValueError(msg) params[name] = param else: params = OrderedDict(((param.name, param) for param in parameters)) self._parameters = params self._return_annotation = return_annotation @classmethod def from_function(cls, func): '''Constructs Signature for the given python function''' if not isinstance(func, types.FunctionType): raise TypeError('{0!r} is not a Python function'.format(func)) Parameter = cls._parameter_cls # Parameter information. func_code = func.__code__ pos_count = func_code.co_argcount arg_names = func_code.co_varnames positional = tuple(arg_names[:pos_count]) keyword_only_count = getattr(func_code, 'co_kwonlyargcount', 0) keyword_only = arg_names[pos_count:(pos_count + keyword_only_count)] annotations = getattr(func, '__annotations__', {}) defaults = func.__defaults__ kwdefaults = getattr(func, '__kwdefaults__', None) if defaults: pos_default_count = len(defaults) else: pos_default_count = 0 parameters = [] # Non-keyword-only parameters w/o defaults. non_default_count = pos_count - pos_default_count for name in positional[:non_default_count]: annotation = annotations.get(name, _empty) parameters.append(Parameter(name, annotation=annotation, kind=_POSITIONAL_OR_KEYWORD)) # ... w/ defaults. for offset, name in enumerate(positional[non_default_count:]): annotation = annotations.get(name, _empty) parameters.append(Parameter(name, annotation=annotation, kind=_POSITIONAL_OR_KEYWORD, default=defaults[offset])) # *args if func_code.co_flags & 0x04: name = arg_names[pos_count + keyword_only_count] annotation = annotations.get(name, _empty) parameters.append(Parameter(name, annotation=annotation, kind=_VAR_POSITIONAL)) # Keyword-only parameters. for name in keyword_only: default = _empty if kwdefaults is not None: default = kwdefaults.get(name, _empty) annotation = annotations.get(name, _empty) parameters.append(Parameter(name, annotation=annotation, kind=_KEYWORD_ONLY, default=default)) # **kwargs if func_code.co_flags & 0x08: index = pos_count + keyword_only_count if func_code.co_flags & 0x04: index += 1 name = arg_names[index] annotation = annotations.get(name, _empty) parameters.append(Parameter(name, annotation=annotation, kind=_VAR_KEYWORD)) return cls(parameters, return_annotation=annotations.get('return', _empty), __validate_parameters__=False) @property def parameters(self): try: return types.MappingProxyType(self._parameters) except AttributeError: return OrderedDict(self._parameters.items()) @property def return_annotation(self): return self._return_annotation def replace(self, parameters=_void, return_annotation=_void): '''Creates a customized copy of the Signature. Pass 'parameters' and/or 'return_annotation' arguments to override them in the new copy. ''' if parameters is _void: parameters = self.parameters.values() if return_annotation is _void: return_annotation = self._return_annotation return type(self)(parameters, return_annotation=return_annotation) def __hash__(self): msg = "unhashable type: '{0}'".format(self.__class__.__name__) raise TypeError(msg) def __eq__(self, other): if (not issubclass(type(other), Signature) or self.return_annotation != other.return_annotation or len(self.parameters) != len(other.parameters)): return False other_positions = dict((param, idx) for idx, param in enumerate(other.parameters.keys())) for idx, (param_name, param) in enumerate(self.parameters.items()): if param.kind == _KEYWORD_ONLY: try: other_param = other.parameters[param_name] except KeyError: return False else: if param != other_param: return False else: try: other_idx = other_positions[param_name] except KeyError: return False else: if (idx != other_idx or param != other.parameters[param_name]): return False return True def __ne__(self, other): return not self.__eq__(other) def _bind(self, args, kwargs, partial=False): '''Private method. Don't use directly.''' arguments = OrderedDict() parameters = iter(self.parameters.values()) parameters_ex = () arg_vals = iter(args) if partial: # Support for binding arguments to 'functools.partial' objects. # See 'functools.partial' case in 'signature()' implementation # for details. for p
(parameters=None, return_annotation=<class 'funcsigs._empty'>, __validate_parameters__=True)
[ 0.015471220016479492, -0.06291218847036362, 0.005069752223789692, 0.03125063329935074, -0.01787511445581913, -0.016056783497333527, -0.04092784970998764, 0.011844831518828869, 0.05198165774345398, -0.022806180641055107, -0.033736709505319595, 0.013950807973742485, -0.017073817551136017, -0.006117604207247496, -0.06677485257387161, 0.03166155517101288, 0.03521602973341942, 0.056378524750471115, -0.043968673795461655, -0.04651639237999916, 0.007694517727941275, 0.027737246826291084, 0.00041734284604899585, 0.02933984436094761, -0.00379589363001287, -0.017782658338546753, 0.036674804985523224, -0.004918225109577179, 0.04495488852262497, -0.00171431596390903, -0.022087067365646362, -0.03104517050087452, 0.03334633633494377, 0.03365452587604523, 0.028291992843151093, -0.037065181881189346, 0.005912142805755138, 0.06582973152399063, -0.02163505367934704, -0.018049756065011024, -0.0447494275867939, -0.03636661171913147, 0.010016228072345257, -0.039736174046993256, 0.04150313884019852, 0.03383944183588028, 0.012707768939435482, 0.0766780823469162, -0.041441503912210464, -0.005552586168050766, 0.041379865258932114, -0.042324986308813095, 0.03786648064851761, -0.02646338939666748, -0.022395258769392967, 0.02093648537993431, 0.06891164928674698, 0.051940564066171646, 0.0012045156909152865, 0.022559627890586853, 0.040558017790317535, 0.052022747695446014, 0.010093276388943195, -0.018840782344341278, -0.005799139384180307, -0.019600987434387207, -0.042530447244644165, -0.06024119257926941, -0.003962830640375614, 0.03299705311655998, 0.006235744338482618, -0.02681267261505127, 0.017361462116241455, 0.03505166247487068, 0.016467707231640816, -0.024182770401239395, -0.04709168151021004, -0.015368489548563957, 0.05436500534415245, -0.03412708640098572, 0.022271981462836266, -0.037352826446294785, -0.029154928401112556, -0.03464074060320854, -0.007643152493983507, 0.019210612401366234, -0.05670726299285889, 0.012954321689903736, 0.04754369705915451, -0.0009977704612538218, -0.07166482508182526, 0.055022481828927994, 0.0014600579161196947, 0.03963344544172287, 0.007201411295682192, -0.05428282171487808, 0.008814280852675438, -0.0747467428445816, 0.012861864641308784, -0.006097057834267616, -0.009117336012423038, 0.03139445558190346, -0.01456719171255827, 0.007191138342022896, 0.025559360161423683, -0.000012740995771309827, -0.004404572304338217, 0.0039731040596961975, 0.014957567676901817, 0.003336174413561821, 0.013858350925147533, -0.03766101971268654, -0.0212857685983181, 0.00484117679297924, 0.009672081097960472, -0.022148706018924713, -0.013457701541483402, -0.029832949861884117, -0.03293541446328163, 0.02366911806166172, 0.01610814966261387, 0.020689932629466057, -0.04290027543902397, 0.018337402492761612, 0.0133036058396101, -0.007139773108065128, 0.04189351573586464, 0.04053747281432152, -0.007596923969686031, -0.06451478600502014, 0.01869696006178856, 0.014248726889491081, -0.04098948836326599, 0.04343447461724281, 0.01684780977666378, -0.023854032158851624, 0.02033037506043911, 0.019395526498556137, -0.10733287781476974, 0.02831253781914711, 0.02510734461247921, 0.042119525372982025, 0.03798975422978401, 0.0045329853892326355, -0.005788866430521011, -0.03334633633494377, 0.02366911806166172, -0.07071970403194427, -0.009949453175067902, -0.02714141085743904, 0.004771833773702383, -0.025353899225592613, 0.002347392961382866, 0.02502516098320484, -0.03427090868353844, -0.045817822217941284, 0.03916088491678238, -0.07088407874107361, -0.04939284548163414, -0.0006394976517185569, -0.01170100923627615, -0.058145489543676376, 0.00625629024580121, -0.0856361836194992, 0.02278563566505909, 0.010550427250564098, 0.011300359852612019, -0.020998124033212662, -0.03992109000682831, -0.004232498351484537, -0.022456897422671318, 0.034353096038103104, 0.02039201371371746, 0.027922162786126137, 0.037907570600509644, 0.09007414430379868, -0.01596432738006115, 0.017926480621099472, -0.007047315593808889, -0.045735638588666916, 0.09936098754405975, -0.03868832439184189, -0.03944852948188782, -0.015779411420226097, 0.06048774719238281, 0.024326592683792114, -0.019457165151834488, 0.03609951213002205, 0.02510734461247921, 0.004946475848555565, 0.00025843153707683086, 0.00955394096672535, 0.049351755529642105, 0.004014195874333382, -0.022189797833561897, 0.01794702559709549, -0.04113331064581871, 0.05066670477390289, 0.03427090868353844, 0.03299705311655998, 0.015882141888141632, -0.03562695160508156, 0.0044405278749763966, -0.013108417391777039, -0.011937289498746395, 0.011125718243420124, 0.029237113893032074, 0.018460679799318314, -0.02360747940838337, -0.04043474420905113, -0.003991081845015287, -0.0684596374630928, 0.025189530104398727, 0.0033798350486904383, -0.003962830640375614, -0.10166215151548386, 0.0512830875813961, 0.0027172230184078217, 0.025004614144563675, -0.01002650149166584, 0.13116635382175446, -0.0046254429034888744, -0.02763451635837555, -0.004445664584636688, 0.03213411569595337, -0.019826995208859444, 0.06283000111579895, -0.023484202101826668, 0.025682635605335236, -0.056994907557964325, 0.008377675898373127, -0.023566387593746185, 0.009646398015320301, 0.030264418572187424, 0.0025400128215551376, -0.0532144233584404, 0.04877646267414093, -0.03620224446058273, -0.017484739422798157, -0.0553923100233078, 0.005978917703032494, 0.021676145493984222, 0.0025682635605335236, 0.0809105783700943, -0.08070511370897293, -0.02395676262676716, 0.008526635356247425, 0.08086948841810226, 0.049968138337135315, 0.012995414435863495, -0.024532053619623184, 0.019200339913368225, -0.05465264990925789, 0.012851591221988201, -0.032914865761995316, 0.018676413223147392, -0.008100303821265697, 0.01944689266383648, 0.02006327547132969, 0.03036714904010296, 0.010514471679925919, 0.001701474655419588, 0.01425899937748909, 0.07154155522584915, 0.04466724023222923, -0.012060565873980522, 0.02012491412460804, -0.026422295719385147, -0.022970549762248993, 0.02299109660089016, 0.08851263672113419, -0.0051468005403876305, 0.00306137022562325, -0.018953785300254822, -0.02161450684070587, -0.013087871484458447, 0.008007845841348171, -0.013889170251786709, -0.0024603966157883406, -0.019148973748087883, 0.08892355859279633, -0.0469273142516613, 0.02122412994503975, 0.0039011924527585506, 0.007632879540324211, 0.06114521995186806, 0.0048771328292787075, 0.010786707513034344, 0.015008932910859585, -0.027716701850295067, 0.017638834193348885, -0.00153967400547117, 0.08226662129163742, 0.005660452879965305, 0.047790251672267914, 0.0309013482183218, -0.055433403700590134, -0.026792125776410103, 0.02913438342511654, -0.07371944189071655, 0.029113836586475372, 0.04166750982403755, 0.07770538330078125, -0.006733987480401993, 0.05066670477390289, -0.043146830052137375, 0.008655048906803131, -0.025353899225592613, -0.04024982824921608, 0.007982163690030575, -0.0018221830250695348, 0.04536581039428711, -0.022826727479696274, -0.036448799073696136, 0.02681267261505127, 0.0032976504880934954, 0.034147635102272034, -0.06188488006591797, 0.03075752593576908, 0.07840394973754883, 0.028970014303922653, -0.011957835406064987, 0.002267776755616069, -0.05046124383807182, 0.033017598092556, -0.04285918548703194, -0.04672185331583023, 0.0036315247416496277, -0.030736979097127914, 0.007771565578877926, -0.03607896715402603, 0.011372270993888378, 0.00010690397175494581, 0.028333084657788277, -0.03453800827264786, -0.007468510884791613, -0.0038241446018218994, 0.012974867597222328, -0.008485543541610241, -0.0553923100233078, 0.03501056879758835, -0.03227793797850609, -0.02366911806166172, 0.02325819618999958, -0.04113331064581871, -0.01685808226466179, 0.02523062191903591, -0.01618006080389023, 0.09632015973329544, -0.03383944183588028, 0.013252240605652332, -0.01183455903083086, -0.010067593306303024, 0.019826995208859444, 0.08378703147172928, -0.03636661171913147, 0.009019741788506508, -0.030120596289634705, -0.030469879508018494, -0.038852691650390625, 0.10149777680635452, -0.02395676262676716, -0.02360747940838337, -0.00759178726002574, 0.05600869283080101, 0.036654260009527206, -0.008023255504667759, -0.03063424862921238, -0.005701545160263777, -0.008619092404842377, 0.0033156282734125853, -0.08230771124362946, -0.044708333909511566, -0.01631361059844494, -0.013519340194761753, -0.03525712341070175, 0.013180329464375973, 0.026709942147135735, -0.06480243057012558, 0.0014318069443106651, 0.010858618654310703, -0.038174670189619064, 0.04216061532497406, -0.012029746547341347, -0.0005040217656642199, -0.012194115668535233, 0.01317005604505539, -0.03772265464067459, 0.020422833040356636, 0.027387963607907295, -0.04298245906829834, -0.014762379229068756, 0.0018838213291019201, 0.00883482675999403, -0.001121689099818468, -0.025703182443976402, -0.009322796948254108, 0.029853496700525284, -0.032298482954502106, 0.010041911154985428, 0.018984604626893997, -0.06435041129589081, 0.019015423953533173, -0.000234193546930328, 0.043557751923799515, -0.0447494275867939, 0.0595015324652195, 0.0027968392241746187, 0.006204925011843443, 0.045612361282110214, -0.03201083838939667, -0.04963940009474754, -0.058761872351169586, -0.00646175118163228, 0.06381621211767197, 0.007843476720154285, 0.019118154421448708, -0.013539886102080345, 0.010581246577203274, -0.0038960559759289026, 0.04327010735869408, 0.007802384905517101, 0.014669922180473804, 0.06948693841695786, 0.020587202161550522, 0.0553923100233078, -0.0616794191300869, 0.02375130169093609, 0.019457165151834488, -0.019621534273028374, -0.011238722130656242, -0.008639639243483543, -0.028004346415400505, -0.029442574828863144, -0.050913259387016296, -0.007956480607390404, -0.017310097813606262, -0.03324360400438309, 0.053460974246263504, 0.06792543828487396, -0.034969478845596313, 0.051324181258678436, -0.03172319382429123, -0.006677485536783934, -0.010185733437538147, -0.01978590339422226, 0.0006484865443781018, 0.050707798451185226, 0.03883214667439461, -0.02864127606153488, 0.07010332494974136, 0.04816007986664772, 0.06940475851297379, -0.054406095296144485, -0.02305273525416851, -0.05313223972916603, -0.023771848529577255, -0.04425631836056709, -0.0009971283143386245, 0.0036263882648199797, 0.05083107575774193, 0.013447428122162819, -0.00039166019996628165, -0.010386058129370213, -0.03990054503083229, 0.012481761164963245, 0.07404817640781403, -0.02463478408753872, -0.06032337620854378, 0.0008449587621726096, 0.08095166832208633, -0.01412544958293438, -0.0206796582788229, -0.027305779978632927, -0.015738319605588913, 0.025949735194444656, 0.03402435779571533, -0.012841317802667618, -0.05300896242260933, 0.022251436486840248, 0.031209539622068405, -0.015080844052135944, 0.00557826878502965, 0.05062561482191086, 0.009841586463153362, -0.0014279545284807682, 0.014967840164899826, -0.006846990901976824, -0.029832949861884117, 0.04742041975259781, -0.06780216097831726, 0.0015127073274925351, 0.03675698861479759, 0.03427090868353844, 0.009523121640086174, 0.011731828562915325, 0.014330911450088024, 0.0014639103319495916, -0.0159026887267828, -0.04754369705915451, -0.040352556854486465, -0.02393621765077114, -0.0075609683990478516, -0.006384703330695629, 0.0701444149017334, -0.07158264517784119, 0.00055827631149441, 0.006980540696531534, -0.034969478845596313, 0.003153827739879489, -0.04889973998069763, 0.019395526498556137, 0.015193847939372063, 0.008578000590205193, -0.05066670477390289, 0.012276300229132175, -0.021162493154406548, -0.007638016249984503, -0.05851531773805618, -0.0706375241279602, 0.01834767498075962, 0.023504748940467834, 0.036859720945358276, -0.05366643890738487, 0.03007950447499752, 0.01309814490377903, 0.015656135976314545, -0.0533377006649971, 0.0551457554101944, 0.009559077210724354, -0.005860777571797371, -0.0154506741091609, -0.013611797243356705, -0.011094898916780949, -0.0013765892945230007, 0.04709168151021004, 0.011659916490316391, -0.012954321689903736, 0.00896837655454874, 0.010735342279076576, 0.020207097753882408, 0.07992436736822128, -0.07717118412256241, 0.03246285393834114, -0.0021907289046794176, 0.05313223972916603, -0.010796980001032352, -0.051817286759614944, -0.06533662974834442, -0.02258017472922802, -0.007098680827766657, 0.004746151156723499, 0.03766101971268654, -0.011998928152024746, -0.0030716434121131897, -0.0037573697045445442, 0.047050591558218, 0.013416609726846218, 0.007098680827766657, 0.02687431126832962, 0.014022719115018845, 0.036037877202034, -0.002007097937166691, -0.055227942764759064, -0.08251317590475082, 0.0402703732252121, 0.05185838043689728, 0.014423368498682976, -0.053255513310432434, -0.0005968002369627357, 0.011259268037974834, 0.013139236718416214, 0.008429041132330894, -0.007720200344920158, -0.036880265921354294, 0.032771043479442596, -0.014207634143531322, -0.015440400689840317, -0.05465264990925789, -0.043146830052137375, 0.07154155522584915, -0.008233853615820408, -0.029216567054390907, -0.025949735194444656, -0.002622197149321437, 0.04548908397555351, -0.045201439410448074, 0.020155733451247215, -0.04302355274558067, 0.00985699612647295, -0.07355506718158722, 0.022867819294333458, -0.011341452598571777, -0.06862400472164154, -0.016693713143467903, 0.07174701243638992, 0.0039756721816957, -0.00027223594952374697, 0.013950807973742485, -0.04918738454580307, -0.03985945135354996, -0.0056244973093271255, -0.037969209253787994, -0.0013984196120873094, 0.021162493154406548, 0.010514471679925919, -0.020689932629466057, 0.03745555877685547, 0.01985781453549862, -0.014813744463026524, 0.024244409054517746, 0.0017823749221861362, 0.017834022641181946, -0.06952803581953049, -0.052762407809495926, 0.016457432880997658, -0.05251585319638252, 0.05847422778606415, 0.06513116508722305, 0.03831849247217178, -0.02046392485499382, -0.0076636988669633865, -0.01732037030160427, -0.006487433798611164, -0.04177023842930794, -0.03874996304512024, -0.04516034945845604, -0.03579132258892059, 0.016005419194698334, -0.025127891451120377, -0.009975136257708073, -0.011351725086569786, 0.04405085742473602, -0.037352826446294785, 0.050584521144628525, -0.00910192634910345, -0.014310364611446857, -0.019529076293110847, -0.023484202101826668, 0.09270404279232025, 0.027182502672076225, -0.05436500534415245, -0.03903760761022568, 0.04770806431770325, -0.011844831518828869, 0.013354971073567867, -0.009019741788506508, -0.042941369116306305, 0.09451210498809814, -0.008937557227909565, 0.029771313071250916, 0.09484083950519562, -0.00889646541327238, -0.024203317239880562, 0.01765938103199005, 0.0027274959720671177, -0.03472292423248291, -0.017515558749437332, 0.05005032196640968, -0.014711013995110989, 0.013406336307525635, -0.038030847907066345, -0.008860509842634201, -0.012902956455945969, -0.042941369116306305, -0.007751019671559334, -0.04770806431770325, -0.014094631187617779, 0.094101183116436, 0.03698299825191498, -0.0010754604591056705, -0.010093276388943195, -0.0022164115216583014, -0.004378889687359333, -0.02516898326575756, -0.05457046627998352, 0.018306583166122437, 0.010940803214907646, -0.007735610008239746, 0.0028327947948127985, 0.0008590841898694634, 0.0030356876086443663, -0.017001904547214508, -0.014793198555707932, -0.02251853607594967, 0.0111565375700593, 0.003772779367864132, -0.013560432009398937, 0.0025464333593845367, -0.044091951102018356, 0.0016822126926854253, -0.08165023475885391, 0.06291218847036362, 0.017515558749437332, -0.027613971382379532, 0.0016398363513872027, -0.03049042634665966, -0.051940564066171646, 0.0016629507299512625, -0.03651043772697449, -0.018399041146039963, 0.014248726889491081, -0.03211356699466705, 0.0276961550116539, -0.007864023558795452, 0.04290027543902397, -0.0037162774242460728, -0.04331119731068611, 0.06882946938276291, -0.023093827068805695, -0.004951612092554569, -0.015676680952310562, 0.04043474420905113, -0.037414465099573135, 0.019261976704001427, 0.0033541524317115545, 0.0035364991053938866, 0.018676413223147392, 0.02039201371371746, 0.0022973117884248495, -0.02284727245569229, -0.01343715563416481, 0.06315874308347702, -0.0013663162244483829, -0.005609087646007538, 0.011598278768360615, 0.026483934372663498, -0.021943245083093643, 0.019950272515416145, -0.029422027990221977, 0.03766101971268654, 0.05292677879333496, -0.06607628613710403, -0.027038680389523506, -0.023422565311193466, -0.050707798451185226, 0.04084566608071327, -0.009959726594388485, -0.06044665351510048, 0.020782388746738434, -0.00835199374705553, 0.07786975055932999, -0.019703717902302742, 0.0488586463034153, 0.06718577444553375, 0.03349015861749649, 0.0034363367594778538, -0.022600719705224037, 0.047584787011146545, -0.05148854851722717, 0.03525712341070175, 0.051200903952121735, -0.041914064437150955, -0.04466724023222923, 0.002433429704979062, -0.024490961804986, 0.014937021769583225, 0.06270672380924225, -0.0076636988669633865, -0.055967602878808975, -0.09968972206115723, -0.010612064972519875, 0.035976238548755646, -0.017104635015130043, 0.0017361462814733386, 0.06356966495513916, -0.034969478845596313, 0.047050591558218 ]
346
funcsigs
__eq__
null
def __eq__(self, other): if (not issubclass(type(other), Signature) or self.return_annotation != other.return_annotation or len(self.parameters) != len(other.parameters)): return False other_positions = dict((param, idx) for idx, param in enumerate(other.parameters.keys())) for idx, (param_name, param) in enumerate(self.parameters.items()): if param.kind == _KEYWORD_ONLY: try: other_param = other.parameters[param_name] except KeyError: return False else: if param != other_param: return False else: try: other_idx = other_positions[param_name] except KeyError: return False else: if (idx != other_idx or param != other.parameters[param_name]): return False return True
(self, other)
[ 0.0481070950627327, -0.06133561208844185, 0.00032925736741162837, 0.05254144221544266, -0.05071553587913513, -0.04438075050711632, -0.03830680996179581, 0.007559819146990776, 0.05347302928566933, 0.02589808776974678, 0.01065734215080738, -0.06159645691514015, 0.049560368061065674, 0.019134772941470146, -0.02561861090362072, -0.01091818604618311, 0.0050445375964045525, 0.03813912346959114, -0.02511555515229702, -0.019004352390766144, -0.02625208906829357, 0.018501294776797295, -0.01173798181116581, 0.01924656331539154, 0.012539145536720753, 0.043970853090286255, 0.046691082417964935, -0.011663454584777355, 0.0077414787374436855, 0.06442847847938538, -0.03856765478849411, -0.0586899109184742, 0.05790737643837929, 0.05872717127203941, 0.018268398940563202, -0.00265734875574708, -0.03750564530491829, 0.043411899358034134, 0.002197378082200885, -0.012911779806017876, -0.04564770683646202, -0.023885861039161682, 0.009511491283774376, -0.012464619241654873, -0.005445119459182024, -0.017476551234722137, -0.04479064792394638, 0.035735633224248886, -0.007769425865262747, 0.01816592365503311, 0.011803193017840385, -0.04348642751574516, 0.00004792572508449666, 0.04788351431488991, -0.03480404615402222, 0.007019499316811562, 0.047399088740348816, 0.05511261895298958, -0.04356095567345619, 0.026438407599925995, -0.0010852975538000464, 0.001683841459453106, 0.029941169545054436, -0.01821250282227993, -0.016181645914912224, -0.035251207649707794, -0.028823265805840492, -0.01487742643803358, 0.0214078426361084, 0.060851190239191055, -0.00847743172198534, -0.023438699543476105, -0.019507408142089844, 0.023718176409602165, -0.032381925731897354, -0.01538048218935728, -0.03964829444885254, 0.05429282411932945, 0.0039638979360461235, -0.0390520803630352, -0.018547873944044113, -0.020997945219278336, -0.019358353689312935, -0.042107682675123215, -0.07989280670881271, 0.049113206565380096, -0.06677607446908951, 0.013126044534146786, 0.0599568672478199, -0.012008141726255417, -0.015911485999822617, 0.04136241227388382, 0.03590331971645355, -0.025171449407935143, 0.03377930447459221, 0.011812509037554264, -0.0014323132345452905, -0.05861538276076317, -0.02927042730152607, -0.011356031522154808, 0.001675690058618784, 0.044194433838129044, 0.07270096242427826, 0.01259504072368145, 0.03063054382801056, 0.008076849393546581, -0.005305381491780281, -0.022525746375322342, -0.006320809945464134, 0.0061112032271921635, -0.009478886611759663, 0.03327624872326851, -0.04244305193424225, 0.03493446856737137, 0.0013426481746137142, -0.03105907328426838, -0.0200290959328413, -0.010033180005848408, -0.03998366370797157, 0.00244308402761817, 0.03435688838362694, 0.07452686876058578, 0.05544799193739891, -0.013573206029832363, 0.0450887568295002, -0.011644823476672173, 0.033388037234544754, 0.05015658214688301, -0.05488903820514679, -0.036182794719934464, 0.03683490678668022, 0.01647043786942959, -0.008230561390519142, 0.053137656301259995, 0.034002885222435, 0.012921095825731754, 0.05414377152919769, 0.03668585047125816, -0.0420704185962677, 0.008076849393546581, 0.0367790088057518, 0.034040145576000214, 0.03141307458281517, -0.0005333329318091273, -0.07210474461317062, -0.0023697216529399157, -0.0669996589422226, -0.020923418924212456, 0.03683490678668022, -0.020867522805929184, -0.015156902372837067, -0.01995456963777542, 0.026736514642834663, -0.019637830555438995, -0.032232869416475296, -0.037524279206991196, 0.04441801458597183, -0.041101567447185516, -0.025711769238114357, 0.030071591958403587, 0.018901877105236053, -0.05861538276076317, 0.02246985025703907, -0.04262936860322952, 0.006502469535917044, 0.011887035332620144, -0.03212108090519905, -0.010852974839508533, -0.01345209963619709, 0.0032954849302768707, -0.0013834050623700023, 0.046765610575675964, 0.02368091233074665, -0.007559819146990776, -0.001270450185984373, 0.02783578634262085, -0.014812215231359005, 0.005594172980636358, -0.0061112032271921635, -0.04330011084675789, 0.05831727385520935, -0.07720983773469925, -0.03882849961519241, -0.012436671182513237, 0.03761743754148483, 0.0052774338982999325, -0.041176095604896545, 0.018911192193627357, 0.0013985432451590896, -0.0016197948716580868, -0.033238984644412994, -0.007736820727586746, 0.006213677581399679, -0.0016151369782164693, -0.026084404438734055, -0.021128367632627487, -0.009502176195383072, 0.004480928182601929, 0.0735580176115036, 0.07385613024234772, 0.004506546538323164, -0.0649874284863472, -0.028636949136853218, -0.004129254259169102, 0.000561280467081815, -0.0003729254531208426, 0.02025267668068409, 0.011551665142178535, 0.02325238287448883, -0.026717882603406906, -0.026885567232966423, -0.06755860894918442, 0.03672311455011368, -0.021575529128313065, 0.018398821353912354, 0.030872754752635956, 0.02861831709742546, -0.019619198516011238, -0.038679443299770355, 0.022991539910435677, 0.14048314094543457, -0.01156098023056984, 0.0043015978299081326, 0.008416878059506416, 0.01997320167720318, 0.027165044099092484, 0.03512078523635864, 0.013032886199653149, -0.011393294669687748, -0.04546139016747475, 0.04512602090835571, 0.014346422627568245, 0.0200290959328413, -0.008570590056478977, -0.014840162359178066, 0.008347009308636189, -0.003209313377737999, -0.016256174072623253, -0.07072599977254868, -0.01924656331539154, 0.016507701948285103, -0.006101887207478285, -0.011998825706541538, 0.08168144524097443, -0.050268374383449554, -0.0994933694601059, -0.012008141726255417, 0.052615970373153687, 0.034748151898384094, 0.018147293478250504, -0.0005050941836088896, -0.012641619890928268, -0.046914663165807724, -0.007899847812950611, -0.00320232636295259, 0.015986014157533646, -0.06904914230108261, -0.0030858782120049, 0.06904914230108261, 0.03431962430477142, 0.024277128279209137, 0.05973328649997711, 0.006763313431292772, 0.018678296357393265, 0.011644823476672173, 0.01552953664213419, 0.00872895959764719, 0.015930118039250374, -0.005244828294962645, -0.02211584895849228, 0.016367964446544647, -0.014225316233932972, -0.009865494444966316, 0.029959801584482193, 0.004627652931958437, 0.015809012576937675, 0.038455862551927567, -0.038753971457481384, -0.05574609711766243, -0.0284692645072937, 0.05634231120347977, -0.004373795818537474, 0.039461977779865265, -0.04587128758430481, -0.015399114228785038, 0.012660251930356026, 0.007182526867836714, -0.022302165627479553, 0.012473934330046177, -0.06018044799566269, 0.007196500897407532, -0.014979900792241096, 0.07258917391300201, -0.017551077529788017, 0.019190669059753418, 0.05898801609873772, -0.014048314653337002, -0.05216880887746811, 0.017597656697034836, 0.0022253256756812334, 0.0018410466145724058, 0.029214533045887947, 0.03282908722758293, -0.018054133281111717, 0.06312425434589386, 0.02697872743010521, 0.0298480112105608, 0.040169984102249146, 0.022842485457658768, -0.015026479959487915, 0.008985145948827267, 0.07713530957698822, -0.011244241148233414, 0.01517553348094225, -0.006628233473747969, 0.02096068114042282, 0.03348119556903839, -0.057273898273706436, 0.012054720893502235, 0.07366981357336044, 0.00039883519639261067, 0.012921095825731754, -0.019376985728740692, -0.0722910612821579, 0.032735928893089294, -0.08183050155639648, -0.054702721536159515, 0.03068643808364868, 0.014942637644708157, 0.02390449307858944, 0.01005181111395359, -0.01673128269612789, 0.05522441118955612, 0.03318308666348457, -0.03480404615402222, -0.040542617440223694, -0.021594161167740822, 0.03536299988627434, 0.028860529884696007, -0.00743871321901679, 0.028711475431919098, -0.06737229228019714, 0.017867816612124443, -0.038903024047613144, -0.007275685667991638, 0.02081162855029106, -0.04337463900446892, 0.006833182182163, 0.07400517910718918, -0.02138921059668064, -0.06390678882598877, -0.0004861713678110391, 0.04792077839374542, -0.026214826852083206, 0.040095455944538116, 0.019768251106142998, 0.014476844109594822, -0.008272482082247734, -0.045759499073028564, -0.012492566369473934, 0.10627531260251999, -0.008183982223272324, -0.0023138264659792185, -0.009492860175669193, -0.012827937491238117, 0.035083524882793427, -0.005906254518777132, -0.03292224556207657, -0.05160985514521599, -0.017113232985138893, -0.05988233909010887, -0.017038704827427864, -0.016992125660181046, -0.05179617553949356, -0.011970878578722477, -0.013396204449236393, -0.07579382508993149, 0.01939561776816845, -0.009688492864370346, -0.031375810503959656, 0.06409310549497604, -0.011365347541868687, 0.005337987095117569, 0.041250623762607574, -0.0015802024863660336, -0.02997843362390995, -0.022656168788671494, -0.03269866481423378, 0.047548141330480576, 0.06465205550193787, -0.041325148195028305, -0.02576766535639763, -0.030854124575853348, 0.0360151082277298, -0.05008205771446228, -0.002203200478106737, -0.05015658214688301, 0.02647566981613636, -0.0856313705444336, -0.015240744687616825, 0.019432881847023964, 0.010368550196290016, -0.016004644334316254, -0.015836959704756737, 0.033592987805604935, -0.018734192475676537, 0.0034515256993472576, 0.016079172492027283, -0.03536299988627434, 0.033089928328990936, -0.03461772948503494, -0.08183050155639648, 0.0006305671995505691, 0.017728079110383987, 0.019581934437155724, -0.0040733590722084045, 0.047622669488191605, -0.007471318822354078, 0.041548728942871094, 0.019768251106142998, -0.00744337122887373, 0.044827912002801895, 0.017374075949192047, 0.014476844109594822, 0.003595921443775296, -0.007508581969887018, -0.036741744726896286, 0.026065772399306297, 0.01630275323987007, -0.04441801458597183, -0.04896415397524834, -0.02403491549193859, 0.030891386792063713, 0.044604331254959106, -0.0018259083153679967, 0.025227345526218414, -0.00416185986250639, -0.06591901928186417, 0.05071553587913513, 0.041884101927280426, -0.04423169791698456, -0.00595749169588089, -0.06442847847938538, 0.02161279134452343, -0.045535918325185776, -0.03830680996179581, 0.0016570583684369922, 0.07158305495977402, 0.042554840445518494, -0.01444889698177576, 0.02226490154862404, 0.07232832908630371, -0.04780898615717888, -0.06930998712778091, -0.018631717190146446, -0.040169984102249146, -0.03070507012307644, -0.04121335968375206, 0.007350212428718805, 0.026009878143668175, 0.006036676466464996, 0.0006334783975034952, -0.053622081875801086, 0.005920228082686663, -0.015520220622420311, 0.042964741587638855, 0.0065723382867872715, -0.0038730681408196688, -0.006907708942890167, 0.060068655759096146, 0.03785964846611023, -0.08279935270547867, -0.02932632341980934, -0.0029647720512002707, -0.028804635629057884, 0.027779890224337578, 0.03268003091216087, 0.035884685814380646, -0.05250417813658714, 0.06342236697673798, -0.036462269723415375, -0.006227651610970497, -0.029587166383862495, -0.003935950342565775, 0.024724287912249565, -0.03348119556903839, -0.024221232160925865, -0.007508581969887018, -0.04367274418473244, -0.00002243448034278117, -0.013899261131882668, -0.04367274418473244, -0.02761220559477806, 0.06446573883295059, 0.050417426973581314, -0.023457331582903862, 0.03819502145051956, 0.03515804931521416, -0.05149806663393974, 0.0005001451354473829, -0.012539145536720753, 0.02146373875439167, -0.001370595651678741, 0.0007708873017691076, 0.05343576520681381, -0.0387912355363369, -0.016833756119012833, -0.03908934444189072, -0.040542617440223694, 0.05526167154312134, -0.012995623052120209, -0.01062939502298832, 0.023923125118017197, -0.004695192910730839, 0.036592692136764526, 0.012976991012692451, -0.02239532396197319, -0.0453495979309082, -0.014635213650763035, -0.05854085460305214, 0.044976964592933655, -0.01645180583000183, -0.008211929351091385, -0.07966922223567963, -0.0171318631619215, 0.019283827394247055, -0.012119932100176811, -0.011393294669687748, 0.03348119556903839, -0.09479817748069763, -0.013368257321417332, -0.013917893171310425, -0.023010170087218285, 0.00552896223962307, -0.03912660479545593, 0.04907594248652458, -0.02269343100488186, 0.025357767939567566, -0.0049420627765357494, 0.05324944853782654, -0.0015010177157819271, 0.05582062527537346, -0.06800577044487, 0.008924592286348343, 0.0002468702441547066, 0.0833955630660057, -0.0008052395423874259, -0.03219560906291008, -0.0003170303243678063, 0.040542617440223694, -0.004751088097691536, 0.00392430555075407, 0.05075279623270035, -0.02504102885723114, -0.022656168788671494, 0.0874200165271759, 0.016116434708237648, 0.029233165085315704, 0.06755860894918442, 0.048479728400707245, 0.07966922223567963, 0.028376106172800064, 0.06662701815366745, -0.05980781093239784, -0.0662543848156929, -0.019730988889932632, 0.03294087573885918, -0.009241331368684769, -0.02617756277322769, 0.04713824391365051, -0.004450651351362467, -0.00127976608928293, -0.04721277207136154, -0.03083549253642559, 0.04698919132351875, -0.005091116763651371, -0.007103342097252607, 0.020923418924212456, -0.10426308959722519, -0.02854379080235958, 0.014393001794815063, 0.018119344487786293, 0.04773445799946785, -0.03528847172856331, 0.013368257321417332, 0.01066665817052126, -0.038381338119506836, 0.003721685614436865, 0.0051516699604690075, -0.01791439577937126, -0.06465205550193787, 0.02927042730152607, 0.01630275323987007, -0.07039062678813934, 0.015585431829094887, 0.03635048121213913, 0.04803256690502167, -0.006889077369123697, 0.007541187573224306, -0.04043082520365715, 0.015576115809381008, -0.044194433838129044, -0.020774364471435547, -0.05183343589305878, 0.00382881797850132, 0.037021223455667496, -0.03987187519669533, 0.032381925731897354, 0.028879161924123764, 0.03025790862739086, 0.07691172510385513, 0.01517553348094225, 0.03826954588294029, -0.08332104235887527, -0.00439009815454483, 0.01112313475459814, -0.010955450125038624, 0.04799530282616615, 0.0038823841605335474, 0.06245351582765579, 0.008915276266634464, 0.012045404873788357, -0.032027922570705414, 0.0016710321651771665, -0.07247737795114517, -0.037021223455667496, 0.002517610788345337, -0.035810161381959915, 0.057572007179260254, -0.016293436288833618, -0.004646284505724907, -0.005370592698454857, 0.04974668473005295, -0.04367274418473244, 0.00933449063450098, -0.05600694194436073, -0.019153404980897903, -0.006362731568515301, -0.0171318631619215, 0.06513648480176926, 0.006763313431292772, -0.0009478885913267732, -0.07050241529941559, 0.08212860673666, -0.0536593459546566, -0.0003406110918149352, 0.007080052513629198, -0.019861411303281784, 0.07802963256835938, -0.014989216811954975, -0.000965355837251991, 0.08004185557365417, 0.005063169170171022, -0.004152543842792511, -0.017271602526307106, -0.02491060644388199, -0.01657291315495968, 0.02068120613694191, 0.034263726323843, -0.02655019797384739, 0.045200545340776443, -0.03648090362548828, -0.03329487890005112, -0.03886576369404793, -0.0007994171464815736, -0.008901302702724934, -0.020401731133461, -0.004634639713913202, 0.06386952847242355, 0.00017743799253366888, -0.024556603282690048, 0.016051223501563072, -0.005855017341673374, 0.0015871893847361207, 0.002341774059459567, -0.04684013873338699, 0.013275098986923695, -0.021631423383951187, -0.014756320044398308, -0.02927042730152607, -0.05235512554645538, 0.025525452569127083, -0.01495195273309946, 0.006777286995202303, -0.019712356850504875, 0.053063131868839264, -0.00845414213836193, 0.0214078426361084, 0.008859382010996342, -0.032027922570705414, -0.006413968745619059, -0.11946657299995422, 0.06062760949134827, 0.005375250242650509, 0.0418095737695694, 0.03156212717294693, -0.03456183522939682, -0.02032720297574997, -0.04486517608165741, -0.00010698681580834091, -0.025301871821284294, -0.0034212491009384394, 0.020997945219278336, 0.00470450846478343, -0.01277204230427742, 0.014430264942348003, -0.015026479959487915, 0.002566518960520625, 0.0647265836596489, -0.036890801042318344, -0.035884685814380646, -0.03990913927555084, 0.023289646953344345, -0.07788057625293732, 0.041884101927280426, 0.009343806654214859, -0.00449024373665452, -0.004820956848561764, 0.037878282368183136, 0.0026294011622667313, -0.0460948683321476, -0.005109748337417841, 0.008388930931687355, 0.0008960691629908979, -0.02246985025703907, 0.0251900814473629, 0.0058783069252967834, -0.02889779396355152, 0.008924592286348343, -0.01535253506153822, -0.005263460334390402, 0.073036327958107, -0.02932632341980934, -0.004112951457500458, -0.060292236506938934, -0.022283533588051796, -0.02805936709046364, -0.030090223997831345, 0.013712943531572819, 0.061000242829322815, 0.03705848380923271, 0.054777249693870544, 0.04758540540933609, -0.009818915277719498, 0.025171449407935143, 0.01717844419181347, -0.026289353147149086, -0.0007883545476943254, 0.004622994922101498, -0.026457037776708603, 0.0334998294711113, 0.011728665791451931, -0.004699850454926491, -0.025562716647982597, 0.017849184572696686, 0.06118655949831009, -0.008183982223272324, 0.033034034073352814, 0.03070507012307644, -0.02096068114042282, -0.059435177594423294, 0.033034034073352814, 0.0019167378777638078, 0.03543752804398537, -0.05980781093239784, 0.04643023759126663, -0.0352698415517807, 0.07698625326156616 ]
348
funcsigs
__init__
Constructs Signature from the given list of Parameter objects and 'return_annotation'. All arguments are optional.
def __init__(self, parameters=None, return_annotation=_empty, __validate_parameters__=True): '''Constructs Signature from the given list of Parameter objects and 'return_annotation'. All arguments are optional. ''' if parameters is None: params = OrderedDict() else: if __validate_parameters__: params = OrderedDict() top_kind = _POSITIONAL_ONLY for idx, param in enumerate(parameters): kind = param.kind if kind < top_kind: msg = 'wrong parameter order: {0} before {1}' msg = msg.format(top_kind, param.kind) raise ValueError(msg) else: top_kind = kind name = param.name if name is None: name = str(idx) param = param.replace(name=name) if name in params: msg = 'duplicate parameter name: {0!r}'.format(name) raise ValueError(msg) params[name] = param else: params = OrderedDict(((param.name, param) for param in parameters)) self._parameters = params self._return_annotation = return_annotation
(self, parameters=None, return_annotation=<class 'funcsigs._empty'>, __validate_parameters__=True)
[ -0.017261182889342308, -0.009848241694271564, 0.011266602203249931, 0.013050703331828117, -0.014585031196475029, -0.050240304321050644, -0.04938393458724022, 0.020267395302653313, 0.01010693609714508, 0.03093632310628891, -0.004915200173854828, 0.058982402086257935, -0.021248651668429375, -0.019268298521637917, -0.03714499622583389, 0.020356599241495132, 0.015958789736032486, 0.03491486981511116, -0.05263099819421768, -0.023603664711117744, 0.016395894810557365, 0.02927710860967636, -0.027849826961755753, 0.05277372896671295, 0.02247968129813671, -0.0007231187191791832, 0.01681515760719776, -0.00805967953056097, -0.0003844181483145803, -0.012131891213357449, -0.004125735256820917, -0.01385354995727539, 0.030436774715781212, 0.06080218404531479, 0.02599436230957508, 0.0053478446789085865, -0.019018523395061493, 0.02701129950582981, -0.07464681565761566, 0.03314860910177231, -0.010276425629854202, 0.002229012083262205, 0.00004794773121830076, -0.05341600254178047, 0.04941961541771889, 0.05330895632505417, 0.03578907996416092, 0.05737670883536339, -0.059303540736436844, 0.01507565937936306, 0.037858638912439346, -0.02030307613313198, 0.00943789817392826, -0.06629721820354462, -0.06972269713878632, 0.055200107395648956, 0.10476244986057281, 0.05198872461915016, 0.006213134154677391, 0.043032530695199966, 0.03925023600459099, 0.06751040369272232, 0.041962072253227234, 0.007230071816593409, -0.002689533168449998, 0.016975726932287216, -0.03550362214446068, -0.055842380970716476, -0.019125569611787796, 0.04328230768442154, 0.046493690460920334, -0.024335145950317383, -0.03939296677708626, 0.035485781729221344, 0.03421907126903534, -0.007109645288437605, -0.06583335250616074, -0.010089094750583172, 0.028973810374736786, -0.016458338126540184, 0.006940155290067196, -0.0014506976585835218, -0.035717714577913284, -0.03464725613594055, 0.021248651668429375, 0.02289002388715744, -0.04638664424419403, -0.01537895668298006, 0.013380762189626694, 0.04503072798252106, -0.09027554839849472, 0.02071342058479786, -0.01010693609714508, 0.027903350070118904, -0.015004294924438, -0.037109315395355225, 0.0006088247173465788, -0.060695137828588486, 0.003927253652364016, -0.007234532386064529, 0.005102530587464571, -0.002148727420717478, -0.04799233376979828, 0.0024419892579317093, -0.0034901488106697798, -0.05016893893480301, 0.0014150156639516354, -0.022693773731589317, 0.008635052479803562, 0.0023014910984784365, 0.029705293476581573, -0.0015109111554920673, -0.013987356796860695, 0.017680447548627853, 0.0024174577556550503, -0.03366599977016449, 0.023157639428973198, -0.022693773731589317, -0.04203343391418457, -0.007511068135499954, 0.019892733544111252, 0.008215787820518017, -0.06329992413520813, 0.05220281332731247, -0.014112244360148907, -0.019500231370329857, 0.04702892154455185, 0.005432589445263147, -0.0020071144681423903, -0.05798330530524254, 0.05298782140016556, -0.0005229648086242378, -0.03675249591469765, 0.007118565496057272, 0.001862156088463962, -0.07821501791477203, 0.047100283205509186, -0.021623311564326286, -0.08542279154062271, 0.016957886517047882, 0.020981036126613617, 0.027778463438153267, 0.051774632185697556, -0.0059812008403241634, -0.033130768686532974, -0.00790357030928135, 0.018483294174075127, -0.08235413581132889, -0.015200546011328697, 0.008777780458331108, 0.006815268192440271, -0.04306821525096893, 0.028563467785716057, -0.022408317774534225, -0.01336292177438736, -0.08442369103431702, 0.042747076600790024, -0.06419197469949722, -0.03660976514220238, 0.002254658378660679, 0.005566397216171026, -0.03639567270874977, 0.012658201158046722, -0.06551221013069153, 0.021980132907629013, -0.000015584755601594225, 0.012783088721334934, -0.01603015325963497, -0.027493007481098175, -0.03432611748576164, -0.01650294102728367, 0.010829497128725052, -0.015280830673873425, 0.01537895668298006, -0.015842823311686516, 0.034468844532966614, 0.0019324051681905985, 0.04831347241997719, -0.010695689357817173, -0.02770709991455078, 0.0749322697520256, -0.018411928787827492, 0.009625228121876717, -0.0204458050429821, 0.04892006888985634, 0.019393185153603554, -0.014139005914330482, 0.07685910165309906, 0.0034589271526783705, -0.013202352449297905, 0.043353669345378876, 0.02404968999326229, 0.006895552854984999, 0.03302372246980667, -0.00716762850061059, 0.007925871759653091, -0.044317085295915604, 0.042390257120132446, -0.006293418817222118, 0.06108764186501503, 0.030347568914294243, 0.014611792750656605, -0.016110438853502274, -0.038179777562618256, 0.026797207072377205, 0.017787493765354156, 0.019303979352116585, 0.009509261697530746, -0.03088279999792576, -0.041177067905664444, 0.02556617744266987, -0.04356776177883148, -0.016146119683980942, -0.024584921076893806, -0.03454020991921425, -0.07068610936403275, 0.04859893023967743, 0.005428129341453314, 0.01371082104742527, -0.029294949024915695, 0.12738485634326935, 0.030186999589204788, 0.012328142300248146, -0.022818660363554955, 0.022818660363554955, 0.015450320206582546, 0.07243452966213226, -0.04599414020776749, -0.02783198654651642, -0.04139116033911705, -0.02524503879249096, -0.058375805616378784, 0.00929516926407814, 0.015173784457147121, -0.003405404044315219, -0.026244135573506355, 0.019857050850987434, -0.04749278724193573, -0.04346071556210518, -0.06058809161186218, 0.042889803647994995, 0.005664522759616375, -0.010642166249454021, 0.07104292511940002, -0.058340124785900116, -0.0036462577991187572, -0.01725226268172264, 0.04735006019473076, 0.036181580275297165, 0.008478943258523941, -0.01850113458931446, 0.019821370020508766, -0.04338935390114784, -0.014540428295731544, 0.0023126418236643076, 0.03660976514220238, 0.022907866165041924, -0.02802823670208454, 0.059160809963941574, 0.015700094401836395, 0.006012422498315573, 0.007818825542926788, 0.02797471359372139, 0.0791427493095398, 0.03778727352619171, -0.016779476776719093, 0.0204458050429821, -0.011668024584650993, -0.0019446708029136062, -0.00018607622769195586, 0.08649324625730515, 0.005878615193068981, 0.008010616526007652, -0.01937534473836422, 0.02114160545170307, -0.03102552890777588, 0.025173675268888474, -0.056306250393390656, -0.034468844532966614, 0.02736811898648739, 0.07514636218547821, -0.04645800590515137, 0.04217616468667984, 0.045530274510383606, 0.04702892154455185, 0.0554855614900589, -0.010178299620747566, 0.01165018416941166, -0.03024052269756794, -0.00957170594483614, -0.006489669904112816, 0.047100283205509186, 0.04114138334989548, -0.009286249056458473, 0.04702892154455185, -0.005013325717300177, -0.005691284313797951, -0.03291667625308037, 0.042390257120132446, -0.03668113052845001, 0.028741877526044846, 0.03543226048350334, 0.10883019864559174, -0.020677737891674042, 0.004243931733071804, -0.027403801679611206, 0.002988370368257165, -0.006569954566657543, -0.010445915162563324, 0.022158542647957802, -0.009759035892784595, 0.10126560926437378, -0.0015889655333012342, -0.009607387706637383, 0.012765247374773026, 0.01960727758705616, 0.018376247957348824, -0.05359441414475441, 0.04438845068216324, 0.06073082238435745, 0.0396784208714962, -0.005713585764169693, -0.0025757967960089445, -0.06879495829343796, 0.018055109307169914, -0.040713198482990265, -0.07457544654607773, -0.0002214794949395582, -0.02677936665713787, 0.011355807073414326, -0.03775159269571304, -0.0035815841984003782, -0.0030039811972528696, 0.011337965726852417, -0.0656549409031868, -0.0030173619743436575, -0.013220193795859814, 0.003146709408611059, -0.0316142812371254, -0.05391555279493332, 0.021427061408758163, -0.04859893023967743, -0.03020484186708927, 0.046529371291399, -0.07778683304786682, -0.013817867264151573, 0.01660998724400997, -0.06394220143556595, 0.05188167840242386, -0.041640933603048325, -0.023193322122097015, 0.0057894098572432995, 0.03273826465010643, 0.04235457256436348, 0.11403977870941162, -0.025905156508088112, -0.0124887116253376, -0.020142508670687675, -0.011311204172670841, -0.01960727758705616, 0.11075703054666519, -0.016940046101808548, -0.01632452942430973, -0.02419241890311241, 0.03482566401362419, 0.008630591444671154, 0.0058473930694162846, -0.025227198377251625, -0.007230071816593409, -0.013452126644551754, -0.0011763920774683356, -0.060552410781383514, -0.048491884022951126, 0.001444007270038128, 0.019250456243753433, 0.011409330181777477, 0.0017328087706118822, 0.033095087856054306, -0.0667610839009285, -0.015762537717819214, -0.060373999178409576, -0.014290654100477695, 0.05894671753048897, 0.01928613893687725, -0.026832889765501022, -0.008670734241604805, 0.02349661849439144, -0.005820631515234709, 0.050704170018434525, 0.042889803647994995, -0.024031849578022957, -0.030026430264115334, 0.02210501953959465, -0.022551044821739197, 0.008171185851097107, -0.014344177208840847, 0.02283650077879429, 0.03671681135892868, -0.03129314258694649, -0.034986235201358795, -0.000592098745983094, -0.10419153422117233, -0.0040945131331682205, -0.01526299025863409, 0.0317213274538517, -0.05716261640191078, 0.048206426203250885, -0.026708001270890236, 0.01603907346725464, 0.02228342927992344, 0.01900068297982216, -0.0725058913230896, -0.05348736792802811, -0.03611021861433983, 0.06422766298055649, 0.005450430791825056, 0.008884826675057411, 0.027582211419939995, 0.004924120847135782, -0.03209598734974861, 0.02826017141342163, 0.04153388738632202, 0.012649280950427055, 0.06462015956640244, 0.02603004314005375, 0.0555926077067852, -0.047243013978004456, 0.018715227022767067, 0.027457324787974358, -0.043175261467695236, -0.011373648419976234, 0.038215458393096924, -0.02681504748761654, -0.02875971980392933, -0.015780379995703697, 0.002535654464736581, -0.013505649752914906, -0.036502718925476074, 0.025691064074635506, 0.03775159269571304, -0.05016893893480301, 0.01685084030032158, -0.008907127194106579, -0.01012477744370699, 0.011908878572285175, -0.03703795000910759, -0.029526881873607635, 0.01900068297982216, 0.04346071556210518, -0.03478998318314552, 0.0679742768406868, 0.0647628903388977, 0.07878593355417252, -0.06383515894412994, 0.004413421731442213, -0.050704170018434525, -0.002535654464736581, -0.025352085009217262, 0.004620823543518782, 0.003846969222649932, 0.03459373116493225, -0.008015076629817486, 0.02256888709962368, -0.012577916495501995, -0.022961389273405075, 0.02774278074502945, 0.04595845937728882, 0.008162264712154865, -0.03209598734974861, -0.023657187819480896, 0.06172991916537285, -0.0203387588262558, -0.013541331514716148, 0.0026404703967273235, -0.036788176745176315, -0.004284074064344168, 0.07036496698856354, -0.004159186966717243, -0.062443558126688004, 0.0004359898448456079, 0.019339662045240402, -0.02941983751952648, -0.025922996923327446, 0.07985638827085495, -0.008184566162526608, 0.0024040769785642624, -0.02289002388715744, -0.04660073667764664, -0.04371049255132675, 0.034665096551179886, -0.03828682377934456, 0.004839375615119934, 0.006810808088630438, 0.032256558537483215, 0.06369242817163467, 0.037073634564876556, 0.020499328151345253, 0.0004582911205943674, -0.05816171318292618, -0.03552146255970001, -0.022997070103883743, -0.04453117772936821, 0.0010091324802488089, -0.03423691168427467, 0.052416905760765076, -0.05744807422161102, -0.017528798431158066, -0.007533369120210409, -0.0181264728307724, -0.0020249553490430117, -0.06872359663248062, -0.02233695238828659, -0.0030151319224387407, 0.049598027020692825, -0.05830444395542145, 0.029205745086073875, -0.044138673692941666, -0.018608180806040764, -0.03480782359838486, 0.01667243055999279, 0.019125569611787796, 0.033327020704746246, 0.019321821630001068, -0.04406731203198433, 0.0008926083683036268, -0.00788572896271944, 0.007301436271518469, -0.0385722778737545, 0.061480142176151276, 0.026244135573506355, -0.024852536618709564, -0.026369022205471992, -0.028081759810447693, 0.02016034908592701, -0.04685050994157791, 0.07800092548131943, -0.00785896833986044, 0.03232792392373085, 0.01128444354981184, -0.007056122180074453, 0.03343406692147255, 0.05883967503905296, -0.07093588262796402, 0.006137309595942497, 0.011168476194143295, 0.0316142812371254, 0.02736811898648739, -0.030454615131020546, -0.021980132907629013, 0.009669831022620201, 0.0033608016092330217, -0.017305785790085793, -0.010365630500018597, -0.01882227323949337, 0.01487048715353012, 0.007279134821146727, 0.07478953897953033, -0.016047993674874306, 0.003041893243789673, 0.026832889765501022, 0.0011011252645403147, 0.035450100898742676, -0.014647474512457848, -0.017760731279850006, -0.08556551486253738, 0.03653840348124504, 0.044102992862463, 0.0002680333855096251, -0.04121274873614311, 0.043353669345378876, 0.01992841623723507, 0.002217861358076334, 0.010767053812742233, 0.02126649208366871, -0.02283650077879429, 0.031560759991407394, -0.004790313076227903, 0.029294949024915695, -0.08292504400014877, -0.02677936665713787, 0.063656747341156, 0.002033876022323966, -0.0543794184923172, -0.036823857575654984, 0.004255082458257675, 0.04014228656888008, -0.0374661348760128, -0.02303275279700756, -0.0260835662484169, 0.004643124528229237, -0.04956234619021416, -0.01618180237710476, -0.000036030491173733026, 0.021284332498908043, -0.04203343391418457, 0.030169159173965454, 0.05455783009529114, -0.03996387869119644, -0.03985683247447014, -0.051774632185697556, -0.01942886784672737, 0.029116539284586906, -0.022622408345341682, 0.03518248349428177, 0.049633707851171494, -0.00720331072807312, -0.029848020523786545, 0.038179777562618256, 0.0011986932950094342, 0.007827745750546455, 0.041819341480731964, 0.022729454562067986, 0.007109645288437605, -0.03628862649202347, -0.0030820355750620365, 0.01214081235229969, -0.05134644731879234, 0.03996387869119644, 0.04578004777431488, -0.0007493227021768689, -0.0012555615976452827, 0.005945518612861633, -0.023086275905370712, 0.017421752214431763, -0.08285368233919144, -0.03782295435667038, -0.03070439025759697, -0.07407590001821518, 0.054771922528743744, -0.02599436230957508, 0.05766216665506363, -0.038037046790122986, -0.004174797795712948, -0.04424571990966797, 0.017145216464996338, 0.02178388088941574, -0.0032715965062379837, -0.005414748564362526, 0.007038281299173832, 0.09148873388767242, 0.0010236282832920551, -0.007149787619709969, -0.031507235020399094, 0.008247010409832, 0.006766205653548241, -0.006097167264670134, -0.04124842956662178, -0.05409396439790726, 0.09470012038946152, 0.00865735299885273, 0.015298672020435333, 0.1031210795044899, -0.006788507103919983, -0.013987356796860695, -0.0011128333862870932, 0.00434874789789319, -0.03136450797319412, -0.011846435256302357, 0.03505759686231613, -0.010535120032727718, -0.006315719801932573, -0.044780950993299484, 0.005900916177779436, -0.0071631683968007565, -0.055842380970716476, -0.018340565264225006, -0.06283605843782425, -0.023799916729331017, 0.019678641110658646, 0.03477214276790619, -0.008862525224685669, 0.0014384320238605142, 0.0590180829167366, 0.026154929772019386, -0.019767846912145615, -0.04014228656888008, 0.01551276445388794, 0.004357668571174145, 0.030026430264115334, 0.009839320555329323, 0.0062889582477509975, 0.0074843065813183784, -0.008010616526007652, -0.0429968498647213, -0.03300588205456734, -0.0215519480407238, 0.008420960046350956, -0.004232781007885933, -0.014674236066639423, -0.05202440544962883, 0.008858065120875835, -0.06326424330472946, 0.03853659704327583, 0.00393617432564497, -0.02672584354877472, 0.04171229898929596, -0.024121055379509926, -0.03607453405857086, 0.019161252304911613, -0.009081077761948109, -0.008220248855650425, 0.010249664075672626, -0.04342503473162651, 0.06972269713878632, -0.025316402316093445, 0.039749786257743835, 0.025280721485614777, -0.02187308669090271, 0.043175261467695236, -0.051310762763023376, 0.02570890448987484, 0.009241647087037563, 0.03261337801814079, -0.03796568512916565, 0.015637651085853577, 0.015254069119691849, 0.02826017141342163, 0.035539306700229645, 0.013193432241678238, -0.028331534937024117, -0.016841920092701912, -0.02478117309510708, 0.04856324940919876, 0.0017651455709710717, -0.01206944789737463, 0.008376357145607471, 0.021801723167300224, 0.003258215729147196, 0.016074756160378456, -0.057733532041311264, 0.012586837634444237, 0.017644764855504036, -0.05587806552648544, -0.042247526347637177, -0.01850113458931446, -0.072291798889637, 0.03569987416267395, -0.008889286778867245, 0.000982371042482555, 0.05298782140016556, -0.0029036253690719604, 0.06062377616763115, 0.002323792316019535, 0.04503072798252106, 0.02021387219429016, 0.03464725613594055, -0.004101203754544258, -0.05323759466409683, 0.036324311047792435, -0.036788176745176315, 0.00805967953056097, 0.008313913829624653, -0.03552146255970001, -0.032167352735996246, 0.004830455407500267, -0.021712517365813255, 0.01978568732738495, 0.08328186720609665, 0.0060391840524971485, -0.050668489187955856, -0.08199731260538101, -0.026975616812705994, 0.02968745119869709, -0.020731261000037193, -0.02695777639746666, 0.07521772384643555, -0.004116814583539963, 0.0072434525936841965 ]
350
funcsigs
__str__
null
def __str__(self): result = [] render_kw_only_separator = True for idx, param in enumerate(self.parameters.values()): formatted = str(param) kind = param.kind if kind == _VAR_POSITIONAL: # OK, we have an '*args'-like parameter, so we won't need # a '*' to separate keyword-only arguments render_kw_only_separator = False elif kind == _KEYWORD_ONLY and render_kw_only_separator: # We have a keyword-only parameter to render and we haven't # rendered an '*args'-like parameter before, so add a '*' # separator to the parameters list ("foo(arg1, *, arg2)" case) result.append('*') # This condition should be only triggered once, so # reset the flag render_kw_only_separator = False result.append(formatted) rendered = '({0})'.format(', '.join(result)) if self.return_annotation is not _empty: anno = formatannotation(self.return_annotation) rendered += ' -> {0}'.format(anno) return rendered
(self)
[ 0.0026252586394548416, -0.06640689820051193, 0.04708649218082428, -0.0025458468589931726, 0.039388224482536316, -0.032325249165296555, -0.01596643030643463, -0.0762726441025734, 0.08580204844474792, -0.006021278444677591, 0.010267470963299274, -0.008623180910944939, -0.03193286061286926, -0.011799650266766548, -0.011780965141952038, 0.01701279729604721, 0.010930792428553104, -0.06857437640428543, 0.007721623871475458, 0.01306089572608471, 0.015807608142495155, 0.06958337128162384, 0.01325708907097578, -0.027616599574685097, 0.014210030436515808, -0.05239306390285492, 0.004699306562542915, -0.06394046545028687, -0.014396881684660912, 0.008655879646539688, -0.029223520308732986, -0.07156398892402649, 0.03623043745756149, 0.008039270527660847, 0.002234039129689336, 0.040322478860616684, -0.014583732932806015, 0.03623043745756149, -0.02503805421292782, -0.047908633947372437, -0.01960068568587303, -0.01374290231615305, -0.0223847683519125, -0.0593065544962883, -0.03619306907057762, -0.028307950124144554, 0.060240812599658966, 0.06199721246957779, -0.038229744881391525, -0.0482075959444046, 0.05414946377277374, 0.01924566924571991, -0.03230656310915947, -0.021244976669549942, -0.06838752329349518, -0.018115218728780746, 0.04525534808635712, 0.010099304839968681, 0.035856734961271286, 0.044657424092292786, 0.016115911304950714, 0.01886262372136116, 0.04742282256484032, -0.0005179280415177345, 0.031876806169748306, -0.034772999584674835, -0.03675362095236778, 0.023132173344492912, 0.01889065094292164, 0.040808290243148804, 0.022907951846718788, -0.0630062073469162, -0.013163663446903229, 0.02840137481689453, -0.03755708038806915, -0.019189612939953804, -0.022310027852654457, -0.02550518326461315, 0.038678187876939774, -0.05549479275941849, -0.0023309681564569473, -0.013574736192822456, -0.016639094799757004, -0.04237784072756767, 0.041518326848745346, -0.0669674500823021, -0.12107954919338226, -0.03432455658912659, 0.0049235280603170395, 0.017096880823373795, -0.03258684277534485, 0.027168158441781998, 0.002253892133012414, 0.058596521615982056, -0.07399305701255798, 0.004117732401937246, 0.02298269234597683, -0.06954599916934967, 0.03712732344865799, -0.013855013065040112, 0.024215908721089363, 0.006754669360816479, 0.00118533696513623, 0.011416605673730373, -0.008777332492172718, -0.04749756306409836, -0.016601724550127983, -0.0015216690953820944, -0.012248093262314796, 0.0584096722304821, 0.004239185713231564, 0.010893422178924084, 0.016153281554579735, -0.057587526738643646, 0.02892455831170082, 0.00937992800027132, -0.07021865993738174, 0.0028775078244507313, 0.009197748266160488, -0.030624903738498688, 0.03667888045310974, -0.0015088230138644576, -0.016050513833761215, -0.026607604697346687, -0.037538398057222366, 0.04002351686358452, -0.03727680444717407, 0.04327472671866417, -0.002571539022028446, -0.0778048187494278, 0.010211415588855743, -0.0033422999549657106, -0.05093562602996826, 0.0047086491249501705, 0.06345465034246445, -0.02427196502685547, 0.005853112321346998, -0.035781994462013245, 0.034735631197690964, 0.10142280906438828, 0.010323526337742805, -0.005091693717986345, 0.018713142722845078, 0.032362621277570724, -0.01307958085089922, -0.05915707349777222, 0.08953907340765, 0.061212439090013504, 0.030643589794635773, -0.039799295365810394, 0.043087877333164215, 0.005717645399272442, 0.0013254754012450576, -0.03202628716826439, -0.01065051555633545, 0.007123700343072414, 0.0264020673930645, -0.021824214607477188, 0.01193044614046812, -0.0160691998898983, -0.0019969716668128967, -0.0799722969532013, -0.009510723873972893, -0.010510377585887909, 0.0673411563038826, 0.04663804918527603, 0.037463657557964325, 0.006530447863042355, 0.014210030436515808, 0.004281227011233568, -0.009594806469976902, -0.042452581226825714, -0.006623873487114906, 0.032007601112127304, 0.030512792989611626, 0.09529408812522888, -0.051122475415468216, 0.0762726441025734, -0.00815605279058218, -0.02438407577574253, 0.03206365928053856, -0.060166072100400925, -0.05220621079206467, -0.009669546969234943, 0.05788648873567581, -0.05504634976387024, 0.017143594101071358, 0.000055763390264473855, -0.03415638953447342, 0.005722316447645426, 0.00693217758089304, 0.013668161816895008, 0.008735291659832, 0.05138406530022621, -0.06793908029794693, -0.05030032992362976, -0.002552853897213936, -0.052766766399145126, 0.03053147904574871, 0.0023309681564569473, -0.02092732861638069, -0.004858130123466253, -0.03197023272514343, 0.019712796434760094, 0.026289956644177437, 0.02787819132208824, 0.01679791882634163, 0.0089268134906888, -0.0006131053669378161, -0.050561923533678055, 0.007119028829038143, 0.001877854112535715, -0.0005439119995571673, -0.044769536703825, 0.006343596614897251, -0.010790654458105564, 0.03178337961435318, 0.05243043228983879, -0.060726623982191086, 0.015377850271761417, 0.05078614503145218, -0.05086088553071022, 0.025523867458105087, -0.017797572538256645, -0.011762280017137527, -0.0026953278575092554, 0.07190032303333282, -0.015349822118878365, -0.010220757685601711, -0.00986574124544859, 0.012173352763056755, -0.04103251174092293, -0.025579923763871193, 0.038790300488471985, -0.03383874520659447, 0.028476115316152573, -0.009221103973686695, -0.033371616154909134, -0.015237711369991302, -0.008025256916880608, -0.005227161105722189, 0.02262767404317856, 0.006651901174336672, 0.027056047692894936, 0.005166434217244387, -0.05388787388801575, 0.017143594101071358, 0.07892592996358871, 0.02965327724814415, 0.007100343704223633, 0.004101383034139872, 0.04876815155148506, -0.022291341796517372, -0.0036038917023688555, 0.0013803628971800208, -0.014312798157334328, 0.0010154192568734288, 0.030026979744434357, 0.03968718647956848, 0.021506568416953087, -0.003919202834367752, 0.050449810922145844, -0.041929397732019424, 0.04817022755742073, 0.05654115974903107, 0.0010054927552118897, -0.01956331543624401, 0.0017785894451662898, 0.002234039129689336, 0.04271417483687401, -0.004778718110173941, 0.0015567037044093013, -0.04962766543030739, -0.003225517924875021, -0.00603529205545783, 0.008721277117729187, 0.02759791538119316, 0.003335293149575591, -0.06341727823019028, -0.002529497491195798, 0.048992373049259186, -0.039836667478084564, 0.0005261027836240828, -0.006890136282891035, 0.0679764524102211, 0.005044980905950069, 0.06136192008852959, 0.03066227398812771, 0.016498956829309464, 0.019918333739042282, 0.039911407977342606, 0.010715913958847523, 0.018488921225070953, 0.018741169944405556, 0.058035969734191895, -0.0022935979068279266, 0.06341727823019028, -0.012378889136016369, 0.0026369369588792324, -0.029354315251111984, 0.009492038749158382, 0.026887880638241768, 0.06633216142654419, -0.020179923623800278, -0.006451035849750042, -0.014004494063556194, -0.024085113778710365, -0.02137577161192894, 0.007184426765888929, -0.02647680789232254, -0.023524560034275055, 0.01770414598286152, 0.03893978148698807, -0.004643251188099384, 0.00006236886838451028, 0.006254842504858971, -0.027168158441781998, 0.0024337363429367542, 0.049478184431791306, 0.06110032647848129, 0.02358061634004116, -0.007175084203481674, -0.007329236250370741, 0.004241521004587412, 0.0343058705329895, -0.024159854277968407, -0.05340205878019333, 0.0497397780418396, 0.0234685055911541, -0.0028004315681755543, 0.0005958800320513546, -0.047871265560388565, -0.036940474063158035, 0.019264353439211845, 0.00883805938065052, -0.010220757685601711, -0.002676642732694745, -0.014817296527326107, -0.033689264208078384, -0.032923173159360886, 0.05620482563972473, -0.03206365928053856, -0.03751971200108528, 0.04850655794143677, -0.037183377891778946, 0.06547264754772186, -0.00526453135535121, 0.03849133849143982, 0.051122475415468216, -0.01679791882634163, 0.02105812542140484, -0.019301723688840866, 0.046301715075969696, 0.02619653195142746, 0.04955292493104935, -0.02201106585562229, -0.015592728741466999, 0.008464356884360313, -0.03776261955499649, 0.03688441589474678, 0.07541312277317047, -0.0033096009865403175, 0.019694112241268158, 0.05041244253516197, 0.057475414127111435, 0.02595362439751625, 0.014723870903253555, -0.019638055935502052, 0.07631000876426697, -0.01561141386628151, -0.04054670035839081, -0.019824907183647156, -0.00025239502429030836, -0.05848441272974014, -0.04902974143624306, 0.05885811150074005, 0.014807953499257565, -0.017274389043450356, -0.02326296828687191, -0.06379098445177078, -0.019114872440695763, -0.015153628773987293, 0.062184061855077744, 0.02587888389825821, -0.008221451193094254, 0.028550855815410614, 0.020759163424372673, -0.023674041032791138, 0.015658127143979073, 0.03282974660396576, -0.03262421116232872, -0.029148779809474945, -0.01624670810997486, -0.002200172282755375, -0.056952230632305145, -0.047946006059646606, 0.029634593054652214, 0.00462690182030201, -0.042527321726083755, -0.006876122206449509, 0.025766773149371147, -0.0707792192697525, -0.05938129499554634, -0.007422661874443293, -0.010136675089597702, -0.05149617791175842, 0.03964981436729431, 0.03266158327460289, -0.016853973269462585, 0.020628366619348526, -0.003141435096040368, -0.05366365239024162, -0.06027818098664284, -0.006651901174336672, 0.08894114941358566, 0.017769545316696167, -0.05919444561004639, 0.04338683933019638, -0.015667468309402466, 0.02001175843179226, -0.017283732071518898, -0.003005967941135168, 0.05945603549480438, 0.08258821070194244, 0.014312798157334328, 0.05385050177574158, -0.04959029704332352, 0.005792385898530483, 0.06053977459669113, 0.009669546969234943, -0.026289956644177437, -0.021431827917695045, -0.03471694514155388, -0.006100689992308617, 0.0035688569769263268, -0.021431827917695045, 0.029036669060587883, -0.025280961766839027, 0.0510103665292263, 0.00994048174470663, -0.000558509782422334, 0.012771276757121086, -0.02671971544623375, 0.037388917058706284, -0.021002069115638733, 0.004584860056638718, -0.04585327208042145, -0.01827404275536537, 0.03197023272514343, -0.01631210558116436, 0.038267116993665695, 0.06252039223909378, 0.012192037887871265, -0.036024902015924454, 0.06494946032762527, -0.0426020622253418, -0.019264353439211845, -0.04447057470679283, 0.004021971020847559, 0.005829756148159504, 0.05186988040804863, 0.03133493661880493, -0.025654662400484085, 0.06050240248441696, 0.016228022053837776, -0.057550154626369476, 0.027990302070975304, 0.013369199819862843, -0.09372454136610031, -0.03467957302927971, 0.06790170818567276, -0.012192037887871265, -0.04873077943921089, -0.011014875024557114, -0.007964530028402805, 0.07399305701255798, 0.001594073954038322, 0.019824907183647156, -0.05291624739766121, 0.018171275034546852, -0.08826848119497299, -0.07298406213521957, -0.054896868765354156, 0.01749861054122448, -0.026346012949943542, 0.031241511926054955, 0.03307265415787697, 0.02584151364862919, -0.0488428920507431, 0.008520412258803844, -0.014798611402511597, 0.034212447702884674, -0.024440130218863487, -0.017657434567809105, -0.027429750189185143, -0.0023403107188642025, -0.0001691878860583529, -0.01512560062110424, -0.0732082799077034, 0.05945603549480438, -0.015265739522874355, -0.04663804918527603, 0.02696262113749981, 0.006521105300635099, 0.059082332998514175, -0.05672800913453102, 0.07503942400217056, 0.04073354974389076, -0.03852870687842369, -0.004461071453988552, -0.0018136240541934967, -0.06405257433652878, 0.022721100598573685, -0.005409340839833021, -0.05048718303442001, -0.03845396637916565, 0.002697663614526391, 0.0164522435516119, -0.017143594101071358, 0.01121106930077076, -0.0004099047218915075, -0.0027420406695455313, -0.05093562602996826, -0.007660897448658943, 0.0007982047973200679, 0.04768441244959831, -0.0016606396529823542, -0.017872313037514687, -0.06039029359817505, 0.035090647637844086, 0.00827750563621521, 0.0039028534665703773, 0.018012451007962227, 0.013649476692080498, -0.04006088897585869, 0.09320135414600372, -0.05071140453219414, 0.028513485565781593, -0.014873351901769638, 0.04536746069788933, 0.03174601122736931, 0.037743933498859406, -0.0562421977519989, -0.059007592499256134, 0.01858234778046608, -0.0008898786036297679, 0.0692470371723175, -0.019357779994606972, 0.028307950124144554, -0.027298953384160995, -0.03146573528647423, -0.020067814737558365, -0.01932040974497795, 0.021506568416953087, -0.017601378262043, 0.03744497150182724, 0.022608989849686623, 0.007343250326812267, 0.00362024107016623, 0.029709333553910255, 0.037501025944948196, 0.005969894118607044, 0.007969201542437077, -0.046339087188243866, -0.046339087188243866, 0.05863389000296593, 0.04211625084280968, 0.03649203106760979, -0.05358891189098358, -0.010846709832549095, 0.005058994982391596, -0.06248302385210991, -0.013042210601270199, -0.014331483282148838, -0.018591688945889473, -0.00013072282308712602, 0.048955000936985016, 0.019152242690324783, -0.02029203437268734, 0.020067814737558365, -0.012005186639726162, -0.005983908195048571, -0.005044980905950069, -0.022571619600057602, -0.02068442292511463, 0.07545049488544464, -0.04050932824611664, -0.009716260246932507, 0.014807953499257565, -0.0020576983224600554, -0.030886495485901833, 0.028494801372289658, 0.02326296828687191, -0.030942551791667938, 0.05444842576980591, 0.027952931821346283, 0.0026135805528610945, 0.04263943433761597, -0.01767611876130104, -0.017022140324115753, -0.0202172938734293, 0.0038304487243294716, 0.03677230700850487, 0.04488164559006691, 0.02535570226609707, -0.008459686301648617, 0.04391001909971237, 0.05725119262933731, -0.0285695418715477, 0.0593065544962883, -0.05990447849035263, 0.03692178800702095, -0.0064790635369718075, -0.04607749357819557, -0.033726632595062256, 0.009174391627311707, -0.02494462952017784, 0.02462698146700859, 0.028719022870063782, 0.014537019655108452, 0.019507260993123055, 0.024683037772774696, -0.06577160954475403, 0.007726295385509729, -0.03968718647956848, 0.0009669547434896231, -0.027653969824314117, -0.06894807517528534, 0.04831970855593681, -0.042041510343551636, -0.00569428876042366, 0.03297922760248184, 0.019638055935502052, -0.029821444302797318, -0.045629050582647324, -0.011453975923359394, -0.009809685871005058, -0.01321971882134676, -0.07773008197546005, 0.0014410895528271794, 0.027672655880451202, -0.012257435359060764, -0.07436675578355789, 0.02941037155687809, -0.006226814817637205, 0.008539097383618355, -0.048880260437726974, -0.025804143399000168, 0.039350852370262146, -0.03849133849143982, -0.01956331543624401, 0.04420898109674454, 0.0007018596515990794, 0.01945120468735695, 0.0003042170428670943, 0.047833893448114395, -0.003949566278606653, 0.029746703803539276, -0.001127529889345169, -0.006768682971596718, -0.009996537119150162, -0.03643597662448883, -0.03731417655944824, -0.06603319942951202, -0.019899647682905197, -0.02262767404317856, -0.05822281911969185, 0.0302885714918375, 0.06879859417676926, -0.02249687910079956, 0.0032955871429294348, 0.0053159152157604694, -0.022328712046146393, -0.025168851017951965, -0.028214523568749428, 0.0016734856180846691, 0.013481310568749905, 0.01973148249089718, 0.007637540809810162, -0.041518326848745346, -0.01362144947052002, -0.050038740038871765, -0.033764004707336426, -0.004594202619045973, -0.01833944022655487, 0.02671971544623375, -0.039911407977342606, 0.015882348641753197, 0.023487189784646034, -0.026252586394548416, -0.04955292493104935, -0.08266294747591019, 0.037743933498859406, -0.02173078991472721, 0.05201936140656471, 0.02253424935042858, 0.009099651128053665, -0.08236398547887802, 0.03374531865119934, -0.020553626120090485, -0.007432004436850548, 0.03942559286952019, -0.012902071699500084, 0.011304494924843311, -0.0071937693282961845, 0.018946707248687744, 0.08998751640319824, -0.04211625084280968, -0.010463664308190346, -0.04002351686358452, 0.030905181542038918, 0.06805118918418884, 0.012948784977197647, -0.037631820887327194, -0.0200864989310503, -0.03382005915045738, 0.015331136994063854, -0.0024664353113621473, 0.070143923163414, 0.008235464803874493, -0.013565394096076488, 0.03318476304411888, 0.01179030817002058, 0.0007263838779181242, 0.012164009734988213, 0.06842489540576935, -0.02354324609041214, -0.01002456434071064, 0.039874035865068436, -0.04921659454703331, 0.00021458686387632042, 0.03182075172662735, -0.03604358807206154, -0.019712796434760094, 0.026626288890838623, -0.016611067578196526, -0.01068788580596447, -0.028345320373773575, -0.03796815499663353, -0.010351553559303284, 0.009295844472944736, 0.07698267698287964, 0.04831970855593681, -0.008903457783162594, 0.04746019467711449, 0.014555704779922962, 0.05119721591472626, 0.012481656856834888, -0.00717041315510869, -0.03905189037322998, 0.03432455658912659, 0.03852870687842369, -0.03311002254486084, -0.03441798314452171, 0.057587526738643646, -0.018105877563357353, 0.014350168406963348, 0.0577743761241436, -0.007249824702739716, -0.03604358807206154, -0.08871692419052124, -0.02318822778761387, 0.02671971544623375, 0.017451897263526917, -0.025318332016468048, 0.07974807173013687, -0.028345320373773575, -0.007955187931656837 ]
351
funcsigs
_bind
Private method. Don't use directly.
def _bind(self, args, kwargs, partial=False): '''Private method. Don't use directly.''' arguments = OrderedDict() parameters = iter(self.parameters.values()) parameters_ex = () arg_vals = iter(args) if partial: # Support for binding arguments to 'functools.partial' objects. # See 'functools.partial' case in 'signature()' implementation # for details. for param_name, param in self.parameters.items(): if (param._partial_kwarg and param_name not in kwargs): # Simulating 'functools.partial' behavior kwargs[param_name] = param.default while True: # Let's iterate through the positional arguments and corresponding # parameters try: arg_val = next(arg_vals) except StopIteration: # No more positional arguments try: param = next(parameters) except StopIteration: # No more parameters. That's it. Just need to check that # we have no `kwargs` after this while loop break else: if param.kind == _VAR_POSITIONAL: # That's OK, just empty *args. Let's start parsing # kwargs break elif param.name in kwargs: if param.kind == _POSITIONAL_ONLY: msg = '{arg!r} parameter is positional only, ' \ 'but was passed as a keyword' msg = msg.format(arg=param.name) raise TypeError(msg) parameters_ex = (param,) break elif (param.kind == _VAR_KEYWORD or param.default is not _empty): # That's fine too - we have a default value for this # parameter. So, lets start parsing `kwargs`, starting # with the current parameter parameters_ex = (param,) break else: if partial: parameters_ex = (param,) break else: msg = '{arg!r} parameter lacking default value' msg = msg.format(arg=param.name) raise TypeError(msg) else: # We have a positional argument to process try: param = next(parameters) except StopIteration: raise TypeError('too many positional arguments') else: if param.kind in (_VAR_KEYWORD, _KEYWORD_ONLY): # Looks like we have no parameter for this positional # argument raise TypeError('too many positional arguments') if param.kind == _VAR_POSITIONAL: # We have an '*args'-like argument, let's fill it with # all positional arguments we have left and move on to # the next phase values = [arg_val] values.extend(arg_vals) arguments[param.name] = tuple(values) break if param.name in kwargs: raise TypeError('multiple values for argument ' '{arg!r}'.format(arg=param.name)) arguments[param.name] = arg_val # Now, we iterate through the remaining parameters to process # keyword arguments kwargs_param = None for param in itertools.chain(parameters_ex, parameters): if param.kind == _POSITIONAL_ONLY: # This should never happen in case of a properly built # Signature object (but let's have this check here # to ensure correct behaviour just in case) raise TypeError('{arg!r} parameter is positional only, ' 'but was passed as a keyword'. \ format(arg=param.name)) if param.kind == _VAR_KEYWORD: # Memorize that we have a '**kwargs'-like parameter kwargs_param = param continue param_name = param.name try: arg_val = kwargs.pop(param_name) except KeyError: # We have no value for this parameter. It's fine though, # if it has a default value, or it is an '*args'-like # parameter, left alone by the processing of positional # arguments. if (not partial and param.kind != _VAR_POSITIONAL and param.default is _empty): raise TypeError('{arg!r} parameter lacking default value'. \ format(arg=param_name)) else: arguments[param_name] = arg_val if kwargs: if kwargs_param is not None: # Process our '**kwargs'-like parameter arguments[kwargs_param.name] = kwargs else: raise TypeError('too many keyword arguments %r' % kwargs) return self._bound_arguments_cls(self, arguments)
(self, args, kwargs, partial=False)
[ 0.0077104936353862286, -0.022315075621008873, -0.0066118743270635605, 0.012215840630233288, 0.0037494164425879717, 0.01511861477047205, -0.013959521427750587, 0.028926949948072433, 0.04209022596478462, -0.03969140350818634, -0.038098908960819244, 0.029068056493997574, -0.05112107843160629, -0.02106527052819729, -0.047129761427640915, 0.05732978880405426, 0.053540054708719254, 0.09538838267326355, -0.05527365580201149, -0.0469684973359108, 0.011006351560354233, 0.01084508653730154, -0.02632654830813408, 0.038602862507104874, 0.019684435799717903, -0.046686284244060516, 0.03549850732088089, -0.005286475643515587, 0.0702713206410408, 0.032253045588731766, -0.022073177620768547, -0.021569224074482918, 0.028140781447291374, 0.0314265601336956, 0.048984311521053314, -0.04188864305615425, 0.01998680830001831, 0.06619937717914581, 0.0008050662581808865, -0.015874546021223068, -0.01615675911307335, -0.05390290170907974, 0.038441598415374756, -0.003053960157558322, 0.04132421314716339, 0.03477281332015991, 0.005089933518320322, 0.08990536630153656, -0.035679932683706284, -0.0036435863003134727, 0.024512315168976784, -0.03215225413441658, 0.04539616033434868, -0.05204835161566734, -0.030055806040763855, 0.037655431777238846, 0.02753603830933571, 0.06583652645349503, 0.009751507081091404, 0.011429673060774803, 0.031124189496040344, 0.04209022596478462, 0.024633264169096947, -0.023020610213279724, -0.022395707666873932, -0.03892539441585541, -0.04023567587137222, -0.049185894429683685, -0.0038199699483811855, 0.02298029512166977, -0.036748312413692474, -0.01928127370774746, -0.016166839748620987, 0.02447199821472168, 0.00658163707703352, -0.0037141398061066866, -0.042291805148124695, -0.029209164902567863, 0.024351049214601517, -0.009252591989934444, 0.01671110838651657, -0.04338034614920616, -0.037655431777238846, -0.031063714995980263, -0.015461303293704987, 0.04152579605579376, -0.08692196011543274, 0.050193801522254944, 0.09264687448740005, -0.017910519614815712, -0.07079543173313141, 0.022516656666994095, 0.034893762320280075, 0.07152112573385239, 0.007282132748514414, -0.04950842633843422, -0.033099688589572906, -0.05362068861722946, -0.02269808016717434, -0.021609541028738022, -0.03957045450806618, -0.013072562403976917, 0.0015395790105685592, 0.0011578339617699385, 0.032253045588731766, -0.007337567862123251, 0.0012699636863544583, -0.022234443575143814, 0.007851600646972656, 0.001921323942951858, 0.0042281728237867355, -0.05898275598883629, -0.057370103895664215, 0.038743969053030014, -0.04394477605819702, 0.016539765521883965, -0.004334002733230591, -0.013989758677780628, -0.03948982059955597, 0.0234842486679554, -0.027495721355080605, 0.010835007764399052, -0.016610318794846535, 0.020359734073281288, 0.02090400457382202, -0.00188478734344244, 0.0164188165217638, 0.038098908960819244, 0.030257388949394226, -0.03902618587017059, 0.03729258477687836, -0.0011824016692116857, -0.03912697732448578, 0.00017291915719397366, 0.0007364025223068893, -0.013677307404577732, 0.003943438641726971, 0.02084353007376194, -0.09885558485984802, 0.031547509133815765, 0.04204990714788437, 0.027273980900645256, 0.009585201740264893, 0.006793297827243805, 0.012840744107961655, -0.03350285068154335, 0.04021551460027695, -0.050193801522254944, -0.021609541028738022, 0.014332447201013565, 0.008330357261002064, -0.005306633654981852, 0.023806778714060783, 0.022214284166693687, -0.019190561026334763, -0.033321429044008255, 0.024875160306692123, -0.05313689261674881, -0.06269185990095139, 0.013596674427390099, -0.007594584487378597, -0.03793764486908913, -0.006485885940492153, -0.045194581151008606, 0.022637605667114258, 0.018051626160740852, 0.023081084713339806, -0.019150245934724808, 0.005397345405071974, 0.036607205867767334, -0.0036738235503435135, 0.04874241352081299, 0.012397264130413532, 0.016942927613854408, 0.03971156105399132, 0.03886491805315018, -0.024855002760887146, -0.03130561113357544, 0.0003543425409588963, -0.03128545358777046, 0.06902151554822922, -0.04394477605819702, -0.012961692176759243, -0.0661187395453453, 0.058216746896505356, 0.025943543761968613, 0.0003370191261637956, 0.031970832496881485, -0.0003173334407620132, -0.018938584253191948, 0.0030867173336446285, -0.004402036778628826, 0.03271668404340744, 0.011429673060774803, -0.03715147823095322, 0.047774821519851685, -0.0012309072772040963, 0.05031475052237511, 0.038159385323524475, 0.03100324049592018, -0.020803214982151985, -0.09377572685480118, -0.010240341536700726, -0.022294918075203896, -0.023141559213399887, -0.0008378232596442103, 0.03479297086596489, 0.034450285136699677, -0.014604582451283932, -0.04354161024093628, -0.014271972700953484, -0.07853616774082184, 0.028060149401426315, 0.010341132991015911, 0.0018570699030533433, -0.05805548280477524, 0.027415089309215546, -0.029551852494478226, 0.018374156206846237, -0.005603966768831015, 0.09425952285528183, -0.014705372974276543, 0.03217241168022156, -0.028483470901846886, 0.025338798761367798, -0.027435246855020523, 0.07111796736717224, -0.0014677655417472124, 0.006017208565026522, -0.001452646916732192, 0.02225460112094879, 0.001954081002622843, 0.02376646362245083, 0.07135986536741257, -0.01265932060778141, -0.09256623685359955, 0.021871596574783325, -0.05325784161686897, 0.0009348343592137098, -0.021629698574543, 0.029007581993937492, 0.03291826322674751, -0.032615892589092255, 0.031769249588251114, -0.06208711117506027, -0.017174746841192245, 0.04209022596478462, 0.07389979064464569, 0.054225433617830276, 0.017325932160019875, -0.022738397121429443, 0.054386697709560394, -0.048258617520332336, 0.015269801020622253, -0.04491236433386803, 0.01613660156726837, 0.009292908944189548, 0.050032537430524826, 0.002395040588453412, 0.0038275292608886957, 0.016761504113674164, 0.015017824247479439, 0.005981931928545237, 0.07982628792524338, 0.022919820621609688, 0.01558225229382515, 0.04209022596478462, -0.05511239171028137, -0.0246735792607069, 0.03348269313573837, 0.028503628447651863, -0.028463313356041908, 0.015420987270772457, 0.00540742464363575, -0.022294918075203896, 0.007362765725702047, 0.013939362950623035, 0.0011855514021590352, -0.00007405759242828935, 0.0026407181285321712, 0.09909748286008835, -0.031124189496040344, 0.01885795220732689, 0.00704527460038662, -0.0007578205550089478, 0.07474642992019653, 0.0020195948891341686, 0.03088229149580002, 0.029854224994778633, -0.01800123043358326, 0.02872536890208721, -0.012498054653406143, 0.05640251189470291, 0.021710330620408058, -0.013909125700592995, 0.010114353150129318, -0.0698278397321701, -0.027515878900885582, 0.05749105289578438, -0.045839641243219376, 0.010824928060173988, -0.004112263210117817, 0.02604433335363865, 0.004361720290035009, 0.043219082057476044, -0.05571713671088219, 0.04021551460027695, 0.0028347403276711702, -0.015400828793644905, -0.019009139388799667, 0.0010343652684241533, 0.005503175780177116, -0.0014828841667622328, -0.030338020995259285, 0.04781514033675194, 0.005770271178334951, 0.04632343724370003, -0.04757324233651161, 0.01361683290451765, 0.07200492173433304, 0.009726309217512608, 0.007599623873829842, -0.01829352416098118, -0.04297718405723572, -0.0008063261047936976, 0.024693738669157028, -0.039086658507585526, 0.015340354293584824, -0.004679211415350437, 0.02191191352903843, -0.03755464032292366, 0.046847548335790634, -0.023081084713339806, 0.04950842633843422, -0.03223288804292679, -0.036445941776037216, -0.005331831518560648, 0.02055123820900917, 0.027213506400585175, -0.07011006027460098, 0.015552015043795109, -0.0087839150801301, -0.03483328968286514, -0.007730651646852493, -0.0014740650076419115, -0.021932071074843407, 0.022173969075083733, -0.005135289393365383, 0.12360979616641998, -0.06337723135948181, -0.025056583806872368, -0.010542714037001133, -0.0014740650076419115, 0.0026482774410396814, 0.05454796180129051, -0.03463170677423477, -0.00153327954467386, -0.03477281332015991, -0.007317409850656986, -0.04515426233410835, 0.10925719141960144, -0.011721965856850147, -0.03007596544921398, 0.0100639583542943, 0.07035195827484131, 0.006838653702288866, -0.031628143042325974, -0.04077994450926781, 0.02062179148197174, -0.004898431245237589, 0.02759651280939579, -0.07244840264320374, -0.03572024777531624, 0.027354614809155464, -0.030640393495559692, -0.020500842481851578, 0.009998444467782974, 0.028503628447651863, -0.02183127962052822, -0.03890523687005043, 0.0028070227708667517, -0.04073962941765785, 0.055313970893621445, -0.025520222261548042, -0.01615675911307335, -0.06305470317602158, 0.013636990450322628, -0.027515878900885582, 0.03060007654130459, 0.02011783793568611, -0.038602862507104874, -0.015209326520562172, 0.020460525527596474, -0.0031723894644528627, 0.05087918043136597, -0.024149468168616295, 0.0388447605073452, -0.004273528698831797, -0.05620093271136284, 0.009610399603843689, 0.021589381620287895, -0.08547057211399078, -0.012810506857931614, 0.01727553829550743, 0.06539305299520493, -0.0325755774974823, 0.06378039717674255, 0.03386569768190384, 0.009076208807528019, 0.0374336913228035, -0.011984022334218025, -0.0351356603205204, -0.07535117864608765, -0.009212275967001915, 0.030559759587049484, 0.0027213506400585175, -0.005755152553319931, -0.0026558367535471916, 0.022798871621489525, 0.01323382742702961, 0.0595875009894371, 0.009010694921016693, 0.012034417130053043, 0.027979517355561256, 0.03791748732328415, 0.06269185990095139, -0.08966346830129623, -0.030196914449334145, 0.016630476340651512, -0.021670015528798103, -0.05930528789758682, 0.005755152553319931, -0.04761355742812157, -0.007015037350356579, -0.03535740077495575, 0.01422157697379589, -0.010633425787091255, -0.007110788486897945, 0.05660409480333328, 0.01720498315989971, -0.05241119861602783, 0.01521940529346466, -0.020430289208889008, -0.011359119787812233, -0.018263285979628563, -0.02362535521388054, 0.03422854468226433, 0.030499285086989403, -0.004832917358726263, -0.02545974776148796, 0.03953013941645622, 0.026004018262028694, 0.056805677711963654, -0.07817331701517105, -0.02354472316801548, -0.07893932610750198, -0.05769263580441475, -0.00611799955368042, 0.006808416452258825, -0.006894088350236416, 0.07535117864608765, -0.005986971314996481, -0.012155366130173206, 0.0038678457494825125, -0.049387477338314056, 0.02360519766807556, 0.060071296989917755, -0.011429673060774803, -0.05555586889386177, -0.003893043380230665, 0.04172737896442413, 0.0103512117639184, -0.014574345201253891, -0.0300154909491539, -0.03791748732328415, 0.0274554044008255, 0.047976404428482056, -0.005372148007154465, -0.011893310584127903, -0.004245811142027378, 0.042009592056274414, -0.016741346567869186, 0.029692959040403366, 0.03273684158921242, -0.013274144381284714, -0.002670955378562212, 0.001411070697940886, -0.006072643678635359, -0.02340361662209034, 0.03924792632460594, -0.0557977668941021, 0.007050313986837864, 0.08228558301925659, 0.05688630789518356, 0.03634515032172203, -0.004810239188373089, 0.002189679304137826, 0.0207024235278368, 0.033402059227228165, 0.0018772280309349298, -0.03553882613778114, -0.016690950840711594, 0.0483795665204525, -0.025782277807593346, 0.045355845242738724, -0.09151801466941833, -0.005810587666928768, 0.030136439949274063, -0.05470922961831093, 0.0029783672653138638, -0.036103252321481705, 0.011449831537902355, 0.021528907120227814, -0.00033890895429067314, -0.0321320965886116, -0.0009896393166854978, -0.001729821553453803, 0.001113108010031283, -0.054951127618551254, -0.031184663996100426, 0.05462859570980072, 0.042936865240335464, 0.015824150294065475, -0.0520886667072773, 0.008078379556536674, -0.007629861123859882, -0.020379893481731415, -0.06918278336524963, 0.054306063801050186, -0.023867253214120865, 0.014775926247239113, -0.014362684451043606, -0.00009362517448607832, -0.017184825614094734, 0.011399435810744762, 0.004349121358245611, 0.011459910310804844, -0.026266073808073997, -0.006531241815537214, 0.03263605013489723, 0.017325932160019875, 0.05192740261554718, -0.08409981429576874, 0.010552792809903622, -0.0065010045655071735, 0.060071296989917755, -0.00463889492675662, -0.02475421316921711, -0.03797795996069908, -0.030539602041244507, -0.05583808571100235, -0.007695375010371208, 0.018253207206726074, 0.04088073596358299, -0.03080165758728981, -0.038441598415374756, 0.02354472316801548, 0.030539602041244507, -0.013677307404577732, 0.031970832496881485, 0.014403000473976135, 0.03572024777531624, -0.029269639402627945, -0.001096099615097046, -0.04176769405603409, 0.005755152553319931, 0.024310732260346413, 0.0017109232721850276, -0.02709255740046501, 0.021145902574062347, -0.006400213576853275, 0.011409514583647251, -0.04587995633482933, 0.004069427028298378, -0.005926497280597687, 0.026507971808314323, 0.0027289099525660276, -0.03729258477687836, -0.03805859386920929, -0.03166845813393593, 0.08047135174274445, -0.03259573504328728, -0.03850207105278969, 0.0022136173211038113, -0.004044229630380869, 0.06998910754919052, 0.001064602518454194, 0.03763527050614357, -0.04382382705807686, 0.0034747617319226265, -0.07986660301685333, 0.008078379556536674, -0.003220265032723546, -0.08732511848211288, -0.021790964528918266, 0.05753136798739433, -0.008038063533604145, -0.01180259883403778, 0.016207154840230942, -0.0557977668941021, -0.05910370498895645, 0.00974142737686634, -0.02646765485405922, 0.020158153027296066, 0.0017776971217244864, 0.027616670355200768, -0.04297718405723572, 0.06458672136068344, -0.026911133900284767, -0.005039538256824017, 0.0010135771008208394, -0.013405172154307365, 0.031970832496881485, -0.010089155286550522, -0.06652190536260605, 0.03684910386800766, -0.050959810614585876, 0.0348736047744751, 0.06821519136428833, 0.024008359760046005, -0.046202488243579865, -0.01793067716062069, -0.026124967262148857, 0.015269801020622253, -0.04118310660123825, -0.047411978244781494, -0.015360512770712376, -0.0526127815246582, -0.008274922147393227, -0.026991767808794975, -0.010194986127316952, 0.007448437623679638, 0.06591716408729553, -0.016106365248560905, 0.04269496724009514, -0.003648625686764717, -0.005006781313568354, -0.027415089309215546, -0.04188864305615425, 0.051604870706796646, 0.047774821519851685, -0.06281280517578125, -0.019966650754213333, 0.017467040568590164, 0.014483633451163769, 0.07349662482738495, 0.015451224520802498, -0.025379115715622902, 0.07744762301445007, 0.018817635253071785, 0.047331344336271286, 0.050677597522735596, -0.023585040122270584, -0.018374156206846237, 0.027576353400945663, -0.01821289211511612, 0.0030413614585995674, -0.016045890748500824, 0.04047757014632225, -0.014009916223585606, -0.007478674873709679, -0.025520222261548042, 0.020359734073281288, -0.04073962941765785, -0.020571395754814148, -0.0034999593626707792, -0.060272879898548126, -0.006107920315116644, 0.060635726898908615, 0.050959810614585876, -0.009706150740385056, -0.043138448148965836, 0.004507867153733969, 0.0029153728391975164, -0.039308398962020874, -0.05237088352441788, 0.00012512228568084538, 0.023423774167895317, 0.0064808460883796215, 0.0029657683335244656, -0.014745688997209072, -0.02461310476064682, -0.02261744812130928, 0.013344697654247284, -0.02539927326142788, 0.014594502747058868, 0.015531857497990131, 0.008234605193138123, -0.0035075186751782894, -0.05212898552417755, 0.01365714892745018, -0.0428159162402153, 0.012558529153466225, 0.012669399380683899, -0.05341910570859909, -0.06599779427051544, -0.03507518768310547, -0.07889901101589203, 0.04567837715148926, -0.027999674901366234, -0.007715533021837473, 0.00888974592089653, -0.01864629238843918, -0.008768796920776367, -0.007070472463965416, 0.02410915121436119, -0.005931536667048931, -0.001332957879640162, 0.06039382889866829, 0.0023345660883933306, -0.0031975870952010155, -0.013556358404457569, 0.01561248954385519, -0.035679932683706284, 0.02801983244717121, 0.0037872130051255226, 0.024169625714421272, 0.03761511296033859, 0.008133814670145512, -0.011197853833436966, -0.012931454926729202, -0.013536199927330017, 0.05116139352321625, -0.03469218313694, 0.023746304214000702, -0.037030529230833054, 0.016318025067448616, -0.01665063388645649, 0.029007581993937492, -0.03273684158921242, 0.027999674901366234, 0.014554186724126339, -0.029753433540463448, 0.008224526420235634, -0.002514729741960764, -0.0367281548678875, 0.0642641931772232, 0.007579465862363577, -0.07184366136789322, 0.026427339762449265, -0.024855002760887146, 0.08014881610870361, -0.013465646654367447, 0.027415089309215546, 0.0823662132024765, 0.021327326074242592, -0.0006189182749949396, -0.04773450642824173, 0.042009592056274414, -0.09611407667398453, 0.046686284244060516, 0.0683361366391182, -0.015431066043674946, -0.02830204740166664, 0.0001891401770990342, -0.041445162147283554, 0.029753433540463448, 0.026205599308013916, -0.011439751833677292, -0.06297407299280167, -0.09853305667638779, -0.047331344336271286, 0.04334003105759621, 0.002086368855088949, 0.034309178590774536, 0.07107765227556229, 0.0009820800041779876, 0.04358192905783653 ]
352
funcsigs
bind
Get a BoundArguments object, that maps the passed `args` and `kwargs` to the function's signature. Raises `TypeError` if the passed arguments can not be bound.
def bind(*args, **kwargs): '''Get a BoundArguments object, that maps the passed `args` and `kwargs` to the function's signature. Raises `TypeError` if the passed arguments can not be bound. ''' return args[0]._bind(args[1:], kwargs)
(*args, **kwargs)
[ -0.022356372326612473, -0.05672409012913704, 0.04533761367201805, -0.03773505985736847, -0.008084224537014961, 0.052662450820207596, 0.02397061511874199, 0.034853722900152206, 0.022807667031884193, -0.05155157297849655, -0.03960965946316719, 0.013165612705051899, -0.024595482274889946, 0.006916936952620745, -0.04967697337269783, 0.0204296987503767, 0.029472921043634415, 0.05148214474320412, -0.032979123294353485, -0.058529261499643326, 0.008027812466025352, 0.011143472045660019, 0.033170051872730255, -0.021488500759005547, -0.009563945233821869, -0.003922779578715563, 0.046830352395772934, 0.022182798013091087, 0.08164936304092407, 0.049989406019449234, 0.0003322320990264416, -0.022460518404841423, 0.026713088154792786, -0.01590808667242527, 0.022634092718362808, -0.027008164674043655, 0.01794758439064026, 0.05273187905550003, 0.03752676770091057, -0.04558061808347702, -0.02308538556098938, -0.05346089228987694, 0.035252947360277176, 0.0217488631606102, 0.044573888182640076, 0.004894795827567577, 0.003898913273587823, -0.027216454967856407, -0.020985135808587074, 0.03648532181978226, 0.00041305265040136874, -0.011447226628661156, 0.08442655205726624, -0.042109131813049316, 0.0074333203956484795, 0.03565216809511185, -0.014710424467921257, 0.05346089228987694, -0.015396042726933956, -0.010544640012085438, -0.005220247898250818, 0.028240542858839035, -0.00026388722471892834, -0.02436983585357666, 0.028431475162506104, -0.04162312299013138, -0.06849242746829987, -0.027598317712545395, -0.024248333647847176, -0.03058379702270031, -0.04433088377118111, -0.018832813948392868, -0.021991867572069168, -0.0013582190731540322, -0.014354596845805645, 0.005602111574262381, -0.017444219440221786, 0.013226363807916641, 0.033170051872730255, 0.016732564195990562, 0.00044207210885360837, -0.025567498058080673, -0.04221327602863312, -0.00057984673185274, -0.04561533406376839, -0.008813236840069294, -0.09775706380605698, 0.04183141142129898, 0.05051012709736824, -0.07241521030664444, -0.061341166496276855, -0.008696073666214943, 0.0042655891738832, 0.08012191206216812, -0.009034543298184872, -0.06047329679131508, -0.027737177908420563, -0.008257798850536346, -0.004319831263273954, 0.01944032497704029, -0.013964054174721241, 0.015552259981632233, -0.0035973279736936092, 0.02367553859949112, 0.0032523488625884056, -0.00887832697480917, 0.024491338059306145, -0.032423682510852814, -0.05609922111034393, 0.007481053471565247, 0.00647432217374444, -0.04801065847277641, -0.028917482122778893, 0.0027424744330346584, -0.03398585319519043, 0.03853350132703781, 0.02421361766755581, -0.027997538447380066, -0.008813236840069294, 0.024821128696203232, -0.026175009086728096, 0.028795979917049408, 0.035252947360277176, -0.029663851484656334, 0.05609922111034393, 0.05509249120950699, -0.02450869418680668, -0.03230218216776848, 0.01724460907280445, -0.0652986615896225, 0.038602929562330246, -0.04030395671725273, -0.06293804943561554, 0.0502324104309082, -0.010596713051199913, 0.011967949569225311, -0.013235042802989483, 0.042838145047426224, -0.03572159633040428, 0.050683703273534775, -0.008322888985276222, 0.035044655203819275, 0.013530118390917778, 0.011846447363495827, 0.026313867419958115, -0.03658946976065636, 0.03521823137998581, -0.016385415568947792, 0.03853350132703781, 0.030358148738741875, 0.025532783940434456, -0.00986770074814558, 0.052211157977581024, 0.06838828325271606, -0.05169043317437172, 0.017209894955158234, 0.007685003336519003, -0.027928108349442482, -0.016585025936365128, 0.004734239540994167, -0.0041722930036485195, -0.023467248305678368, -0.03259725868701935, -0.06210489198565483, 0.002933406038209796, 0.007841220125555992, 0.0171144288033247, -0.013573512434959412, 0.022703520953655243, 0.03197238966822624, -0.014519492164254189, 0.010119383223354816, 0.0373879112303257, 0.008704752661287785, 0.08713430911302567, 0.0032827244140207767, -0.010015239007771015, 0.004122390411794186, -0.008036491461098194, 0.00964205339550972, 0.10164512693881989, -0.01987425982952118, -0.041310690343379974, -0.012670925818383694, 0.06679140031337738, 0.047975942492485046, -0.011395154520869255, 0.024300405755639076, 0.0013766613556072116, -0.0185898095369339, -0.00482102669775486, 0.016854066401720047, 0.04040810465812683, -0.03384699299931526, -0.02525506354868412, 0.04731636121869087, -0.05110028013586998, 0.06047329679131508, -0.004951207432895899, 0.027216454967856407, 0.0009237408521585166, -0.06786756217479706, 0.0017194707179442048, 0.033916424959897995, 0.016697850078344345, -0.0263832975178957, 0.017496291548013687, 0.008296852931380272, 0.02343253418803215, -0.06450022011995316, -0.008713430725038052, -0.07623384147882462, 0.004000888206064701, 0.04818423464894295, 0.009919772855937481, -0.0029854783788323402, -0.01085707452148199, -0.047281645238399506, 0.046830352395772934, 0.0033109302166849375, 0.059362418949604034, 0.009485837072134018, 0.02332838997244835, -0.015456793829798698, 0.014944749884307384, -0.029802711680531502, 0.036381177604198456, 0.0043480368331074715, 0.02702552266418934, 0.01031031459569931, 0.01031031459569931, 0.0148232476785779, 0.02313745766878128, 0.05321788787841797, 0.025984076783061028, -0.0774141475558281, 0.025671642273664474, -0.02535920962691307, 0.03535709157586098, 0.0003200276696588844, 0.011455905623733997, 0.11941913515329361, -0.00044207210885360837, 0.06290333718061447, -0.01869395561516285, -0.034853722900152206, 0.03839464113116264, 0.03098301775753498, 0.004985922481864691, -0.0069820270873606205, -0.05637694150209427, 0.035929884761571884, -0.005159496795386076, 0.004369733855128288, -0.03690190240740776, 0.023241601884365082, -0.009624696336686611, 0.005567396525293589, -0.04603191092610359, 0.0021555761341005564, 0.01124761626124382, 0.023849112913012505, -0.017964942380785942, 0.03348248824477196, 0.020099906250834465, 0.02308538556098938, -0.0014829756692051888, -0.04849666729569435, -0.03334362804889679, 0.044018447399139404, 0.06578467041254044, -0.02397061511874199, 0.025689000263810158, 0.03219803795218468, -0.06557638198137283, -0.020533842965960503, 0.0028683156706392765, 0.010154098272323608, 0.002920388011261821, -0.03284026309847832, 0.05943185091018677, -0.03171202912926674, -0.042247992008924484, -0.02466491237282753, -0.014901355840265751, 0.08470427244901657, 0.004660470876842737, 0.004899135325103998, 0.00559777207672596, -0.021436428651213646, 0.07185976952314377, -0.0002606326888781041, 0.03334362804889679, 0.011898520402610302, -0.015994874760508537, 0.030514366924762726, -0.07387323677539825, -0.02565428614616394, 0.02471698448061943, -0.03582574054598808, -0.014111592434346676, -0.023744968697428703, 0.014215737581253052, 0.055856216698884964, 0.01919732056558132, -0.07199863344430923, 0.027216454967856407, 0.002757662208750844, -0.08289910107851028, -0.013156933709979057, 0.019718043506145477, -0.0035430858843028545, -0.05568264424800873, -0.05481477081775665, 0.054537054151296616, 0.02244316041469574, -0.0005717104650102556, -0.00021886637841816992, -0.03205917775630951, 0.046205487102270126, -0.033760204911231995, -0.005363446660339832, 0.050683703273534775, -0.014597601257264614, -0.01612505502998829, 0.06231318414211273, -0.013009395450353622, 0.00594492070376873, 0.015630368143320084, 0.03323948383331299, -0.010206170380115509, 0.06502094119787216, 0.048566095530986786, 0.034645434468984604, -0.02407475933432579, -0.008184029720723629, 0.05248887464404106, 0.02978535369038582, -0.005628147628158331, -0.06033443659543991, -0.013773122802376747, 0.03665889799594879, 0.005797382444143295, -0.003599497489631176, 0.014432705007493496, 0.012193595990538597, -0.01609901897609234, 0.009390370920300484, 0.0715126246213913, -0.02509884722530842, -0.013356544077396393, -0.042942289263010025, -0.06574995815753937, -0.04745522141456604, 0.016906138509511948, 0.022929169237613678, -0.01186380535364151, 0.0074376598931849, -0.013781801797449589, -0.05505777522921562, 0.07144319266080856, -0.024751698598265648, -0.013972733169794083, -0.04790651425719261, 0.055960360914468765, 0.054884202778339386, -0.014510814100503922, -0.04356715455651283, -0.006539412774145603, 0.03832521289587021, 0.02115871012210846, -0.04443502798676491, -0.02910841442644596, 0.06620124727487564, -0.04356715455651283, -0.0626603290438652, 0.02407475933432579, -0.014354596845805645, -0.03087887167930603, 0.025168277323246002, -0.019961047917604446, -0.045754190534353256, 0.06450022011995316, -0.06429193168878555, -0.02140171453356743, -0.04926039278507233, 0.013755765743553638, -0.017322717234492302, -0.021384356543421745, 0.008895684033632278, -0.03596460074186325, -0.026765160262584686, -0.016784638166427612, 0.0232242438942194, 0.012028700672090054, -0.04238685220479965, 0.02407475933432579, 0.02171414904296398, -0.011360439471900463, 0.0026947413571178913, -0.0022694843355566263, -0.03226746618747711, 0.002681723330169916, -0.004328509792685509, 0.034853722900152206, 0.03377756476402283, 0.02881333790719509, 0.04783708602190018, 0.042109131813049316, -0.03631174936890602, -0.02747681550681591, 0.007481053471565247, -0.08505141735076904, -0.025775786489248276, 0.025879932567477226, 0.05904998630285263, 0.019058460369706154, -0.044573888182640076, -0.03278819099068642, -0.013660299591720104, 0.05259302258491516, -0.022321658208966255, -0.014276488684117794, 0.016880102455615997, 0.05380804091691971, 0.04873967170715332, -0.025532783940434456, 0.012089451774954796, 0.03776977211236954, 0.028848053887486458, -0.05460648238658905, 0.019839545711874962, -0.027268527075648308, -0.005879830103367567, -0.05016297847032547, -0.016211841255426407, -0.0004485811514314264, 0.0026838930789381266, 0.0469692125916481, 0.045754190534353256, -0.02801489643752575, 0.022165441885590553, 0.008010455407202244, -0.03171202912926674, -0.021853007376194, -0.06293804943561554, 0.03572159633040428, -0.004547647200524807, -0.004196159541606903, -0.030497008934617043, 0.03547859191894531, -0.013408617116510868, 0.07880274206399918, -0.042595140635967255, 0.015100966207683086, -0.04603191092610359, -0.053495608270168304, -0.03631174936890602, -0.012992038391530514, 0.010015239007771015, 0.04203970357775688, -0.029663851484656334, -0.02608822099864483, -0.02421361766755581, -0.06429193168878555, 0.030011000111699104, 0.043775446712970734, -0.01928410679101944, -0.03034079261124134, 0.03408999741077423, 0.051725149154663086, -0.00791498925536871, -0.0018236152827739716, -0.013417295180261135, 0.025168277323246002, 0.0691867247223854, 0.0024300406221300364, -0.014293845742940903, 0.014163664542138577, -0.0030201931949704885, -0.012913930229842663, 0.0023258959408849478, 0.03811692073941231, 0.06047329679131508, -0.022113369777798653, -0.01351276133209467, -0.0011607783380895853, 0.007316157687455416, -0.034558650106191635, 0.008869647979736328, -0.00009722874528961256, 0.049399252980947495, 0.09595188498497009, 0.018624525517225266, 0.029629137367010117, 0.010275600478053093, -0.02846618928015232, 0.016854066401720047, 0.01855509541928768, -0.0036602485924959183, -0.02284238114953041, 0.024352477863430977, 0.02584521658718586, 0.00013675758964382112, 0.03507937118411064, -0.047871798276901245, 0.0467609241604805, 0.008374961093068123, -0.053599752485752106, 0.011655515991151333, -0.008639662526547909, 0.03665889799594879, -0.026904020458459854, 0.01944032497704029, -0.043983735144138336, 0.037665627896785736, 0.003000666154548526, -0.02204393967986107, -0.08845347911119461, -0.005710595287382603, 0.027511531487107277, 0.05158628895878792, -0.002549372846260667, -0.058390405029058456, 0.033569276332855225, -0.06050800904631615, 0.06394477933645248, -0.02214808389544487, 0.06734684109687805, 0.007975740358233452, 0.05412047356367111, 0.030323434621095657, 0.02204393967986107, -0.056897662580013275, 0.006213960703462362, 0.026869306340813637, -0.0403386726975441, -0.025879932567477226, -0.0217488631606102, 0.031590528786182404, -0.02574107237160206, 0.008921720087528229, -0.05169043317437172, 0.030549081042408943, -0.0264353696256876, 0.028049610555171967, -0.0377003438770771, -0.08178821951150894, -0.054085761308670044, -0.05894584208726883, -0.048114802688360214, -0.019995762035250664, 0.02303331345319748, 0.04672620818018913, -0.07644212990999222, -0.04231742024421692, 0.0008499717805534601, 0.0030028359033167362, -0.05731424316763878, 0.013738407753407955, 0.002297690138220787, 0.005346089135855436, 0.03165995702147484, 0.03960965946316719, -0.06831885129213333, 0.017496291548013687, 0.05651580169796944, 0.022408446297049522, -0.007663306314498186, -0.030080430209636688, -0.016706528142094612, 0.03700604662299156, -0.01729668118059635, -0.0014439214719459414, -0.0010018493048846722, 0.021731505170464516, 0.03551330789923668, -0.06752040982246399, 0.003684115130454302, -0.05953599512577057, 0.03700604662299156, -0.02140171453356743, -0.07331779599189758, 0.019475039094686508, -0.029212558642029762, 0.03195503354072571, -0.026765160262584686, 0.05863340571522713, -0.07908046245574951, -0.022460518404841423, -0.05391218513250351, -0.02634858340024948, -0.004538968671113253, -0.05800854042172432, 0.041657838970422745, -0.022321658208966255, -0.087412029504776, 0.014345917850732803, 0.0052983565255999565, -0.038602929562330246, -0.03058379702270031, -0.002099164528772235, -0.05085727572441101, -0.0014699575258418918, -0.004200498573482037, -0.0076459492556750774, -0.03165995702147484, 0.019752757623791695, -0.04110240191221237, -0.011013290844857693, 0.004230874124914408, -0.0034628077410161495, 0.02383175492286682, 0.027980180457234383, -0.051378000527620316, 0.02865712158381939, -0.028917482122778893, 0.04700392857193947, 0.04578890651464462, 0.060889873653650284, -0.005775685887783766, -0.03240632638335228, 0.0053591071628034115, 0.010067311115562916, 0.05484948679804802, -0.008687394671142101, -0.01116950809955597, 0.038255780935287476, -0.029438205063343048, -0.006075101438909769, -0.04030395671725273, 0.002853127894923091, 0.07880274206399918, -0.02574107237160206, 0.02742474339902401, -0.02126285433769226, 0.0075765191577374935, 0.005506645422428846, -0.018329448997974396, 0.06248675659298897, 0.028327329084277153, -0.04134540259838104, 0.022217513993382454, -0.03365606069564819, 0.05377332493662834, 0.034749578684568405, 0.022720878943800926, -0.02916048653423786, 0.043671298772096634, -0.04887853190302849, 0.07081832736730576, 0.02062062919139862, -0.03349984437227249, 0.0527665950357914, 0.058182112872600555, 0.04256042465567589, -0.02480377070605755, -0.013816515915095806, 0.033274199813604355, -0.03808220848441124, -0.021523216739296913, -0.003169901203364134, 0.022772951051592827, -0.018381521105766296, -0.01786079816520214, 0.015179074369370937, -0.03929722681641579, -0.034159425646066666, 0.043046433478593826, 0.0433935821056366, -0.0055370209738612175, -0.016480881720781326, -0.017721937969326973, -0.008144975639879704, -0.07665042579174042, -0.02456076629459858, 0.00355827366001904, 0.01563904620707035, -0.018780741840600967, 0.004447842016816139, -0.03565216809511185, -0.04342829808592796, -0.018763383850455284, 0.017626473680138588, -0.01458024326711893, 0.008748145774006844, -0.017314039170742035, 0.0377003438770771, 0.02081156149506569, -0.00893039908260107, 0.025428637862205505, -0.023241601884365082, 0.021766221150755882, 0.020707417279481888, -0.05745310336351395, -0.07776129990816116, -0.019509755074977875, -0.08178821951150894, 0.004716882482171059, -0.011941913515329361, 0.011629479937255383, 0.019839545711874962, -0.021922437474131584, -0.05800854042172432, 0.027494173496961594, -0.04957282915711403, -0.008118938654661179, -0.004664809908717871, 0.043324150145053864, 0.05047541484236717, -0.03053172305226326, -0.03042757883667946, 0.05175986513495445, 0.042004987597465515, 0.035582736134529114, -0.044608600437641144, 0.024387191981077194, 0.047767654061317444, -0.029264630749821663, 0.006712987087666988, -0.01292260829359293, -0.028986912220716476, 0.07036703079938889, -0.05335674807429314, 0.04346301034092903, -0.023068027570843697, 0.013825194910168648, -0.003612515749409795, -0.02091570571064949, -0.028674477711319923, 0.052211157977581024, -0.03518351539969444, -0.02589728869497776, 0.02442190796136856, -0.001035479363054037, 0.005450233817100525, 0.032579902559518814, -0.006977688055485487, -0.056446369737386703, 0.011074041947722435, -0.004677827935665846, 0.04814951866865158, 0.003495353041216731, -0.002803225303068757, 0.11629480123519897, -0.020794203504920006, -0.02091570571064949, -0.042838145047426224, 0.04384487494826317, -0.062035463750362396, 0.05977899953722954, 0.10747722536325455, 0.0021468973718583584, -0.05672409012913704, 0.00791498925536871, -0.06425721198320389, 0.004374072887003422, 0.030011000111699104, -0.03294440731406212, -0.00837062206119299, -0.06682611256837845, -0.0022109029814600945, 0.006040386389940977, -0.03641589358448982, 0.0185898095369339, -0.007303139660507441, 0.006465643644332886, 0.04124125838279724 ]
353
funcsigs
bind_partial
Get a BoundArguments object, that partially maps the passed `args` and `kwargs` to the function's signature. Raises `TypeError` if the passed arguments can not be bound.
def bind_partial(self, *args, **kwargs): '''Get a BoundArguments object, that partially maps the passed `args` and `kwargs` to the function's signature. Raises `TypeError` if the passed arguments can not be bound. ''' return self._bind(args, kwargs, partial=True)
(self, *args, **kwargs)
[ -0.0041367169469594955, -0.05384458228945732, 0.07129950821399689, -0.016185324639081955, -0.0111994044855237, 0.03699502721428871, 0.028755227103829384, 0.005259179510176182, 0.027023186907172203, -0.05952836573123932, -0.029747366905212402, -0.01320049911737442, -0.03171483054757118, 0.005494602490216494, -0.03213522583246231, 0.036557815968990326, 0.02668686769902706, 0.0357842817902565, -0.03327871114015579, -0.03524617478251457, 0.023609554395079613, 0.05465174838900566, 0.002629589755088091, 0.01585741527378559, -0.0028334828093647957, -0.0174212958663702, 0.02246607281267643, -0.012544677592813969, 0.11845135688781738, 0.03538069874048233, 0.018430251628160477, -0.00038361322367563844, 0.02455124631524086, -0.03921473026275635, 0.012258807197213173, -0.028149854391813278, 0.03965194523334503, 0.06443861126899719, 0.013536817394196987, -0.0611426942050457, -0.03467443212866783, -0.04883343726396561, -0.015487464144825935, 0.03220248967409134, 0.05714050307869911, -0.0013725996250286698, 0.022533336654305458, 0.005519826430827379, 0.01027452852576971, 0.057174134999513626, 0.008786319755017757, -0.006713756825774908, 0.06006647273898125, -0.03786945715546608, -0.01822846010327339, 0.06810448318719864, -0.022684678435325623, 0.0647076666355133, -0.0006526680081151426, 0.005263383500277996, -0.013646121136844158, 0.004418383352458477, 0.030604979023337364, -0.0367259755730629, 0.021238509565591812, -0.03195025399327278, -0.05064955726265907, -0.014453285373747349, -0.014293533749878407, -0.009534628130495548, -0.049943290650844574, -0.01616010069847107, -0.010745374485850334, 0.02894020266830921, -0.0022281096316874027, 0.023290053009986877, -0.013688161037862301, -0.003934925887733698, 0.05128856375813484, 0.026417814195156097, -0.023138709366321564, -0.0554589107632637, -0.04879980534315109, -0.005061592441052198, -0.05196119844913483, -0.032286569476127625, -0.09208399057388306, 0.014604628086090088, 0.08468498289585114, -0.04442766681313515, -0.08044736832380295, 0.02576199360191822, -0.0002506623277440667, 0.059494733810424805, 0.023239605128765106, -0.03753313794732094, -0.0028502987697720528, -0.0007483085501007736, 0.006865100469440222, 0.0018077116692438722, -0.008302861824631691, -0.005830921232700348, 0.0047883340157568455, 0.00660024955868721, 0.054988063871860504, -0.0005152503727003932, 0.028822490945458412, -0.028856122866272926, -0.06312697380781174, 0.02350865863263607, 0.02739313803613186, -0.05350826308131218, -0.045604780316352844, 0.05431542918086052, -0.0364905521273613, 0.05693871155381203, 0.027594927698373795, -0.026888659223914146, 0.040795426815748215, 0.030251843854784966, 0.003550261491909623, 0.013267762959003448, 0.010324976406991482, -0.03884477913379669, 0.054517220705747604, 0.027241794392466545, -0.020633136853575706, -0.01702612079679966, 0.0016679292311891913, -0.057981301099061966, 0.01520159374922514, -0.012578309513628483, -0.05841851234436035, 0.028704779222607613, -0.033329159021377563, 0.017505375668406487, -0.007520921062678099, 0.016664579510688782, -0.02054905705153942, 0.058519408106803894, -0.05004418268799782, 0.02490438148379326, 0.03490985557436943, 0.03514527902007103, 0.03154667094349861, -0.03114308789372444, 0.03171483054757118, 0.004666418302804232, 0.017673533409833908, 0.014991394244134426, 0.019640997052192688, -0.002854502759873867, 0.027477215975522995, 0.04382229223847389, -0.048194434493780136, 0.0283180121332407, 0.03073950670659542, -0.03908020257949829, -0.017808061093091965, -0.018312539905309677, 0.019640997052192688, -0.019725076854228973, -0.025223882868885994, -0.022566966712474823, 0.011333931237459183, -0.00802539847791195, 0.010526767000555992, -0.058519408106803894, 0.021288957446813583, 0.01812756434082985, 0.003058395814150572, 0.025778809562325478, 0.060133736580610275, 0.00897129438817501, 0.0649430900812149, 0.022365177050232887, -0.00576365739107132, -0.039685577154159546, -0.03359821438789368, -0.005070000421255827, 0.09975205361843109, -0.02952875941991806, -0.01227562315762043, -0.030066868290305138, 0.06003284081816673, 0.058519408106803894, -0.012645573355257511, 0.007764752022922039, 0.00043406098848208785, -0.03860935568809509, -0.0013778546126559377, -0.012048608623445034, 0.04879980534315109, -0.010055921040475368, -0.05606428533792496, 0.02530796267092228, -0.018716121092438698, 0.030201395973563194, 0.023407762870192528, -0.00532644335180521, -0.04903522878885269, -0.113742895424366, -0.003472487907856703, 0.04402408376336098, -0.013873135671019554, -0.005545050371438265, 0.0471518449485302, 0.017908956855535507, 0.021238509565591812, -0.09316021203994751, -0.007302314043045044, -0.05465174838900566, 0.025728361681103706, 0.03359821438789368, -0.00828184187412262, -0.03386726602911949, -0.0184806976467371, -0.05841851234436035, 0.021003086119890213, 0.007916095666587353, 0.04940517991781235, 0.01822846010327339, 0.02547612227499485, -0.023592738434672356, 0.003964353818446398, -0.017009304836392403, 0.020633136853575706, -0.015840599313378334, 0.011081692762672901, 0.04214069992303848, 0.0020052986219525337, 0.020767664536833763, 0.029495127499103546, 0.049876026809215546, -0.021574828773736954, -0.06127722188830376, -0.0028439927846193314, -0.039921000599861145, 0.025896519422531128, -0.015378160402178764, 0.001984278904274106, 0.08582846820354462, -0.002192375948652625, 0.04341871291399002, 0.006587637588381767, -0.027880799025297165, 0.02339094690978527, 0.041030850261449814, 0.03803761675953865, -0.004481443203985691, -0.04590746760368347, 0.030705874785780907, -0.010518359020352364, 0.028385275974869728, -0.02571154572069645, 0.014209453947842121, -0.01604238897562027, 0.019674628973007202, -0.03945015370845795, 0.037196818739175797, 0.0174212958663702, 0.022886469960212708, -0.00908900611102581, 0.037432242184877396, 0.020717216655611992, 0.007386393845081329, -0.04230885952711105, -0.02421492710709572, -0.03945015370845795, 0.046411946415901184, 0.015058658085763454, -0.025324778631329536, 0.034876223653554916, 0.020111842080950737, -0.043855924159288406, -0.02083492837846279, 0.010888309217989445, 0.01334343384951353, 0.016294628381729126, -0.037835825234651566, 0.0627906545996666, -0.04647921025753021, -0.02066676877439022, -0.019018808379769325, 0.007432637736201286, 0.06601931154727936, -0.010299752466380596, 0.0006311225588433444, 0.02402995340526104, -0.01834617182612419, 0.05112040415406227, -0.03351413458585739, 0.041030850261449814, 0.03423721715807915, -0.03780219331383705, 0.03359821438789368, -0.04984239488840103, -0.022566966712474823, 0.0357842817902565, -0.041434433311223984, -0.00432589603587985, -0.0684744343161583, -0.021003086119890213, 0.022550150752067566, 0.028990650549530983, -0.07076139748096466, 0.009870946407318115, 0.02135622128844261, -0.082936130464077, -0.005275995470583439, 0.013679753057658672, -0.019472837448120117, -0.048732541501522064, -0.05313831567764282, 0.03201751410961151, 0.039349257946014404, 0.019304677844047546, 0.011762737296521664, -0.010022290050983429, 0.03904657065868378, -0.034472640603780746, 0.003092027734965086, 0.019304677844047546, 0.007319130003452301, -0.022852838039398193, 0.05031323805451393, 0.03237064927816391, 0.0009327582083642483, -0.008227190002799034, 0.030083684250712395, -0.015067066065967083, 0.032286569476127625, 0.014537365175783634, 0.018161196261644363, -0.07499901205301285, -0.004666418302804232, 0.044562194496393204, 0.005103632342070341, 0.035414330661296844, -0.03023502789437771, 0.009812090545892715, 0.02739313803613186, 0.024702589958906174, 0.009753234684467316, -0.002556020161136985, -0.004990125074982643, -0.014226269908249378, 0.007810995914041996, 0.0869719460606575, -0.04984239488840103, 0.0042964681051671505, -0.06356418877840042, -0.04129990562796593, -0.05835124850273132, 0.01985960453748703, 0.011064876802265644, 0.004435199312865734, 0.018732937052845955, -0.020044580101966858, -0.04499940946698189, 0.058452144265174866, -0.02471940591931343, -0.025896519422531128, -0.03820577636361122, 0.0846177190542221, 0.07358647882938385, -0.0313953272998333, -0.02796487882733345, -0.014100151136517525, 0.02293691784143448, 0.007752140052616596, -0.04695005342364311, -0.029982788488268852, 0.06258886307477951, -0.034775327891111374, -0.07439363747835159, -0.018547961488366127, 0.003300124779343605, -0.08165811747312546, -0.0087106479331851, 0.007794179953634739, -0.08138906210660934, 0.048900701105594635, -0.06504398584365845, -0.03327871114015579, -0.04711821302771568, 0.02201204188168049, -0.04402408376336098, -0.007201418746262789, 0.004960697144269943, -0.034708064049482346, -0.0459747314453125, -0.023878609761595726, 0.025038907304406166, 0.02895701862871647, -0.02229791320860386, 0.03232020139694214, -0.016546867787837982, -0.0029511942993849516, 0.011039652861654758, 0.02118806168437004, -0.06410229206085205, 0.005973856430500746, 0.014739155769348145, 0.05673692002892494, 0.015075474046170712, 0.06282428652048111, 0.05004418268799782, 0.04311602562665939, -0.0037667665164917707, -0.034136321395635605, 0.021204877644777298, -0.05566070228815079, -0.004960697144269943, 0.021625276654958725, 0.023424578830599785, 0.007184602785855532, -0.0647076666355133, -0.034254033118486404, -0.01039224024862051, 0.07042508572340012, -0.0036028113681823015, 0.00834069773554802, 0.007945523597300053, 0.06386687606573105, 0.026434630155563354, -0.02107034996151924, -0.03005005232989788, 0.04150169715285301, 0.03931562602519989, -0.08374328911304474, -0.0006579229375347495, -0.04533572494983673, 0.02571154572069645, -0.051389459520578384, -0.008845174685120583, 0.005528234411031008, 0.0026968535967171192, 0.03995463252067566, 0.035582490265369415, -0.004662214312702417, 0.0500105544924736, 0.002795647131279111, -0.0412326417863369, -0.017993036657571793, -0.050985876470804214, 0.007651244755834341, -0.00996343418955803, 0.011073284782469273, -0.018093932420015335, 0.039752840995788574, 0.004346915986388922, 0.0412326417863369, -0.026838211342692375, 0.005582886282354593, -0.04856438189744949, -0.054685380309820175, -0.056837815791368484, -0.022970549762248993, -0.029663287103176117, 0.045772939920425415, -0.012511045671999454, -0.015647215768694878, -0.013175275176763535, -0.026199206709861755, -0.008668608032166958, 0.02246607281267643, -0.01276328507810831, -0.04365413263440132, 0.038474831730127335, 0.046815525740385056, -0.0007782619213685393, 0.002778831170871854, -0.027544479817152023, 0.03591880947351456, 0.06194985657930374, -0.013948807492852211, -0.014394429512321949, 0.03097492828965187, -0.0030079481657594442, -0.016008757054805756, 0.0057468414306640625, 0.030705874785780907, 0.04829533025622368, 0.0071047269739210606, -0.013990847393870354, -0.028990650549530983, 0.008050622418522835, -0.03432129696011543, 0.004683234263211489, 0.004367935936897993, 0.0910077691078186, 0.08138906210660934, 0.038306672126054764, 0.009618707932531834, 0.003859254065901041, -0.031008560210466385, 0.010476319119334221, 0.05061592534184456, 0.021322589367628098, -0.0077563440427184105, 0.013990847393870354, 0.05273473262786865, 0.004016903229057789, 0.014806419610977173, -0.058519408106803894, 0.030016420409083366, 0.017808061093091965, -0.05374368652701378, 0.013738607987761497, 0.0024614306166768074, 0.016639355570077896, -0.0016258894465863705, 0.03147940710186958, -0.010644478723406792, 0.03374955430626869, 0.027948062866926193, -0.011275075376033783, -0.04301512986421585, -0.037095922976732254, 0.025627465918660164, 0.057981301099061966, 0.011510498821735382, -0.0684744343161583, 0.024248559027910233, -0.03955104947090149, 0.04197254031896591, -0.048026274889707565, 0.0464455783367157, -0.020313633605837822, 0.041367169469594955, 0.03235383331775665, 0.053474631160497665, -0.050985876470804214, 0.0027283832896500826, 0.037600401788949966, -0.04106448218226433, -0.03618786484003067, -0.007264478597790003, 0.03965194523334503, -0.03632239252328873, 0.01303233951330185, -0.014192637987434864, 0.0283180121332407, -0.020801296457648277, 0.022449256852269173, -0.03220248967409134, -0.059662893414497375, -0.056198813021183014, -0.03608696907758713, -0.031243983656167984, -0.0355488583445549, -0.0005302270292304456, 0.04261154681444168, -0.10446050763130188, -0.031815726310014725, -0.0036910949274897575, 0.019842788577079773, -0.0447976179420948, 0.028402091935276985, 0.012729653157293797, 0.024921197444200516, 0.0561651811003685, 0.04318328946828842, -0.05340736731886864, 0.020280001685023308, 0.058855727314949036, 0.02519025094807148, -0.02710726670920849, 0.005999080371111631, -0.02229791320860386, 0.06342966109514236, -0.03457353636622429, -0.02206248976290226, -0.010821046307682991, -0.025341594591736794, 0.04173712059855461, -0.07197214663028717, -0.03225293755531311, -0.06332876533269882, 0.007537737023085356, -0.035111647099256516, -0.02241562493145466, 0.005372687242925167, -0.041434433311223984, 0.050414133816957474, 0.0010136847849935293, 0.0687098577618599, -0.07129950821399689, -0.02085174433887005, -0.04254428297281265, -0.03786945715546608, 0.014091743156313896, -0.06618747115135193, 0.04156896099448204, 0.0259469673037529, -0.08851901441812515, 0.011056468822062016, 0.02066676877439022, -0.057174134999513626, -0.03423721715807915, 0.01610124483704567, -0.05401274189352989, 0.027292242273688316, 0.001796150696463883, 0.0071047269739210606, -0.0414680652320385, 0.04580657184123993, -0.03208477795124054, -0.013730200938880444, 0.010123184882104397, 0.007953931577503681, 0.027073634788393974, 0.031008560210466385, -0.04439403489232063, 0.017051344737410545, -0.05986468121409416, 0.03085721656680107, 0.023189157247543335, 0.05448358878493309, -0.060369160026311874, 0.004515075124800205, -0.001279061078093946, 0.021911146119236946, 0.04187164455652237, -0.00023358367616310716, -0.017875324934720993, 0.025812441483139992, -0.021558012813329697, -0.006818856578320265, -0.0357842817902565, 0.006738980766385794, 0.05280199646949768, -0.00345987593755126, 0.04483124986290932, -0.016698211431503296, -0.006104179657995701, -0.0038676620461046696, -0.042645178735256195, 0.06063821539282799, 0.005334851332008839, -0.05609791725873947, -0.0067515927366912365, -0.033783186227083206, 0.038777515292167664, 0.05838488042354584, -0.015453832224011421, -0.04019005224108696, 0.00920671783387661, -0.04883343726396561, 0.042409755289554596, 0.04301512986421585, -0.012166319414973259, 0.05986468121409416, 0.04533572494983673, 0.012990299612283707, 0.004393159877508879, -0.031025376170873642, 0.05014507845044136, -0.02751084789633751, -0.023760898038744926, -0.02651870995759964, 0.0259469673037529, -0.02616557478904724, 0.018144380301237106, 0.026031047105789185, -0.03075632080435753, -0.07271204888820648, 0.03247154504060745, 0.02756129577755928, -0.001293775043450296, -0.019725076854228973, -0.028637515380978584, -0.007878259755671024, -0.07856398820877075, -0.01616010069847107, -0.01886746473610401, 0.005566070321947336, 0.0013042850187048316, 0.010367016308009624, -0.013646121136844158, -0.07217393815517426, -0.02628328651189804, -0.002560224151238799, -0.04399045184254646, 0.014697115868330002, -0.023727266117930412, 0.05936020612716675, -0.0005601804004982114, -0.01207383256405592, 0.06864259392023087, -0.03033592365682125, -0.005940224509686232, 0.03317781537771225, -0.027056818827986717, -0.06527940928936005, -0.01997731626033783, -0.06433771550655365, 0.02668686769902706, -0.010930349119007587, -0.003146679373458028, 0.02450079843401909, -0.026249654591083527, -0.07069413363933563, 0.016126468777656555, -0.007520921062678099, 0.006469925865530968, -0.02646826207637787, 0.019590549170970917, 0.05481990799307823, 0.00348930386826396, -0.003804602427408099, 0.0642031878232956, 0.0353134348988533, 0.041838012635707855, -0.020952638238668442, 0.03780219331383705, 0.007428433746099472, 0.006621269509196281, -0.00014582557196263224, -0.030941296368837357, -0.03189980611205101, 0.03551522642374039, -0.029780998826026917, 0.047219108790159225, -0.01597512699663639, -0.0087695037946105, -0.007361169904470444, -0.020599504932761192, -0.02710726670920849, 0.07035782188177109, -0.012906220741569996, -0.020885376259684563, 0.01531930547207594, 0.03166438266634941, 0.000644260027911514, 0.014150598086416721, 0.015563135966658592, -0.09316021203994751, -0.00464539835229516, -0.021692540496587753, 0.05771224573254585, 0.02118806168437004, 0.025089355185627937, 0.07035782188177109, 0.0037037068977952003, -0.013940399512648582, -0.0046790302731096745, 0.02796487882733345, -0.07035782188177109, 0.033900897949934006, 0.10183722525835037, 0.007180398795753717, -0.01858159340918064, 0.0012780100805684924, -0.05761134997010231, 0.026770947501063347, 0.03109264001250267, -0.025173434987664223, -0.01656368374824524, -0.09342926740646362, -0.02281920611858368, 0.03773492947220802, -0.013999255374073982, 0.010324976406991482, 0.026888659223914146, 0.00638584652915597, 0.05609791725873947 ]
354
funcsigs
replace
Creates a customized copy of the Signature. Pass 'parameters' and/or 'return_annotation' arguments to override them in the new copy.
def replace(self, parameters=_void, return_annotation=_void): '''Creates a customized copy of the Signature. Pass 'parameters' and/or 'return_annotation' arguments to override them in the new copy. ''' if parameters is _void: parameters = self.parameters.values() if return_annotation is _void: return_annotation = self._return_annotation return type(self)(parameters, return_annotation=return_annotation)
(self, parameters=<class 'funcsigs._void'>, return_annotation=<class 'funcsigs._void'>)
[ 0.006087445188313723, -0.07051147520542145, 0.019857075065374374, 0.010297213681042194, -0.07304934412240982, -0.05175185948610306, -0.05343233793973923, 0.037176284939050674, 0.07188329845666885, 0.01557871513068676, 0.011600441299378872, 0.004038291051983833, -0.04334947094321251, 0.004985703621059656, -0.051168836653232574, 0.028465237468481064, -0.0078107924200594425, 0.021434666588902473, -0.017936529591679573, -0.04372671991586685, 0.021434666588902473, 0.03136320412158966, -0.035564400255680084, -0.0013225189177319407, 0.01750783622264862, 0.023475246503949165, 0.028773896396160126, -0.02942550927400589, 0.024847066029906273, -0.009825651533901691, 0.019651303067803383, -0.034021101891994476, 0.02568730339407921, 0.06310366094112396, 0.04290362820029259, -0.001964487135410309, -0.08210334926843643, 0.06673897802829742, 0.002244209637865424, 0.022875076159834862, -0.049522653222084045, -0.02402397431433201, 0.009328367188572884, -0.07812507450580597, 0.04667612910270691, 0.040948785841464996, 0.042766448110342026, 0.056347452104091644, 0.017627868801355362, 0.016324641183018684, 0.05013997107744217, -0.02097167819738388, -0.02097167819738388, -0.01220918633043766, -0.05254065617918968, 0.04557867348194122, 0.0860816240310669, 0.07620452344417572, 0.012294924817979336, 0.028499532490968704, 0.059948474168777466, 0.01911972276866436, 0.028173726052045822, -0.023835349828004837, 0.01398397609591484, 0.007133456878364086, -0.01898254081606865, -0.04310940206050873, 0.012500697746872902, 0.04310940206050873, -0.002282792003825307, -0.03405539691448212, -0.004827086813747883, 0.01910257525742054, 0.023766757920384407, 0.016547562554478645, -0.0314832367002964, -0.030334340408444405, 0.035598695278167725, -0.04033146798610687, 0.010897384025156498, 0.00025225922581739724, -0.028430942445993423, 0.007004849147051573, -0.021246042102575302, 0.0036010239273309708, -0.04815083369612694, -0.06197190657258034, 0.0026407509576529264, -0.004947120789438486, -0.04355524107813835, 0.026921940967440605, -0.003180904546752572, 0.007540715858340263, 0.0295626912266016, -0.023046553134918213, 0.008526709862053394, -0.09067720919847488, 0.056518927216529846, -0.023749610409140587, 0.030282896012067795, 0.05346663296222687, -0.01221776008605957, -0.030248600989580154, 0.06121740862727165, -0.03486134111881256, 0.028550975024700165, -0.002762928605079651, 0.02457270212471485, 0.04369242489337921, 0.018022267147898674, -0.02086879126727581, -0.04201194643974304, 0.01581878401339054, -0.02928832732141018, -0.04009139910340309, -0.04835660755634308, -0.02100597321987152, -0.010828793048858643, 0.01740494929254055, -0.02587592974305153, 0.012817930430173874, -0.02597881481051445, 0.010117162950336933, -0.007905105128884315, 0.037176284939050674, 0.03100310079753399, 0.04657324403524399, -0.0029151146300137043, -0.09465548396110535, -0.03703910484910011, 0.004638461861759424, -0.02402397431433201, 0.03405539691448212, -0.0058216555044054985, -0.023938234895467758, 0.045612968504428864, 0.001487565808929503, -0.01733635738492012, 0.022069131955504417, -0.021880507469177246, 0.004578444641083479, 0.0703057050704956, 0.04372671991586685, -0.007617880590260029, -0.04640176519751549, 0.07366666197776794, -0.0039053962100297213, -0.03655896708369255, -0.0052086240611970425, 0.01556156761944294, 0.02589307725429535, 0.01930834725499153, 0.015947392210364342, -0.03124316968023777, -0.001059944275766611, 0.04314369708299637, -0.02242923527956009, -0.05010567605495453, 0.0036396062932908535, 0.02759070321917534, -0.03926830738782883, 0.025498678907752037, -0.07476411759853363, 0.05693047493696213, -0.006404678337275982, 0.07901675254106522, 0.02426404319703579, -0.0005473878118209541, -0.033729590475559235, -0.02762499824166298, 0.004265498835593462, 0.005710195284336805, 0.030848771333694458, -0.005444405134767294, 0.11001985520124435, -0.003465985646471381, -0.010854515247046947, 0.007129170000553131, 0.038822468370199203, 0.06317225098609924, -0.045921631157398224, -0.04458410665392876, 0.019599858671426773, 0.06756206601858139, 0.006327513605356216, -0.006606164388358593, 0.06591588258743286, -0.00652042543515563, -0.015218612737953663, 0.06769925355911255, 0.023200882598757744, 0.047602105885744095, 0.009354088455438614, -0.011248912662267685, -0.03504996746778488, -0.05943404138088226, 0.01886250637471676, -0.039165422320365906, 0.06070297583937645, 0.023132292553782463, -0.016230329871177673, -0.0018980397144332528, -0.015501550398766994, 0.03295794129371643, 0.02771073766052723, 0.028842486441135406, -0.007587871979922056, -0.05703336000442505, -0.024898508563637733, 0.01205485686659813, -0.007086300756782293, 0.01489280629903078, -0.05051722005009651, -0.013752481900155544, -0.06972268223762512, 0.009139741770923138, 0.013383805751800537, -0.01711343787610531, 0.004887104034423828, 0.07586157321929932, 0.018605289980769157, -0.05206051841378212, -0.02069731429219246, 0.03669614717364311, 0.00795654859393835, 0.04468699172139168, -0.08793357759714127, -0.012354942038655281, -0.07524425536394119, -0.01486708503216505, -0.07023711502552032, -0.028928225859999657, -0.013726760633289814, 0.04657324403524399, -0.010125736705958843, 0.025172872468829155, -0.040948785841464996, -0.0014554138761013746, -0.001089952769689262, 0.010597298853099346, 0.028653861954808235, 0.03355811536312103, 0.10062289983034134, -0.037622127681970596, -0.009791355580091476, -0.06622454524040222, 0.05055151879787445, 0.05051722005009651, 0.014404095709323883, 0.010228622704744339, -0.02285792864859104, -0.06334372609853745, 0.0489739254117012, 0.015124300494790077, 0.053157974034547806, 0.008050860837101936, -0.02249782532453537, 0.046024516224861145, 0.0207316093146801, 0.044275447726249695, 0.006387530826032162, 0.03359241038560867, 0.028619566932320595, 0.05590160936117172, -0.015235761180520058, -0.01399254985153675, -0.0018390943296253681, -0.00010382416803622618, 0.014421243220567703, 0.03115743026137352, 0.02102312073111534, -0.018142301589250565, -0.002278505126014352, 0.022206313908100128, 0.0058216555044054985, 0.002842236775904894, 0.0030887355096638203, -0.005332944914698601, -0.012166316621005535, 0.07798788696527481, -0.019891370087862015, 0.058096520602703094, -0.006194618530571461, 0.025601565837860107, 0.010974548757076263, 0.011566146276891232, 0.04009139910340309, 0.006623311899602413, -0.01301512960344553, -0.001197126111947, 0.040811605751514435, -0.005135746207088232, 0.00960273016244173, 0.030660146847367287, 0.04149751365184784, -0.0790853425860405, -0.0038496660999953747, 0.01886250637471676, -0.014146880246698856, 0.02074875682592392, -0.003948265686631203, 0.02434978075325489, 0.018656734377145767, 0.07545002549886703, 0.006524712312966585, 0.02416115626692772, -0.023801052942872047, -0.02434978075325489, 0.04458410665392876, -0.006477556191384792, 0.0294769536703825, -0.024778474122285843, -0.051271721720695496, 0.029082555323839188, -0.04976272210478783, 0.05158038064837456, -0.023406656458973885, 0.027316339313983917, 0.04962553828954697, 0.013229476287961006, -0.09143171459436417, -0.05885101854801178, -0.03486134111881256, 0.0523005872964859, -0.0412917397916317, -0.07503847777843475, 0.007952260784804821, -0.007596445735543966, -0.007253491319715977, -0.03247780725359917, 0.005392962135374546, -0.010571577586233616, 0.00954271387308836, -0.08436685055494308, -0.03170615807175636, -0.024658439680933952, 0.000776470813434571, -0.028962520882487297, -0.013220902532339096, 0.009516991674900055, -0.0034316901583224535, -0.025721600279211998, 0.026801906526088715, -0.02777932770550251, 0.04033146798610687, 0.0007550361333414912, -0.004874242935329676, 0.07154034078121185, -0.023801052942872047, -0.005783073138445616, -0.037622127681970596, 0.039096832275390625, 0.04194335639476776, 0.10418962687253952, -0.049248289316892624, 0.007857948541641235, 0.037107694894075394, -0.028533827513456345, -0.07641030102968216, 0.06310366094112396, 0.002709341933950782, -0.007484985515475273, -0.00877106562256813, 0.0731179341673851, 0.029168294742703438, -0.05538717657327652, -0.002807941287755966, -0.04976272210478783, -0.019771335646510124, 0.018228041008114815, -0.038891058415174484, -0.032306328415870667, -0.03432976081967354, 0.008419536985456944, -0.008728195913136005, -0.042526379227638245, 0.00389467878267169, -0.07366666197776794, -0.009002559818327427, 0.00960273016244173, -0.020320063456892967, 0.0026729030068963766, 0.016478970646858215, 0.016581857576966286, 0.015312925912439823, 0.019462676718831062, -0.030454374849796295, 0.058199405670166016, 0.012817930430173874, -0.045887332409620285, -0.03751923888921738, -0.00878821313381195, -0.009225480258464813, -0.013615299947559834, -0.007750775199383497, -0.04502994567155838, 0.027144862338900566, -0.024932803586125374, -0.024847066029906273, -0.008132312446832657, -0.04204624146223068, -0.027247747406363487, -0.01930834725499153, 0.023303769528865814, -0.027144862338900566, 0.05847376957535744, 0.02275504171848297, 0.023166587576270103, -0.009388383477926254, -0.02056013233959675, -0.053157974034547806, -0.056175973266363144, -0.030488669872283936, 0.09390098601579666, 0.006374669726938009, 0.05374099686741829, 0.018279483541846275, -0.0226521547883749, -0.009748485870659351, -0.00777221005409956, 0.020217176526784897, -0.015604437328875065, 0.0741467997431755, 0.013383805751800537, 0.040845900774002075, -0.020285768434405327, 0.010417248122394085, -0.0157416183501482, -0.016727613285183907, -0.004139034077525139, -0.010202901437878609, -0.011891952715814114, 0.03450123965740204, 0.0121148731559515, -0.016967682167887688, 0.007750775199383497, -0.049694132059812546, 0.0019526981050148606, 0.07455834001302719, -0.011051714420318604, -0.01130892988294363, -0.007605019491165876, -0.03679903596639633, 0.011986265890300274, -0.028688156977295876, -0.07846802473068237, 0.01568160206079483, 0.02071446180343628, -0.056347452104091644, 0.05699906498193741, 0.07044288516044617, 0.04815083369612694, -0.03285505622625351, 0.004079016856849194, -0.04643606022000313, -0.040674421936273575, -0.08498416841030121, 0.006700476631522179, -0.00009545125067234039, 0.028293760493397713, -0.012389237061142921, -0.006464695557951927, 0.019771335646510124, 0.02062872238457203, 0.0016011695843189955, 0.023338064551353455, -0.06735629588365555, -0.06656750291585922, -0.014438391663134098, 0.0888938456773758, -0.09959403425455093, -0.0052171978168189526, -0.03302653506398201, -0.008136599324643612, 0.02438407577574253, 0.018673881888389587, 0.012792209163308144, -0.060051362961530685, 0.03234062343835831, -0.031980521976947784, -0.015047135762870312, -0.04365812987089157, 0.08567007631063461, -0.01743067055940628, 0.01207200437784195, 0.010571577586233616, -0.005787360016256571, -0.016410380601882935, 0.0631379559636116, -0.023578133434057236, 0.000569626281503588, -0.035221442580223083, 0.03503281995654106, -0.0019612719770520926, 0.003052296582609415, 0.018742471933364868, -0.005444405134767294, -0.04739633575081825, -0.06217768043279648, -0.03861669450998306, -0.09246058017015457, -0.01299798209220171, 0.00645612133666873, 0.05398106575012207, -0.05672470107674599, 0.009654173627495766, 0.020217176526784897, -0.03283790871500969, 0.023578133434057236, -0.07298075407743454, -0.006477556191384792, 0.023320917040109634, -0.004265498835593462, -0.01462701614946127, -0.016864795237779617, -0.0526435412466526, -0.005491561722010374, -0.04139462858438492, -0.07174611836671829, 0.005997419822961092, 0.0073563773185014725, 0.02086879126727581, -0.03441550210118294, 0.040914490818977356, -0.026973383501172066, 0.032306328415870667, -0.010751628316938877, 0.03985133022069931, -0.03482704609632492, -0.05538717657327652, -0.023063700646162033, -0.022034836933016777, -0.02092023380100727, 0.009911390021443367, 0.06087445095181465, -0.011463259346783161, -0.008711048401892185, 0.013520987704396248, -0.021143155172467232, -0.00018916092813014984, 0.024898508563637733, -0.09074580669403076, 0.019154017791152, -0.03499852493405342, 0.033729590475559235, -0.012569288723170757, -0.05216340348124504, -0.0033459514379501343, -0.02458984963595867, -0.04698478803038597, -0.015450107865035534, 0.01551869884133339, 0.016890516504645348, -0.008882525376975536, 0.008050860837101936, 0.04310940206050873, 0.004162612371146679, 0.00778078380972147, 0.0447898805141449, 0.009474122896790504, 0.010640168562531471, 0.058405179530382156, -0.02933977171778679, -0.07935971021652222, 0.06114881485700607, 0.011197470128536224, 0.06029142811894417, -0.049556948244571686, 0.01142039056867361, 0.06204050034284592, -0.010400100611150265, 0.05027715489268303, 0.005645891185849905, -0.027247747406363487, 0.03988562896847725, 0.035701580345630646, 0.0029344058129936457, -0.08354375511407852, -0.030077124014496803, -0.015878800302743912, 0.009311218746006489, -0.023080848157405853, -0.04506424441933632, -0.04304081201553345, 0.016341790556907654, -0.05703336000442505, 0.04887104034423828, 0.028276611119508743, -0.0009141885093413293, -0.03642178699374199, 0.04293792322278023, -0.011506129056215286, -0.03751923888921738, -0.04190906137228012, 0.035735875368118286, 0.027316339313983917, -0.028825338929891586, -0.03432976081967354, -0.02083449624478817, -0.01759357377886772, -0.011951969936490059, 0.013460970483720303, 0.035530101507902145, 0.01133465114980936, -0.011566146276891232, -0.01920546032488346, 0.033712442964315414, 0.028328055515885353, 0.000059615165810100734, 0.04170328751206398, 0.02585878223180771, 0.0377936027944088, -0.03580446541309357, 0.006760493852198124, 0.03432976081967354, -0.04386390000581741, 0.028413793072104454, -0.0085524320602417, -0.0075535764917731285, -0.044069673866033554, 0.013109441846609116, -0.045921631157398224, -0.0121148731559515, -0.04650465399026871, -0.04218342527747154, -0.02416115626692772, -0.04269785434007645, 0.024538405239582062, -0.0005658752052113414, 0.018742471933364868, -0.03985133022069931, 0.009174036793410778, -0.014858510345220566, -0.0004016320744995028, 0.03618171811103821, -0.01891394890844822, 0.014275487512350082, -0.03107169270515442, 0.05909108743071556, 0.05062010884284973, -0.01398397609591484, -0.035358626395463943, 0.013572431169450283, -0.026510395109653473, -0.06317225098609924, -0.018090859055519104, -0.035873059183359146, 0.00865960493683815, -0.022103428840637207, -0.014249766245484352, 0.10309217125177383, -0.011128879152238369, 0.014001124538481236, 0.04184046760201454, 0.026784759014844894, -0.00645612133666873, 0.035221442580223083, 0.02110886014997959, -0.009354088455438614, -0.014575573615729809, -0.011943396180868149, -0.028293760493397713, 0.037107694894075394, 0.03338663652539253, 0.01205485686659813, -0.022875076159834862, -0.010614446364343166, 0.033986806869506836, -0.018193744122982025, 0.005298649426549673, -0.01575876586139202, -0.006203192286193371, 0.02064586989581585, 0.012860800139605999, -0.07174611836671829, -0.001192839234136045, 0.005615882575511932, 0.016916239634156227, 0.0032044826075434685, -0.007759349420666695, -0.0061731841415166855, -0.023801052942872047, -0.02623603120446205, -0.02582448534667492, 0.03679903596639633, -0.0056244563311338425, -0.0066919028759002686, -0.049351174384355545, -0.03432976081967354, 0.04225201532244682, -0.10103444010019302, 0.04876815155148506, 0.023286622017621994, 0.00008573866216465831, 0.07325511425733566, -0.041085969656705856, -0.06773354858160019, 0.030300045385956764, 0.012174890376627445, 0.025481531396508217, 0.03487848863005638, -0.04640176519751549, 0.014549851417541504, 0.0006033858517184854, 0.017627868801355362, 0.019737040624022484, -0.04568156227469444, -0.0021756186615675688, -0.03167186304926872, 0.025395791977643967, 0.0027693589217960835, 0.044069673866033554, 0.020217176526784897, 0.008363806642591953, -0.014404095709323883, -0.025532973930239677, -0.05206051841378212, 0.03673044592142105, 0.009654173627495766, -0.03487848863005638, -0.008458119817078114, 0.051408905535936356, 0.009405531920492649, -0.013863942585885525, 0.04022858291864395, -0.007677897345274687, -0.04053724184632301, 0.023440951481461525, -0.00775506254285574, 0.040914490818977356, 0.05384388193488121, -0.05137460678815842, -0.06066868081688881, -0.004115455783903599, -0.06821367889642715, -0.005427257623523474, 0.005847376771271229, -0.013315214775502682, -0.010451543144881725, -0.018210893496870995, 0.052917905151844025, 0.016084574162960052, 0.054495494812726974, 0.02424689382314682, 0.023423803970217705, -0.0075492896139621735, 0.0029922793619334698, 0.026373213157057762, 0.040605831891298294, 0.02086879126727581, 0.05062010884284973, -0.013083720579743385, -0.005808794405311346, 0.05206051841378212, -0.009619878605008125, 0.030008532106876373, 0.07963407039642334, 0.030351487919688225, -0.023886792361736298, -0.06934542953968048, -0.003348094876855612, 0.012466401793062687, 0.011231765151023865, -0.01313516404479742, 0.06735629588365555, 0.006644746754318476, 0.02424689382314682 ]
355
builtins
method-wrapper
null
method-wrapper
()
[ 0.05038778483867645, -0.04559765383601189, 0.039710547775030136, 0.07101093977689743, -0.02811916172504425, -0.042855214327573776, -0.020879117771983147, 0.04354996606707573, 0.08439405262470245, 0.006846961099654436, 0.024809950962662697, 0.0015643341466784477, 0.04673119634389877, -0.0320865623652935, -0.04877888411283493, 0.014635493978857994, 0.01485488936305046, 0.07411903887987137, -0.029124723747372627, -0.025449853390455246, 0.012935180217027664, 0.030367964878678322, 0.05909046530723572, 0.010896632447838783, -0.014169278554618359, 0.08183444291353226, 0.044537242501974106, -0.032872725278139114, 0.050826575607061386, -0.04695058986544609, -0.03557860106229782, -0.0405881293118, 0.014041298069059849, 0.030422812327742577, 0.010668096132576466, 0.015796460211277008, -0.030313115566968918, 0.0692557767033577, -0.05148475989699364, 0.03168433532118797, -0.0006701840320602059, -0.044464111328125, 0.03194029629230499, -0.027460977435112, -0.03451819345355034, 0.000719890755135566, 0.018529759719967842, 0.02000153623521328, 0.01065895427018404, -0.051082536578178406, 0.036035675555467606, 0.009040914475917816, 0.05024151876568794, -0.030532510951161385, -0.05334962159395218, 0.053422752767801285, 0.012066740542650223, 0.10713803023099899, 0.01706712506711483, 0.0771540105342865, 0.009571119211614132, -0.0014512083726003766, -0.00039079785346984863, -0.016207827255129814, 0.009726524353027344, 0.023073071613907814, -0.04632897302508354, 0.011755931191146374, 0.024352876469492912, 0.08176130801439285, 0.03521294519305229, 0.010174456052482128, -0.015385094098746777, 0.02027578093111515, 0.020769421011209488, 0.022049225866794586, -0.03817477822303772, 0.007445727474987507, 0.0719616562128067, -0.04775504022836685, -0.004817554727196693, 0.016061563044786453, 0.004799271933734417, 0.013492810539901257, -0.012313560582697392, -0.015065142884850502, -0.03665729612112045, -0.054995086044073105, -0.03952771797776222, 0.016765456646680832, -0.07203478366136551, 0.022049225866794586, -0.031592920422554016, 0.012121589854359627, -0.007194336969405413, 0.008922074921429157, 0.008556416258215904, -0.04552452266216278, -0.031830597668886185, -0.01007390022277832, -0.011161735281348228, 0.07744653522968292, 0.021263059228658676, -0.031190697103738785, 0.03740689530968666, -0.05254517123103142, 0.009077480062842369, -0.07627642899751663, -0.024681970477104187, 0.054190635681152344, -0.04834009334445, 0.0030121144372969866, -0.061650075018405914, -0.01249638944864273, -0.004344483837485313, -0.034719303250312805, -0.053678713738918304, -0.0038531296886503696, -0.05521447956562042, 0.0019814136903733015, 0.015577065758407116, 0.01628095842897892, -0.007875376380980015, -0.036949824541807175, 0.022286904975771904, 0.03557860106229782, -0.0017825866816565394, 0.0392351895570755, 0.10501720756292343, -0.04680432751774788, -0.003629163606092334, 0.006024228874593973, -0.009671675972640514, 0.0352860763669014, 0.04351339861750603, 0.011755931191146374, 0.008894650265574455, 0.03126382827758789, -0.038101647049188614, 0.0692557767033577, 0.009223743341863155, 0.013511093333363533, 0.0457804836332798, 0.002315077232196927, 0.0011672514956444502, -0.014937162399291992, 0.015083425678312778, 0.03226938843727112, -0.014790899120271206, 0.002315077232196927, 0.0017220244044438004, -0.004241642076522112, 0.04823039844632149, -0.006330468226224184, -0.015211406163871288, 0.00816333293914795, -0.008021640591323376, -0.033933136612176895, 0.004065668676048517, -0.038247913122177124, -0.0032955000642687082, -0.02497449703514576, -0.03638305142521858, -0.038906097412109375, 0.027680372819304466, 0.06355150043964386, -0.011481686495244503, 0.020348912104964256, 0.01314543467015028, 0.023073071613907814, -0.02799118123948574, -0.02665652707219124, -0.03647446632385254, 0.031190697103738785, 0.009237456135451794, 0.07664208859205246, -0.023840954527258873, 0.037735987454652786, 0.023329032585024834, 0.013026595115661621, -0.014544079080224037, -0.04216046258807182, -0.07203478366136551, -0.003272646339610219, 0.0457804836332798, 0.04515886306762695, 0.042050763964653015, -0.031336959451436996, 0.0031058145686984062, 0.012340985238552094, 0.00040051067480817437, -0.002440772484987974, 0.018136676400899887, 0.019526179879903793, -0.0019139953656122088, -0.04907141253352165, -0.016354089602828026, 0.0268210731446743, 0.019964970648288727, 0.03492041677236557, 0.0012569521786645055, 0.013154575601220131, 0.019288502633571625, 0.007569137495011091, 0.02669309265911579, 0.04508573189377785, 0.019014257937669754, 0.017167681828141212, -0.05612862855195999, -0.034463342279195786, 0.05579953268170357, -0.06091875955462456, -0.02016608417034149, -0.0019345636246725917, 0.028210576623678207, -0.01895940862596035, 0.06442908197641373, -0.023475294932723045, -0.0003170947602484375, 0.051082536578178406, 0.0340428352355957, 0.029874324798583984, -0.04409845173358917, -0.04468350484967232, 0.04212389513850212, -0.04603644460439682, 0.024883082136511803, -0.023584993556141853, -0.014406956732273102, -0.060626231133937836, 0.015988431870937347, 0.0037411467637866735, 0.017862433567643166, -0.0018979978049173951, -0.009708241559565067, -0.04523199424147606, 0.019818708300590515, 0.0028658509254455566, -0.050534047186374664, -0.0022739407140761614, 0.026510262861847878, 0.025961775332689285, 0.038650136440992355, 0.08249262720346451, -0.03738861158490181, -0.031062716618180275, -0.01647293008863926, 0.08600295335054398, -0.015046860091388226, -0.009799656458199024, -0.013666498474776745, -0.03320182114839554, -0.018484052270650864, -0.013913317583501339, -0.003974254243075848, -0.05653085187077522, -0.026181170716881752, 0.01032986119389534, 0.02707703411579132, -0.01859375089406967, 0.0032497926149517298, -0.021647000685334206, 0.04344026744365692, 0.0033434927463531494, -0.020604873076081276, -0.006165921688079834, -0.011463403701782227, 0.013236848637461662, -0.004045100416988134, 0.02797289937734604, 0.18853367865085602, -0.019983254373073578, -0.009699099697172642, 0.04435441270470619, -0.052398908883333206, -0.0030555364210158587, 0.007180625107139349, -0.0261446051299572, -0.06106502190232277, -0.05345931649208069, 0.07027962058782578, 0.004803842399269342, -0.012011892162263393, -0.00839644018560648, -0.08388213068246841, -0.028301991522312164, 0.03802851587533951, 0.01040299329906702, -0.012149013578891754, -0.028027748689055443, 0.016399797052145004, 0.025285307317972183, 0.0209156833589077, 0.007994215935468674, 0.04998555779457092, -0.0061842044815421104, -0.08461344987154007, -0.025303589180111885, 0.033677175641059875, -0.03305555507540703, -0.029892608523368835, -0.04077095910906792, -0.0562017597258091, 0.021665284410119057, -0.0011198300635442138, -0.043220870196819305, 0.02535843849182129, 0.018017837777733803, -0.005073516163975, 0.010174456052482128, -0.006024228874593973, 0.04201419651508331, -0.054190635681152344, -0.014370391145348549, 0.0025756091345101595, 0.007413732353597879, -0.03373202681541443, 0.05020495504140854, 0.026510262861847878, 0.12308075278997421, -0.029252704232931137, -0.015577065758407116, -0.02340216375887394, 0.038906097412109375, 0.04537825658917427, 0.0014672059332951903, 0.004534169100224972, 0.013291697949171066, 0.013885892927646637, 0.014160137623548508, -0.039673980325460434, 0.01819152571260929, 0.05166758969426155, 0.007358883507549763, -0.03062392584979534, -0.005973950959742069, 0.009561978280544281, -0.00011355420429026708, 0.016399797052145004, -0.008862655609846115, 0.025998340919613838, -0.0372423492372036, -0.05726217105984688, -0.003807422472164035, 0.02172013372182846, 0.0196358785033226, -0.009040914475917816, 0.014214986003935337, 0.12227630615234375, -0.0314100906252861, -0.018776580691337585, -0.0810299888253212, 0.007774820551276207, 0.032232824712991714, 0.013602507300674915, 0.014269835315644741, 0.006897239480167627, -0.034189097583293915, 0.0025733239017426968, -0.02797289937734604, 0.03252534940838814, -0.024901365861296654, 0.010366427712142467, 0.003350348910316825, 0.015449084341526031, 0.0024659116752445698, -0.04216046258807182, 0.008007927797734737, -0.013163717463612556, -0.0418313667178154, -0.026473697274923325, -0.031995147466659546, -0.025852078571915627, -0.03437192738056183, -0.017862433567643166, 0.010841784067451954, 0.008638689294457436, 0.024755101650953293, -0.021482454612851143, 0.020897401496767998, 0.05217951163649559, -0.02510247752070427, 0.019910121336579323, 0.028046030551195145, 0.03364061191678047, -0.022780543193221092, 0.0025550408754497766, 0.023749539628624916, 0.014928020536899567, 0.011152593418955803, -0.0392717570066452, -0.02429802715778351, -0.10143375396728516, -0.007692547049373388, -0.07795845717191696, -0.009141470305621624, 0.008309596218168736, -0.011609666980803013, -0.04237985610961914, -0.0053477599285542965, 0.03477415442466736, -0.009022630751132965, -0.014361250214278698, 0.05313022434711456, 0.0033137828577309847, 0.011353706009685993, 0.03177575021982193, 0.04237985610961914, 0.009625968523323536, -0.05122879892587662, -0.014406956732273102, -0.02784491889178753, -0.02735127881169319, -0.03062392584979534, 0.047791607677936554, -0.0261446051299572, 0.03872326761484146, -0.009836222045123577, 0.021025381982326508, 0.031154131516814232, 0.0008244463242590427, -0.00869353860616684, -0.005471169948577881, 0.09448623657226562, 0.008496996946632862, -0.015723329037427902, -0.019197087734937668, -0.03373202681541443, -0.010293295606970787, 0.028960177674889565, -0.02261599712073803, -0.02550470270216465, -0.06483130902051926, -0.02877734787762165, 0.04665806517004967, -0.010969764553010464, -0.04632897302508354, -0.018886277452111244, 0.03861356899142265, 0.057993486523628235, 0.018904561176896095, 0.04197763279080391, -0.003626878373324871, -0.023365598171949387, 0.02212235890328884, -0.08380899578332901, -0.034609604626894, 0.04289177805185318, 0.003329780651256442, -0.08585669100284576, 0.03477415442466736, 0.02731471322476864, 0.04161197319626808, -0.02000153623521328, -0.0169848520308733, -0.03934488818049431, -0.044537242501974106, -0.02471853606402874, 0.020897401496767998, 0.04515886306762695, -0.0023813529405742884, 0.013255131430923939, -0.042452987283468246, 0.0007564566913060844, -0.03607224300503731, 0.03135524317622185, -0.028850480914115906, 0.012176438234746456, -0.05386154353618622, -0.029746344313025475, 0.048852015286684036, -0.04746251180768013, -0.05130193009972572, -0.04786473885178566, -0.010137890465557575, 0.04669462889432907, -0.010759510099887848, 0.027387844398617744, -0.02327418327331543, -0.042818646878004074, -0.05177728831768036, -0.011198300868272781, 0.011929619126021862, 0.002436201786622405, -0.05111910030245781, -0.018036121502518654, 0.022049225866794586, -0.017972130328416824, 0.024426007643342018, -0.06102845445275307, -0.0130723025649786, 0.05587266758084297, 0.0025116188917309046, 0.022780543193221092, 0.022049225866794586, 0.014708626084029675, -0.034719303250312805, 0.03748002648353577, -0.015503933653235435, -0.023877520114183426, -0.011947901919484138, -0.0522892102599144, 0.012889472767710686, 0.003923976328223944, 0.038394175469875336, -0.006559005007147789, -0.04614614322781563, 0.016381515190005302, -0.030971301719546318, -0.023566709831357002, 0.0008187329513020813, -0.01604328118264675, -0.029362402856349945, 0.0065910001285374165, 0.026382282376289368, -0.05309366062283516, -0.07825098186731339, -0.014498371630907059, -0.021683568134903908, 0.0048906863667070866, 0.07737340778112411, 0.017505915835499763, 0.015842167660593987, -0.03583456203341484, -0.022853676229715347, 0.007093781139701605, -0.009827080182731152, -0.015677621588110924, 0.02459055557847023, 0.03587112948298454, 0.0002990974753629416, -0.05664055049419403, -0.013895034790039062, -0.002669309265911579, 0.0235484279692173, 0.07422874122858047, -0.054190635681152344, -0.05024151876568794, -0.00503695011138916, 0.016628334298729897, 0.016646618023514748, -0.016015855595469475, -0.021135078743100166, -0.01687515340745449, -0.05309366062283516, -0.018356071785092354, -0.0189776923507452, -0.03164777159690857, -0.002060258761048317, -0.0163266658782959, -0.07693461328744888, -0.031592920422554016, 0.013885892927646637, 0.059565819799900055, 0.03338465094566345, -0.006627565715461969, -0.028795631602406502, 0.01164623349905014, 0.005462028551846743, 0.014717767015099525, 0.028046030551195145, 0.02250630035996437, -0.015970148146152496, -0.018456628546118736, -0.07803159207105637, 0.033549197018146515, 0.08841630071401596, 0.03689497336745262, -0.017313944175839424, -0.07031618803739548, 0.006581858731806278, 0.005091798957437277, -0.022579431533813477, -0.012679219245910645, 0.011710223741829395, 0.08205384016036987, -0.01314543467015028, -0.009168894961476326, -0.02000153623521328, -0.06121128425002098, -0.048193830996751785, -0.02643713168799877, -0.005206067115068436, -0.09053712338209152, -0.056823380291461945, -0.022305186837911606, -0.05294739454984665, 0.03594426065683365, 0.006188775412738323, -0.023895803838968277, -0.050570614635944366, -0.02603490650653839, -0.007546283770352602, -0.05462942644953728, 0.02694905363023281, 0.01804526150226593, -0.0268027912825346, -0.033933136612176895, -0.07115720212459564, -0.00503695011138916, 0.016189543530344963, 0.015330245718359947, -0.01032986119389534, 0.027003902941942215, 0.02380438894033432, 0.008583840914070606, -0.06212543323636055, 0.00657271733507514, -0.04691402614116669, 0.028996743261814117, -0.013629931956529617, 0.020952248945832253, 0.078470379114151, -0.0150377182289958, -0.0031240973621606827, 0.003393770894035697, -0.04234328866004944, 0.03740689530968666, 0.028082596138119698, 0.05272800102829933, -0.05685994401574135, 0.011554818600416183, -0.030825037509202957, 0.02080598659813404, -0.07027962058782578, 0.004863262176513672, 0.02457227185368538, -0.02093396708369255, 0.019270218908786774, -0.03729720041155815, -0.01418756227940321, -0.0074868639931082726, 0.08614921569824219, -0.03325666859745979, -0.01248724851757288, -0.013017453253269196, -0.006261907052248716, 0.009379148483276367, -0.053569015115499496, 0.03519466146826744, -0.006152209360152483, -0.027534108608961105, -0.010512690991163254, -0.013474526815116405, 0.0012169582769274712, -0.023182768374681473, -0.03252534940838814, -0.02994745597243309, 0.00872553326189518, -0.03711437061429024, -0.03854043781757355, 0.008337020874023438, -0.043220870196819305, 0.039454586803913116, 0.01910567283630371, 0.003935402724891901, 0.01294432207942009, -0.00682867830619216, 0.012514673173427582, -0.016573484987020493, -0.031099282205104828, 0.04172167181968689, 0.022707412019371986, -0.0627836212515831, -0.007153200451284647, 0.006636707577854395, -0.043220870196819305, 0.0050095259211957455, 0.033165253698825836, -0.03398798778653145, 0.045963313430547714, -0.00268302159383893, 0.000980994082055986, -0.003242936683818698, 0.0004804985364899039, -0.04292834550142288, 0.03060564212501049, -0.03192201256752014, 0.035889413207769394, 0.02826542593538761, -0.029508665204048157, 0.0017311659175902605, -0.011975325644016266, -0.005695135798305273, -0.010841784067451954, 0.04351339861750603, -0.007139488123357296, -0.005923672579228878, 0.009671675972640514, -0.09785030037164688, -0.023237617686390877, -0.053569015115499496, 0.0037320051342248917, 0.009228314273059368, -0.004936393816024065, 0.03618193790316582, -0.05726217105984688, -0.08819690346717834, 0.03451819345355034, 0.05558013916015625, 0.06249108910560608, -0.04757221043109894, 0.032360803335905075, 0.011737647466361523, 0.04457380995154381, -0.027534108608961105, 0.024389442056417465, 0.0029435534961521626, -0.04292834550142288, -0.015677621588110924, 0.0069063808768987656, 0.01672889105975628, 0.05071687698364258, -0.021263059228658676, 0.047279685735702515, 0.020513460040092468, -0.0035423196386545897, 0.028411690145730972, 0.017862433567643166, 0.05481225624680519, 0.023859238252043724, -0.024426007643342018, 0.06289331614971161, -0.04417158290743828, 0.010339003056287766, 0.010713803581893444, -0.029252704232931137, -0.019855273887515068, 0.013547658920288086, 0.018548043444752693, -0.04808413237333298, -0.008679825812578201, -0.02733299694955349, 0.05568983778357506, -0.020751137286424637, -0.050680309534072876, -0.019836990162730217, 0.017524197697639465, 0.0019345636246725917, 0.0007164627313613892, -0.040222469717264175, -0.020476892590522766, 0.013474526815116405, 0.016628334298729897, 0.06307614594697952, 0.008556416258215904, 0.054336898028850555, 0.020513460040092468, -0.00487240357324481, 0.0023836384061723948, 0.06355150043964386, 0.04091722145676613, -0.004205076489597559, 0.043220870196819305, 0.08059120178222656, -0.053824976086616516, 0.029746344313025475, 0.013447103090584278, 0.02799118123948574, -0.012450682930648327, -0.06289331614971161, 0.046219274401664734, -0.014132712967693806, 0.06691556423902512, 0.03638305142521858, 0.09002520143985748, 0.030185135081410408, 0.08878196030855179 ]
356
funcsigs
_ParameterKind
null
class _ParameterKind(int): def __new__(self, *args, **kwargs): obj = int.__new__(self, *args) obj._name = kwargs['name'] return obj def __str__(self): return self._name def __repr__(self): return '<_ParameterKind: {0!r}>'.format(self._name)
(*args, **kwargs)
[ 0.03781355172395706, -0.04076885059475899, 0.0321165956556797, -0.025671914219856262, 0.01473197527229786, -0.025120019912719727, -0.01166095957159996, -0.0057192109525203705, 0.00842971634119749, -0.05668472498655319, -0.03991430625319481, 0.024443507194519043, -0.03455560654401779, -0.010770809836685658, -0.03346962481737137, 0.023072676733136177, -0.020224198698997498, 0.027559030801057816, -0.04952792078256607, -0.04229990765452385, 0.02503100596368313, 0.07448771595954895, 0.002110767178237438, -0.0015666632680222392, 0.04949231445789337, 0.042940814048051834, 0.034448787569999695, -0.01145622506737709, -0.025938957929611206, -0.05276806652545929, -0.12184367328882217, 0.009578009136021137, -0.008078107610344887, 0.05664911866188049, -0.014740876853466034, -0.009239752776920795, -0.052910491824150085, 0.0684703066945076, -0.07406044006347656, 0.003573950380086899, 0.024799566715955734, -0.009124033153057098, -0.07370438426733017, -0.04507717490196228, 0.00828729197382927, 0.000052087656513322145, 0.023535555228590965, -0.03491166606545448, -0.0363181009888649, -0.01225735992193222, 0.01004088670015335, -0.02941054105758667, 0.007134548854082823, -0.025547292083501816, -0.06533697992563248, 0.02853819541633129, 0.057824116200208664, -0.007330381777137518, -0.015844661742448807, 0.03532113507390022, -0.05024003982543945, 0.04621656611561775, 0.0038966296706348658, -0.05387185141444206, -0.032882124185562134, -0.025440474972128868, -0.032063186168670654, -0.019173821434378624, -0.01928064040839672, 0.04781883582472801, 0.04678625985980034, -0.03626469150185585, 0.001537733362056315, 0.043688539415597916, 0.029570767655968666, -0.009702630341053009, -0.04386657103896141, -0.023446539416909218, 0.03334500268101692, 0.023143889382481575, -0.01166095957159996, -0.006364569533616304, 0.01007649302482605, -0.014340309426188469, -0.03380788117647171, -0.04336808621883392, -0.06401955336332321, -0.07605437934398651, 0.008380758576095104, -0.011322702281177044, -0.0442226305603981, 0.002104090992361307, -0.013316637836396694, -0.004439620766788721, 0.021043134853243828, -0.05080973729491234, 0.022342754527926445, -0.03551696613430977, 0.04076885059475899, -0.019138215109705925, -0.007913429290056229, -0.028680618852376938, -0.022360557690262794, -0.042406726628541946, -0.0013519146014004946, -0.051343828439712524, 0.03578401356935501, 0.0036718668416142464, -0.04108930379152298, 0.026686683297157288, 0.011758876033127308, 0.0034226251300424337, -0.08581041544675827, -0.0003360314585734159, 0.007228014525026083, 0.01685943268239498, 0.023856008425354958, 0.0006086397916078568, -0.00964032020419836, 0.013147508725523949, -0.02098972722887993, 0.022876843810081482, -0.026864713057875633, 0.01706416718661785, -0.015969283878803253, 0.04358172416687012, 0.014580650255084038, -0.03660295158624649, -0.03014046512544155, 0.003547246102243662, 0.03380788117647171, -0.02663327567279339, -0.06238168105483055, 0.03916658088564873, 0.02257419377565384, -0.03386129066348076, 0.00291523989289999, 0.04600292816758156, -0.04521959647536278, 0.05924835428595543, 0.021523816511034966, 0.06131350249052048, 0.021470407024025917, 0.012666827999055386, 0.00034548930125311017, -0.024301083758473396, 0.042050667107105255, 0.001017552218399942, -0.014990118332207203, 0.02333972230553627, -0.009756038896739483, -0.008607746101915836, 0.03268629312515259, 0.042905207723379135, 0.0007760991575196385, -0.0077932593412697315, 0.04180142283439636, -0.096563421189785, -0.04913625493645668, -0.046109747141599655, 0.01349466759711504, -0.021488210186362267, -0.00020765520457644016, -0.060601383447647095, 0.02173745259642601, 0.04265596717596054, -0.017794089391827583, -0.03501848503947258, -0.012889365665614605, -0.019494274631142616, -0.014785383827984333, -0.048566561192274094, 0.02618820033967495, 0.038098402321338654, 0.03387909382581711, 0.0643044039607048, -0.0030220577027648687, 0.03574840724468231, 0.05266124755144119, -0.029659783467650414, 0.06266652792692184, 0.0010765246115624905, -0.06248850002884865, -0.03421735018491745, 0.049278680235147476, 0.0021619508042931557, 0.019227230921387672, 0.03268629312515259, 0.0002829006698448211, -0.005492222961038351, 0.029677586629986763, 0.01899579167366028, 0.0051361629739403725, 0.016004888340830803, -0.0009246428380720317, -0.0038254177197813988, -0.028840845450758934, 0.04639459401369095, 0.0646604672074318, 0.11408156901597977, 0.024354491382837296, 0.09620736539363861, 0.005754816811531782, -0.03913097456097603, 0.04112491011619568, -0.0074950591661036015, 0.051735494285821915, -0.04069763794541359, -0.0038276431150734425, -0.02857380174100399, -0.01265792641788721, -0.024692749604582787, 0.042086269706487656, 0.0444006584584713, -0.015568715520203114, -0.044934749603271484, -0.018203558400273323, -0.0402347594499588, 0.01532837562263012, 0.001489887828938663, 0.09827250987291336, 0.045326415449380875, 0.0015466348268091679, -0.011714368127286434, 0.045290809124708176, -0.04707111045718193, 0.030870387330651283, -0.041623394936323166, -0.015817956998944283, 0.013957545161247253, -0.022752223536372185, -0.02894766442477703, -0.00585273327305913, 0.02859160304069519, 0.018390489742159843, 0.012720237486064434, 0.003286877181380987, -0.030460918322205544, -0.09100889414548874, -0.0033291594590991735, 0.006876405328512192, 0.04347490519285202, -0.012346374802291393, 0.06352107226848602, -0.050097618252038956, -0.05429912358522415, -0.04600292816758156, 0.07210211455821991, 0.020259803161025047, -0.004619876388460398, 0.005096106324344873, -0.04963473975658417, -0.032472655177116394, -0.02088290825486183, 0.00473114475607872, 0.006462485995143652, -0.08922859281301498, -0.043759752064943314, -0.009399979375302792, -0.0018103417241945863, -0.05572336167097092, 0.03710143268108368, 0.01306739542633295, 0.08602405339479446, 0.01372610591351986, -0.0482105016708374, -0.00035049638245254755, -0.02013518288731575, 0.024443507194519043, -0.002390051493421197, 0.13380728662014008, 0.014829891733825207, -0.027149561792612076, 0.02976660057902336, -0.03371886536478996, -0.06202562153339386, 0.006075270939618349, 0.0019138215575367212, -0.05034685879945755, -0.03938021510839462, 0.04404459893703461, -0.025244642049074173, -0.003947813529521227, 0.0003121086920145899, -0.012212852016091347, 0.04792565107345581, 0.019868139177560806, 0.04197945445775986, -0.042905207723379135, 0.01087762787938118, -0.021844269707798958, 0.031137431040406227, -0.004005672875791788, 0.010583878494799137, 0.05440594255924225, 0.03129765763878822, -0.01967230625450611, 0.03300674632191658, -0.017847498878836632, -0.02139919623732567, 0.013654894195497036, -0.033291593194007874, 0.011838989332318306, 0.0036362609826028347, -0.03594423830509186, -0.007397142704576254, -0.000021558309526881203, -0.009066172875463963, -0.03268629312515259, 0.060993049293756485, 0.02853819541633129, 0.07562710344791412, -0.004860216751694679, 0.0002293526049470529, 0.07188847661018372, 0.021559422835707664, 0.022752223536372185, -0.04272717982530594, 0.017420226708054543, 0.09079525619745255, 0.017420226708054543, -0.0261703971773386, -0.008674507029354572, -0.04671505093574524, -0.012746941298246384, -0.01167876273393631, -0.05931956693530083, 0.018764352425932884, -0.021577225998044014, -0.021968891844153404, -0.03585522621870041, -0.004784553777426481, 0.01488330028951168, -0.03838324919342995, -0.014224589802324772, -0.024692749604582787, 0.046964291483163834, 0.03186735510826111, -0.029250314459204674, -0.005874987225979567, 0.08217860758304596, -0.006257751490920782, -0.03752870485186577, 0.027541227638721466, -0.04194384813308716, 0.02138139307498932, 0.006774038076400757, -0.015880268067121506, 0.07961497455835342, -0.00122840644326061, -0.02583214081823826, -0.05572336167097092, -0.02052684873342514, -0.005696956999599934, 0.04721353203058243, 0.017429128289222717, 0.049670346081256866, -0.039237793534994125, -0.020633667707443237, -0.015764549374580383, 0.08103921264410019, -0.053408972918987274, 0.05750366300344467, -0.0016300863353535533, 0.0013975348556414247, 0.004691088106483221, 0.03834764286875725, -0.025084415450692177, 0.014144476503133774, 0.009066172875463963, -0.03626469150185585, -0.03339841216802597, -0.013325539417564869, -0.03959385305643082, -0.01965450309216976, -0.0010570526355877519, -0.019618896767497063, 0.03350523114204407, -0.04678625985980034, -0.06658318638801575, 0.01888897456228733, -0.032828714698553085, 0.03307795897126198, 0.04304763302206993, -0.04586050659418106, -0.029250314459204674, 0.03471583127975464, 0.007842217572033405, 0.012613419443368912, 0.048139289021492004, -0.05828699469566345, -0.02337532676756382, -0.02291245013475418, -0.01667250134050846, 0.014936709776520729, -0.01646776683628559, -0.003556147450581193, 0.0009641432552598417, -0.04938549920916557, 0.022805631160736084, 0.0022431768011301756, -0.04262036085128784, -0.026330623775720596, 0.02572532184422016, 0.011669861152768135, -0.020473439246416092, 0.05725441873073578, 0.02941054105758667, -0.03742188587784767, -0.02652645669877529, -0.011153574101626873, -0.00643133046105504, -0.029517360031604767, -0.06957408785820007, 0.07861801236867905, -0.021488210186362267, 0.017224393784999847, -0.014625157229602337, 0.008701211772859097, -0.04507717490196228, 0.015257163904607296, 0.005661351140588522, 0.03272189944982529, 0.0724937841296196, -0.002852929290384054, 0.0804695188999176, 0.013378947973251343, 0.040804456919431686, -0.008015796542167664, 0.009729335084557533, -0.03293553367257118, 0.01372610591351986, 0.014767581596970558, -0.03355863690376282, 0.019832532852888107, -0.029944632202386856, -0.028751831501722336, -0.044934749603271484, -0.023482145741581917, 0.05850062891840935, 0.00985395535826683, 0.00241230521351099, 0.011206982657313347, 0.02136358991265297, -0.0011471802135929465, -0.027968499809503555, 0.008171573281288147, 0.02973099611699581, 0.0038276431150734425, -0.04379535838961601, 0.02734539471566677, 0.015452996827661991, 0.08189375698566437, -0.06651197373867035, 0.04881580173969269, -0.06295137852430344, -0.0766240730881691, -0.007241366896778345, 0.006061918567866087, -0.04564686864614487, 0.005785972345620394, 0.02378479577600956, 0.005064950790256262, -0.027594637125730515, -0.04319005832076073, 0.00964032020419836, 0.0643400102853775, -0.03304235264658928, 0.002214247127994895, -0.008064755238592625, 0.014135574921965599, 0.05362261086702347, 0.007512862328439951, -0.01752704568207264, -0.07690892368555069, 0.03738628327846527, -0.009021665900945663, 0.018265869468450546, -0.025244642049074173, 0.013984249904751778, 0.01269353274255991, -0.01758045330643654, 0.03891734033823013, 0.047320351004600525, -0.03341621533036232, -0.0031578056514263153, 0.003798713209107518, 0.05999607965350151, -0.021025333553552628, 0.010931036435067654, -0.01965450309216976, 0.04917186126112938, 0.020402228459715843, 0.03994991257786751, 0.03913097456097603, 0.010833119973540306, -0.04539762809872627, 0.013806220144033432, -0.029677586629986763, 0.020615864545106888, 0.0021029782947152853, -0.02540486864745617, -0.02697153203189373, -0.039700672030448914, 0.07726497948169708, -0.06636954843997955, 0.03512530028820038, 0.01797211915254593, -0.005674703512340784, 0.00725471880286932, -0.00863445084542036, -0.014660763554275036, 0.04158778861165047, -0.004021250642836094, -0.028912058100104332, 0.013548076152801514, 0.010352439247071743, -0.004780102986842394, -0.008313996717333794, 0.011554141528904438, 0.041694603860378265, -0.02583214081823826, -0.02572532184422016, -0.031546901911497116, 0.010984445922076702, -0.001174997421912849, -0.029481753706932068, -0.04991958662867546, 0.03101281076669693, 0.09506797045469284, 0.020242001861333847, -0.0523407943546772, -0.00949789583683014, 0.00010786109487526119, 0.0034582309890538454, 0.03663855418562889, -0.03432416543364525, 0.04724913835525513, 0.04404459893703461, 0.015586518682539463, 0.00502934493124485, 0.0027505620382726192, 0.016903940588235855, 0.03703022003173828, 0.017019659280776978, 0.018265869468450546, -0.02056245505809784, -0.016414357349276543, -0.03101281076669693, -0.02339312992990017, 0.019957153126597404, -0.014375915750861168, -0.06989454478025436, -0.027096152305603027, 0.007072238251566887, 0.048139289021492004, 0.041659001260995865, -0.012889365665614605, -0.00031099599436856806, 0.04717792570590973, 0.03653173893690109, 0.03980748727917671, 0.07370438426733017, -0.02821774035692215, -0.07146120816469193, 0.000358563382178545, 0.000938551442231983, 0.0045442134141922, -0.0038343193009495735, 0.025547292083501816, 0.05917714163661003, -0.020455636084079742, 0.06900439411401749, 0.022823434323072433, -0.020633667707443237, 0.027915090322494507, 0.012515502981841564, 0.050987765192985535, -0.020687075331807137, -0.009925168007612228, -0.009729335084557533, 0.04219308868050575, -0.0762680172920227, -0.06797181814908981, -0.02093631774187088, 0.029161300510168076, -0.03938021510839462, -0.020028365775942802, -0.0004951456794515252, 0.02262760140001774, -0.02369578182697296, 0.01566663198173046, -0.004143645986914635, -0.02335752546787262, -0.027149561792612076, -0.017794089391827583, -0.016903940588235855, -0.04308323934674263, -0.020758287981152534, 0.011438421905040741, -0.023197297006845474, 0.019458670169115067, -0.05469078943133354, 0.0767664983868599, 0.0563642717897892, 0.0008968256879597902, 0.0027171815745532513, -0.016645796597003937, -0.030087055638432503, 0.004989288281649351, 0.05768169090151787, -0.034484393894672394, 0.0241586584597826, -0.0683634877204895, -0.01248879823833704, 0.02374918945133686, 0.005928396247327328, -0.00010793063120217994, 0.02494199015200138, -0.02059806138277054, -0.05269685387611389, 0.03334500268101692, -0.0018159050960093737, 0.0025680814869701862, -0.03952264040708542, -0.025209035724401474, -0.01797211915254593, -0.019512077793478966, 0.00822498183697462, -0.08744829148054123, 0.013005085289478302, 0.0180522333830595, -0.03553476929664612, -0.07968618720769882, -0.08645132929086685, -0.012043723836541176, 0.007690892089158297, -0.005990706384181976, -0.0011783355148509145, 0.09100889414548874, 0.014580650255084038, -0.011812284588813782, -0.0401635468006134, -0.007041083183139563, 0.014740876853466034, -0.03149349242448807, 0.0028017456643283367, -0.05985365808010101, 0.03852567449212074, -0.029713192954659462, 0.0016579035436734557, 0.08623769134283066, 0.018319277092814445, -0.022663207724690437, 0.005656900350004435, -0.02894766442477703, -0.040412791073322296, 0.0647672787308693, 0.05593699961900711, -0.03106622025370598, -0.03421735018491745, -0.0241942647844553, 0.0047355955466628075, -0.016360949724912643, 0.013013986870646477, 0.03313136845827103, -0.04354611784219742, -0.04265596717596054, 0.014269097708165646, -0.02182646654546261, -0.018657535314559937, 0.002892986172810197, 0.02738100104033947, -0.00885698851197958, -0.07149681448936462, -0.028057513758540154, -0.003916657995432615, 0.06523016095161438, 0.042477935552597046, 0.0361400730907917, -0.002670448739081621, -0.04710671305656433, -0.005363150965422392, -0.0006676121847704053, 0.018265869468450546, 0.01391303725540638, -0.03941582143306732, -0.03959385305643082, 0.004473001696169376, -0.030923794955015182, -0.010352439247071743, -0.01085982471704483, 0.027683651074767113, 0.011696564964950085, -0.02492418698966503, 0.003271299647167325, -0.0053186435252428055, -0.048495348542928696, 0.01028122752904892, 0.0016267483588308096, 0.018203558400273323, -0.034448787569999695, -0.015301670879125595, 0.0019383006729185581, 0.001426464645192027, 0.0363537073135376, 0.018675338476896286, -0.021167756989598274, 0.10389825701713562, -0.023535555228590965, -0.02905448153614998, 0.05832260102033615, 0.012835957109928131, -0.045290809124708176, -0.0014776482712477446, 0.03877491503953934, 0.02332191914319992, 0.050916556268930435, -0.03149349242448807, 0.008723465725779533, 0.049349892884492874, 0.0032023130916059017, 0.06587106734514236, 0.047320351004600525, -0.015559813939034939, 0.030496524646878242, 0.0068452502600848675, -0.014313604682683945, -0.04789004474878311, -0.01391303725540638, 0.04963473975658417, 0.03414613753557205, -0.05451275780797005, -0.0686483308672905, 0.02577873133122921, 0.023250706493854523, 0.0724937841296196, -0.01189239788800478, 0.050560496747493744, 0.04635898768901825, -0.03386129066348076, 0.09805887937545776, -0.03663855418562889, -0.0026303918566554785, 0.02374918945133686, 0.042086269706487656, 0.03955824673175812, -0.006226596422493458, 0.04400899261236191, 0.0066627697087824345, 0.018230263143777847, 0.013708303682506084, -0.025102218613028526, -0.021951088681817055, 0.013548076152801514, -0.06248850002884865, 0.01926283724606037, 0.047712016850709915, -0.020651469007134438, -0.006035213824361563, -0.06711727380752563, -0.046537019312381744, 0.0342351533472538, 0.0055767870508134365, -0.029926829040050507, 0.03589082881808281, 0.008380758576095104, -0.0064446828328073025 ]
357
funcsigs
__new__
null
def __new__(self, *args, **kwargs): obj = int.__new__(self, *args) obj._name = kwargs['name'] return obj
(self, *args, **kwargs)
[ 0.01509977038949728, -0.040910039097070694, 0.018472222611308098, -0.01666736789047718, -0.02433588169515133, -0.004372324328869581, -0.001447908696718514, 0.01570138894021511, -0.02911493368446827, -0.04809556528925896, -0.02599668689072132, 0.06558486074209213, -0.01654026471078396, 0.023047909140586853, -0.007007581647485495, 0.013557594269514084, 0.017658766359090805, 0.02387831173837185, -0.028454000130295753, -0.031826451420784, 0.009464895352721214, 0.06809301674365997, 0.02286149375140667, 0.03174171596765518, 0.03257212042808533, 0.06233103945851326, 0.018116334453225136, 0.03438544645905495, 0.023251274600625038, -0.050705403089523315, -0.08541284501552582, 0.011498534120619297, 0.01757403090596199, 0.07836289703845978, 0.00040302067645825446, -0.07253313064575195, -0.07151631265878677, 0.04999362677335739, -0.06341564655303955, 0.007456676568835974, 0.11767991632223129, -0.026064474135637283, -0.04284199699759483, -0.034944698214530945, 0.004740921314805746, 0.0035334478598088026, 0.029419979080557823, -0.03445323556661606, -0.014006689190864563, 0.011269750073552132, -0.010676605626940727, -0.00889717135578394, 0.010507135652005672, -0.027166029438376427, -0.034368500113487244, 0.0938185527920723, 0.048027776181697845, 0.031589195132255554, -0.036707185208797455, 0.043418195098638535, -0.07754943519830704, 0.028352318331599236, 0.0460619255900383, -0.06731345504522324, -0.0579926073551178, -0.02399694174528122, -0.028640417382121086, 0.007371941581368446, -0.014125318266451359, 0.03948649391531944, 0.0642629936337471, -0.006452567409723997, 0.009176796302199364, 0.03609709441661835, 0.05036646127700806, 0.04189296439290047, -0.05578950047492981, 0.0007642034324817359, 0.032453492283821106, 0.04741768538951874, -0.0012148874811828136, -0.021014271304011345, -0.017099516466259956, 0.014320208691060543, -0.028623471036553383, 0.005935684312134981, -0.05931447446346283, -0.09402191638946533, 0.027369393035769463, 0.0016364440089091659, -0.02725076489150524, 0.022166665643453598, -0.0449434258043766, -0.022878440096974373, 0.01911620795726776, -0.08080326020717621, 0.025979740545153618, -0.0026988086756318808, 0.046604230999946594, 0.03179255872964859, -0.016972413286566734, -0.020116079598665237, -0.0824301689863205, -0.03891029581427574, -0.002639494137838483, -0.037622325122356415, 0.018268857151269913, -0.003546158317476511, -0.03962206840515137, 0.028877675533294678, 0.027826961129903793, 0.051722221076488495, -0.036130987107753754, 0.03772400692105293, -0.05412869527935982, -0.00419649900868535, 0.015082823112607002, 0.0008997793775051832, 0.02353937365114689, 0.0021798068191856146, -0.03792737051844597, 0.02581026963889599, -0.04002879559993744, 0.03558868542313576, 0.022844545543193817, 0.039655961096286774, 0.007842221297323704, -0.07660041004419327, 0.031487513333559036, 0.003518619341775775, 0.043485984206199646, -0.015430237166583538, -0.016641946509480476, 0.0511799193918705, 0.021471839398145676, -0.0026204288005828857, 0.023064857348799706, 0.07009276002645493, -0.031029943376779556, 0.03633435070514679, -0.0078210374340415, 0.03087742067873478, 0.0642629936337471, 0.02343768998980522, -0.03424987196922302, 0.004952758550643921, 0.02986060082912445, 0.03674108162522316, -0.047688838094472885, 0.026488149538636208, -0.00964283850044012, 0.016057275235652924, 0.04968858137726784, 0.08283690363168716, -0.00166398286819458, -0.009481842629611492, -0.019709352403879166, -0.0665677860379219, -0.038808614015579224, -0.0056984261609613895, 0.010735919699072838, 0.03265685588121414, -0.002374697243794799, -0.09307288378477097, 0.007151630707085133, 0.00410964572802186, -0.008257422596216202, -0.0699571892619133, -0.022675076499581337, 0.014032109640538692, -0.035114169120788574, -0.046604230999946594, 0.04795999079942703, 0.05192558467388153, -0.028979357331991196, 0.021353211253881454, -0.018455274403095245, -0.00133987155277282, 0.0398254320025444, 0.02411556988954544, 0.02945387363433838, -0.0061136274598538876, -0.030911315232515335, -0.04162181541323662, 0.039384812116622925, 0.007130447309464216, -0.0007027706014923751, 0.0591450035572052, 0.041655708104372025, 0.005329829175025225, 0.024539245292544365, 0.01441341731697321, 0.0341312438249588, -0.004838366527110338, 0.018167175352573395, 0.02484429068863392, -0.0443672277033329, 0.007240602746605873, 0.02001439779996872, 0.10459683835506439, -0.0013441083719953895, 0.10900305956602097, 0.00406727846711874, -0.03555478900671005, 0.03555478900671005, -0.020336391404271126, 0.02069227769970894, -0.0009590938570909202, -0.00971909984946251, -0.043079257011413574, 0.013811798766255379, 0.014328681863844395, 0.02940303273499012, 0.08602293580770493, -0.011464640498161316, -0.009015800431370735, 0.009591997601091862, -0.03877471759915352, 0.06605938076972961, 0.023691896349191666, 0.0852772668004036, 0.05487436056137085, -0.025318806990981102, -0.012405198998749256, -0.001979620661586523, -0.03140277788043022, -0.015565812587738037, -0.05199337378144264, -0.04074057191610336, 0.008820910006761551, -0.0021861621644347906, -0.031487513333559036, -0.014557466842234135, 0.0032072183676064014, -0.013040711171925068, 0.006244966760277748, 0.010515608824789524, 0.0015601825434714556, -0.10608817636966705, -0.016057275235652924, 0.014167685993015766, 0.05924668535590172, 0.03565647080540657, 0.05446763336658478, 0.008922591805458069, -0.011905262246727943, -0.057077471166849136, 0.056840214878320694, 0.004927338100969791, -0.030623216181993484, 0.011185015551745892, -0.05389143526554108, -0.01472693681716919, 0.011278223246335983, -0.007592252921313047, 0.02143794484436512, -0.0801931694149971, -0.04168960079550743, -0.023929154500365257, -0.020319445058703423, -0.031199414283037186, -0.005681479349732399, -0.002065414795652032, 0.05216284468770027, -0.007227892521768808, -0.030402904376387596, -0.0013208062155172229, -0.032216232270002365, -0.03282632306218147, -0.0005444221314974129, 0.03836799040436745, -0.00033231993438676, -0.0027602415066212416, 0.03282632306218147, -0.026369521394371986, -0.07578694820404053, -0.011490060947835445, 0.013125445693731308, -0.08066768199205399, -0.06490698456764221, 0.00971909984946251, 0.02059059590101242, 0.0295725017786026, -0.022776758298277855, -0.001782611827366054, -0.001641739858314395, 0.014320208691060543, 0.031199414283037186, -0.05270514637231827, -0.027437180280685425, -0.03508027642965317, 0.009473368525505066, -0.028081167489290237, -0.01105791237205267, 0.0443672277033329, 0.01740456186234951, -0.04992584139108658, 0.06433078646659851, -0.03535142540931702, -0.014125318266451359, -0.001266787643544376, -0.04782441258430481, -0.02928440272808075, -0.003806718159466982, -0.04019826650619507, -0.03572425991296768, 0.015659021213650703, -0.01000719889998436, -0.01003261934965849, 0.05626401677727699, 0.012811926193535328, 0.06009403616189957, -0.014616780914366245, 0.029148828238248825, 0.03316526487469673, -0.011278223246335983, 0.04619750380516052, -0.02206498384475708, 0.014591360464692116, 0.0739566758275032, -0.0013727063778787851, -0.06073802337050438, -0.04531625658273697, -0.031826451420784, 0.01899757795035839, 0.0341312438249588, -0.05728083476424217, 0.008215054869651794, -0.03031817078590393, -0.023674948140978813, -0.08764984458684921, -0.0056984261609613895, 0.03623266890645027, -0.024776503443717957, -0.015159085392951965, -0.04673980548977852, 0.026911824941635132, 0.01637926883995533, -0.038706932216882706, -0.0301486998796463, 0.0739566758275032, 0.0012847938342019916, -0.06009403616189957, 0.013837219215929508, -0.04050331190228462, 0.004791762214154005, 0.06138200685381889, -0.03785958141088486, 0.0824979618191719, -0.02042112685739994, -0.018285805359482765, -0.0778883770108223, -0.0077913799323141575, -0.0184891689568758, 0.08175229281187057, 0.004753631539642811, 0.02718297578394413, -0.0005325062666088343, -0.037893474102020264, -0.06849974393844604, -0.01409989781677723, -0.04690927639603615, 0.026233945041894913, 0.0021755702327936888, -0.05080708488821983, -0.014938773587346077, 0.010142775252461433, -0.0021067229099571705, -0.005185779649764299, 0.0011555730598047376, -0.035012487322092056, -0.02462398074567318, -0.028911570087075233, 0.005804345011711121, -0.0016269113402813673, -0.014142265543341637, -0.003785534529015422, 0.021285422146320343, -0.013294915668666363, -0.05924668535590172, 0.0022857256699353456, -0.026589831337332726, 0.05216284468770027, 0.04304536059498787, 0.0016385623021051288, -0.005435748025774956, 0.02979281358420849, 0.006223782896995544, 0.018743373453617096, 0.04213022440671921, -0.030911315232515335, -0.01615895703434944, 0.009744521230459213, 0.014125318266451359, 0.00813455693423748, 0.0013684696750715375, -0.00621107267215848, -0.02581026963889599, -0.04002879559993744, 0.01620132476091385, 0.006448330823332071, -0.01649789698421955, -0.009422527626156807, 0.01689615100622177, -0.02918272092938423, -0.02218361385166645, 0.09395412355661392, -0.010202089324593544, -0.015159085392951965, -0.00813455693423748, -0.021471839398145676, 0.008477733470499516, -0.036368247121572495, -0.0551794096827507, 0.06558486074209213, -0.03065710887312889, 0.041655708104372025, -0.05107823759317398, 0.029419979080557823, -0.03228402137756348, 0.00039798952639102936, 0.03806294500827789, 0.010871496051549911, 0.03877471759915352, -0.006583906710147858, 0.03630045801401138, -0.004529083613306284, 0.027030453085899353, -0.008922591805458069, 0.02855568192899227, -0.04270642250776291, 0.006253440398722887, 0.015201452188193798, -0.013303388841450214, 0.04277420789003372, -0.037622325122356415, -0.01233741082251072, -0.061992097645998, -0.0335719920694828, 0.03643603250384331, 0.027166029438376427, -0.044333331286907196, 0.03374146297574043, 0.023319061845541, -0.021878566592931747, -0.07429561764001846, 0.027606651186943054, 0.0030822341796010733, -0.005592507775872946, -0.05253567546606064, 0.04270642250776291, 0.0289963036775589, 0.04280810430645943, -0.050027523189783096, 0.050298675894737244, -0.07314322143793106, -0.04812945798039436, -0.03236875683069229, 0.03328389301896095, -0.027776120230555534, -0.0568741075694561, 0.012769559398293495, 0.00807947851717472, -0.027216870337724686, -0.06748292595148087, 0.03535142540931702, 0.0289963036775589, -0.0398254320025444, 0.0030165647622197866, -0.010710499249398708, 0.014998088590800762, 0.04406218230724335, 0.0024784975685179234, -0.032504331320524216, -0.08710753917694092, -0.0009177855681627989, -0.0415201336145401, -0.03840188682079315, -0.021641310304403305, -0.016870731487870216, 0.04253695160150528, -0.0017857893835753202, 0.08439602702856064, 0.049790263175964355, -0.03596151992678642, 0.026572884991765022, 0.04226579889655113, 0.012617035768926144, 0.008655676618218422, 0.027826961129903793, -0.03077573888003826, 0.06263608485460281, 0.00020971902995370328, 0.033131372183561325, 0.0025356938131153584, 0.01767571270465851, -0.012193361297249794, 0.010464767925441265, -0.04270642250776291, -0.008206580765545368, -0.00013597313954960555, -0.009312372654676437, -0.013354230672121048, -0.03816462680697441, 0.03162308782339096, -0.024081677198410034, -0.018184123560786247, 0.010566449724137783, -0.009422527626156807, -0.01575222983956337, -0.018607797101140022, -0.00827013235539198, -0.007990507408976555, 0.012854293920099735, 0.0009029569337144494, 0.008282843045890331, -0.026081422343850136, -0.008168450556695461, -0.05023088678717613, -0.014032109640538692, 0.06439857184886932, 0.01740456186234951, -0.03474133461713791, -0.02911493368446827, -0.016226746141910553, 0.014574414119124413, -0.027793068438768387, -0.0019446674268692732, 0.06849974393844604, 0.1063593253493309, 0.010591870173811913, -0.03667329251766205, -0.04457059130072594, 0.03258906677365303, -0.00023500712995883077, 0.004999362863600254, -0.05609454587101936, 0.03958817571401596, 0.06816080212593079, -0.024996813386678696, 0.01026140432804823, 0.03031817078590393, 0.02582721598446369, 0.019353466108441353, -0.031995922327041626, 0.0007975678308866918, -0.017726553604006767, 0.027725279331207275, -0.019268730655312538, -0.021709097549319267, 0.03748674690723419, -0.03474133461713791, -0.02520017884671688, -0.021370157599449158, 0.010193616151809692, 0.013574541546404362, 0.02155657485127449, -0.06205988675355911, -0.002819555811583996, 0.04070667549967766, 0.054060906171798706, 0.054738786071538925, 0.08995463699102402, -0.0003802481514867395, -0.06358511745929718, 0.03058932162821293, -0.01202389132231474, -0.00927000492811203, 0.008350630290806293, 0.003984661772847176, 0.006520355585962534, -0.03424987196922302, 0.035690367221832275, 0.06507645547389984, -0.023285167291760445, 0.03077573888003826, -0.005147648975253105, 0.04338430240750313, -0.014345629140734673, -0.01631147973239422, 0.007287207059562206, 0.047010958194732666, -0.116053007543087, -0.09449642896652222, -0.043824922293424606, -0.011430746875703335, -0.017184250056743622, -0.024725662544369698, 0.04687537997961044, -0.004495189990848303, 0.009058167226612568, 0.010049566626548767, -0.04128287360072136, -0.0004469769191928208, -0.021641310304403305, 0.0020929535385221243, -0.06165315955877304, -0.053484708070755005, 0.011049439199268818, 0.0008060413529165089, -0.0014945128932595253, 0.03985932841897011, -0.05487436056137085, 0.05751809477806091, 0.03262295946478844, 0.04077446460723877, -0.03514806181192398, -0.02121763490140438, 0.0021755702327936888, -0.011837474070489407, 0.013769431971013546, -0.05626401677727699, 0.022386977449059486, -0.0006545775686390698, -0.0008203403558582067, 0.005579797551035881, -0.02831842564046383, 0.02353937365114689, -0.001067660516127944, -0.04396050050854683, -0.06531371176242828, 0.03282632306218147, 0.019302625209093094, 0.009676733054220676, -0.022776758298277855, -0.002578061306849122, 0.013413544744253159, -0.002558995969593525, 0.015116717666387558, -0.04880733788013458, -0.00048034131759777665, -0.015116717666387558, -0.01604032889008522, -0.07497349381446838, -0.02689487673342228, -0.00864296592772007, 0.009286952205002308, 0.025895005092024803, 0.02440366894006729, 0.06463582813739777, -0.020658383145928383, 0.02018386870622635, -0.024539245292544365, -0.00833368394523859, -0.054738786071538925, -0.05704357847571373, 0.020387232303619385, -0.023590214550495148, 0.013566067442297935, -0.01701478101313114, -0.017489297315478325, 0.01938735879957676, 0.009388634003698826, -0.009854676201939583, 0.013608435168862343, 0.005147648975253105, -0.02213277295231819, 0.011989997699856758, 0.05148496478796005, -0.026352573186159134, -0.03211455047130585, 0.011786633171141148, 0.012040838599205017, -0.0038914531469345093, 0.027047399431467056, 0.04168960079550743, -0.003567341947928071, -0.0682624876499176, 0.016455529257655144, -0.009346266277134418, -0.0045545040629804134, 0.031233306974172592, 0.026454254984855652, -0.00039189920062199235, -0.04589245468378067, -0.023725789040327072, 0.01762487180531025, 0.05073929578065872, 0.03999490290880203, 0.038673035800457, 0.003957122564315796, -0.030233435332775116, 0.031080784276127815, -0.03003007173538208, 0.016184378415346146, 0.024895131587982178, -0.013566067442297935, 0.009151375852525234, 0.002281488850712776, -0.04619750380516052, 0.004880733788013458, 0.007422782946377993, 0.024725662544369698, 0.020743118599057198, -0.04562130570411682, 0.014896406792104244, -0.011905262246727943, -0.028809888288378716, 0.0022348847705870867, 0.012354358099400997, -0.0046095820143818855, -0.027894750237464905, -0.006977924145758152, -0.011490060947835445, -0.006736429408192635, 0.02450535073876381, -0.001838748692534864, 0.021420998498797417, 0.0796508640050888, -0.03145361691713333, -0.02211582474410534, 0.06131421774625778, 0.043587666004896164, -0.00915984995663166, 0.038198523223400116, 0.04714653268456459, 0.018946737051010132, 0.05955173075199127, -0.049620795994997025, 0.022997068241238594, 0.054738786071538925, 0.019302625209093094, 0.06307670474052429, 0.009100534953176975, -0.029945336282253265, -0.01541328988969326, 0.010363086126744747, -0.011134173721075058, -0.050027523189783096, -0.021980250254273415, 0.03555478900671005, 0.011701898649334908, -0.011981523595750332, -0.069414883852005, 0.042672526091337204, -0.009761467576026917, 0.06616105884313583, -0.010498661547899246, 0.03769011050462723, 0.06748292595148087, -0.07104179263114929, 0.06565264612436295, -0.015743756666779518, 0.05433205887675285, -0.021759938448667526, 0.023963047191500664, 0.04795999079942703, 0.025911951437592506, 0.019065367057919502, 0.024776503443717957, 0.014743883162736893, 0.018556956201791763, 0.01362538244575262, 0.03833409771323204, 0.004656186327338219, -0.07300764322280884, -0.02387831173837185, 0.005880606360733509, 0.04253695160150528, -0.024132518097758293, -0.046434760093688965, -0.02969113178551197, -0.0023937628138810396, 0.0346735455095768, -0.023166539147496223, 0.03265685588121414, 0.06643220782279968, -0.000016309824786731042 ]
358
funcsigs
__repr__
null
def __repr__(self): return '<_ParameterKind: {0!r}>'.format(self._name)
(self)
[ 0.05004360154271126, -0.05394721403717995, 0.05134480819106102, 0.000725333287846297, 0.031984999775886536, -0.04125168174505234, 0.007952290587127209, -0.005815854296088219, 0.06319631636142731, -0.008620476350188255, -0.0252503901720047, -0.011139361187815666, -0.03525559604167938, 0.007222561165690422, -0.03847343847155571, 0.027430787682533264, -0.026709849014878273, -0.008198464289307594, -0.04610482230782509, -0.03794592246413231, 0.0047388444654643536, 0.057252977043390274, 0.003701397916302085, -0.04687851294875145, 0.040759336203336716, 0.0005769697017967701, 0.018041018396615982, -0.027325283735990524, -0.05851901322603226, -0.023896435275673866, -0.10128290951251984, -0.03868444263935089, -0.01287136971950531, 0.0085853086784482, -0.011455870233476162, 0.053208693861961365, -0.04684334248304367, 0.056901298463344574, -0.05672546103596687, -0.031650908291339874, -0.005802666302770376, 0.009126012213528156, -0.062176451086997986, -0.03836793452501297, -0.010119498707354069, 0.0027452767826616764, 0.048777565360069275, 0.006831320933997631, -0.022173220291733742, -0.026639513671398163, 0.019166383892297745, 0.018199272453784943, -0.02074892818927765, -0.010770101100206375, -0.08925556391477585, -0.02048517018556595, 0.06994850933551788, -0.01054151076823473, 0.013908815570175648, 0.053173527121543884, -0.02183912694454193, 0.04248255118727684, -0.018761955201625824, -0.02906608395278454, 0.003461817977949977, -0.02994527667760849, -0.019658731296658516, -0.012976872734725475, -0.009864533320069313, 0.04694884642958641, 0.026674682274460793, -0.041040677577257156, -0.007073098793625832, 0.030455207452178, -0.022735903039574623, -0.0427287258207798, -0.0147440480068326, -0.0006374141084961593, 0.026938440278172493, -0.03791075572371483, -0.020432420074939728, 0.02994527667760849, -0.02502180077135563, -0.040020816028118134, -0.026551594957709312, -0.04814454913139343, -0.061262089759111404, -0.05060628429055214, -0.031809162348508835, -0.011209696531295776, -0.020080743357539177, -0.015930956229567528, -0.016001291573047638, 0.03479841351509094, -0.009873325005173683, -0.02941776067018509, 0.010093122720718384, -0.04948091879487038, 0.03924712538719177, -0.03288177773356438, 0.023034827783703804, -0.04339691251516342, 0.0007110464503057301, -0.019060879945755005, -0.00023463433899451047, -0.05398238077759743, -0.0077149090357124805, 0.012510900385677814, -0.03555452078580856, 0.02146986685693264, -0.011499829590320587, 0.045225631445646286, -0.036046866327524185, -0.018339943140745163, 0.05145030841231346, 0.005433405749499798, 0.017680548131465912, -0.00008627070201328024, 0.024775628000497818, 0.011552581563591957, 0.009108427911996841, 0.028345147147774696, -0.01744316704571247, -0.007015951443463564, -0.049691926687955856, 0.040513161569833755, -0.009644734673202038, 0.009090844541788101, -0.061719272285699844, -0.07912726700305939, 0.04276389256119728, -0.019676314666867256, -0.08025263249874115, 0.019658731296658516, 0.03432365134358406, -0.027694543823599815, 0.036328207701444626, 0.012704323045909405, -0.018252024427056313, 0.08904455602169037, 0.036504048854112625, 0.031158560886979103, -0.0018946585478261113, 0.023228250443935394, 0.010365672409534454, -0.041005510836839676, 0.035466600209474564, 0.031140977516770363, 0.002165009966120124, -0.030842050909996033, 0.004971830174326897, -0.0018902625888586044, 0.028239643201231956, -0.02553173340857029, -0.000675878778565675, 0.027571458369493484, 0.03409506008028984, -0.048636894673109055, -0.02139953151345253, -0.05169648304581642, -0.0051256888546049595, -0.03391922265291214, -0.005455385893583298, -0.005960920825600624, 0.022155635058879852, 0.044979456812143326, -0.01693323627114296, -0.032723523676395416, -0.0026771393604576588, -0.011051442474126816, 0.013943983241915703, -0.06006639078259468, -0.031281646341085434, 0.02516247145831585, 0.019816985353827477, 0.07328943908214569, 0.01732007972896099, 0.07912726700305939, 0.005411426071077585, -0.036011699587106705, 0.07624351978302002, -0.0216281209141016, -0.06822529435157776, -0.027694543823599815, 0.03766458109021187, -0.03289936110377312, 0.04223638027906418, 0.005450989585369825, -0.019746650010347366, -0.02576032280921936, 0.03769974783062935, 0.023597510531544685, -0.018586115911602974, 0.04156819358468056, -0.03731290251016617, -0.04209570959210396, -0.0017320080660283566, 0.014471498318016529, 0.03868444263935089, 0.0665724128484726, 0.044170599430799484, 0.031703658401966095, -0.009987619705498219, 0.0021727029234170914, 0.00851497333496809, -0.01053271908313036, 0.07300809770822525, -0.0439595952630043, 0.012141640298068523, -0.03699639439582825, -0.0021199514158070087, -0.031633324921131134, 0.04744119569659233, -0.018515780568122864, -0.01663430966436863, -0.05493190884590149, -0.06678341329097748, -0.053560368716716766, -0.02104785479605198, 0.015526528470218182, 0.057006802409887314, 0.013434052467346191, 0.0169947799295187, -0.048601727932691574, 0.001207789871841669, -0.0429045632481575, 0.04160336032509804, -0.0149638457223773, -0.03332137316465378, -0.02486354671418667, -0.01670464500784874, -0.026569178327918053, -0.0057718949392437935, 0.02173362299799919, -0.014225324615836143, 0.04635099694132805, -0.030631044879555702, -0.012642779387533665, -0.06319631636142731, 0.014568209648132324, 0.0020595069508999586, 0.035747941583395004, -0.011297616176307201, 0.044592611491680145, -0.05218883231282234, -0.05848384276032448, -0.013900023885071278, 0.05904652923345566, 0.04515529423952103, 0.005820250138640404, 0.04170886427164078, -0.030824467539787292, -0.05127447098493576, -0.015957333147525787, -0.012721906416118145, -0.045014623552560806, -0.040126316249370575, -0.0016045252559706569, 0.03755907714366913, 0.022542480379343033, -0.05134480819106102, 0.03532592952251434, 0.022735903039574623, 0.06706475466489792, 0.048566561192274094, 0.001202294952236116, -0.02488113008439541, -0.00187817367259413, 0.058097001165151596, -0.020291749387979507, 0.1495329588651657, 0.03003319539129734, -0.048601727932691574, 0.02139953151345253, -0.02924192138016224, -0.06783844530582428, 0.020362084731459618, -0.028098972514271736, -0.031193727627396584, -0.016036460176110268, 0.08067464828491211, -0.04635099694132805, 0.007394003681838512, 0.028433065861463547, -0.0173904150724411, 0.04652683436870575, 0.032090503722429276, 0.04817971587181091, -0.02187429368495941, 0.018252024427056313, 0.011156945489346981, 0.05802666395902634, 0.0028244040440768003, 0.03541385009884834, 0.06924515217542648, -0.00012844444427173585, -0.012836202047765255, 0.0016671676421537995, 0.011763587594032288, 0.015473777428269386, 0.011587749235332012, -0.010005204007029533, 0.06031256541609764, 0.019096048548817635, -0.048566561192274094, 0.009152387268841267, 0.012062512338161469, 0.024072274565696716, -0.02989252470433712, 0.01289774477481842, 0.02489871345460415, 0.06801428645849228, 0.018797121942043304, 0.013706601224839687, 0.03282902389764786, 0.01468250434845686, 0.02157536894083023, -0.0339016392827034, 0.05461540073156357, 0.07177722454071045, 0.01303841546177864, -0.0020540121477097273, 0.006382933352142572, -0.02495146542787552, 0.009767821989953518, -0.041146181523799896, -0.0750478208065033, 0.004963038023561239, -0.012211975641548634, -0.0018902625888586044, -0.0022067716345191, -0.019271885976195335, 0.008339134976267815, 0.0019155393820255995, -0.003413462545722723, -0.0026771393604576588, 0.030455207452178, 0.011596540920436382, -0.02530314214527607, -0.027993470430374146, 0.05890585482120514, 0.02076651155948639, -0.015421025454998016, 0.001669365563429892, -0.05095796287059784, 0.0353083461523056, -0.03479841351509094, 0.0011286626104265451, 0.07476647943258286, -0.00859849713742733, -0.02969910204410553, -0.03886028006672859, 0.01461216900497675, 0.019676314666867256, 0.008084169588983059, 0.022542480379343033, 0.023105163127183914, -0.013293381780385971, -0.052610844373703, 0.02164570428431034, 0.11063750833272934, -0.014383579604327679, 0.04817971587181091, 0.011649292893707752, 0.026797769591212273, -0.011236072517931461, 0.026287836953997612, -0.004778407979756594, 0.036539215594530106, 0.015508945100009441, -0.0596795454621315, -0.008422658778727055, -0.024353615939617157, -0.03907128795981407, -0.04740602523088455, 0.02482837811112404, -0.002235345309600234, 0.027325283735990524, -0.045260798186063766, -0.08904455602169037, 0.04800387844443321, -0.009899700991809368, 0.0257779061794281, 0.03472808003425598, -0.0352204255759716, -0.0263054221868515, 0.0257779061794281, 0.004967434331774712, 0.018216855823993683, 0.000283264642348513, -0.043889258056879044, -0.02041483484208584, -0.01502538938075304, 0.012493317015469074, -0.004165171645581722, -0.04251772165298462, -0.0010209615575149655, -0.0061675310134887695, -0.06878797709941864, 0.00042558382847346365, 0.0014781414065510035, -0.04315073788166046, -0.036328207701444626, -0.0059081693179905415, 0.035607270896434784, -0.040513161569833755, 0.0425528883934021, 0.07216407358646393, -0.03488633409142494, -0.04315073788166046, -0.011086610145866871, -0.004835555329918861, -0.057674989104270935, -0.05957404151558876, 0.06759227067232132, 0.005890585482120514, 0.0012594424188137054, 0.027870383113622665, 0.006215886678546667, -0.01764538139104843, -0.004472888540476561, 0.0030420038383454084, 0.040794502943754196, 0.06913965195417404, 0.020520338788628578, 0.07828324288129807, 0.007398399990051985, 0.04529596492648125, 0.01626504957675934, 0.006747797597199678, -0.05577593296766281, 0.04181436449289322, 0.028362730517983437, -0.006347765680402517, 0.01281861774623394, -0.02146986685693264, -0.007398399990051985, -0.05496707558631897, -0.011570164933800697, 0.07940860837697983, 0.008180880919098854, 0.005077333189547062, -0.0028639675583690405, -0.015825454145669937, -0.02161053754389286, 0.004105825908482075, -0.03456982597708702, 0.019430140033364296, 0.017891554161906242, -0.022138051688671112, 0.02983977273106575, 0.031510237604379654, 0.09642976522445679, -0.06994850933551788, 0.01509572472423315, -0.04807421192526817, -0.06625589728355408, -0.013521971181035042, -0.00019589494331739843, -0.06685375422239304, -0.0025848241057246923, 0.03914162144064903, 0.01241418905556202, -0.017671756446361542, -0.018937792629003525, -0.03418298065662384, 0.057885993272066116, -0.017671756446361542, -0.02584824152290821, -0.01080526877194643, 0.03541385009884834, 0.03476324677467346, 0.009046884253621101, -0.006932428106665611, -0.03833276778459549, 0.04976226016879082, -0.0010973414173349738, 0.052575673907995224, -0.04550697281956673, -0.0077149090357124805, -0.03815692663192749, -0.04712468385696411, -0.011965801939368248, 0.04571797698736191, -0.031246479600667953, 0.02197979763150215, -0.019166383892297745, 0.062106113880872726, -0.024212945252656937, -0.03509734198451042, 0.006009276490658522, 0.057639818638563156, -0.02192704565823078, 0.062035780400037766, 0.05039528012275696, 0.015596863813698292, -0.002609001938253641, -0.01650243252515793, -0.035642437636852264, 0.0600312240421772, -0.0011748201213777065, -0.024775628000497818, 0.0008006141288205981, -0.04540146887302399, 0.06548221409320831, -0.07729855179786682, 0.05834317207336426, 0.012203183025121689, -0.019113631919026375, 0.004563006106764078, 0.01494626235216856, -0.05493190884590149, 0.04406509920954704, -0.015693575143814087, -0.032494932413101196, -0.0019012524280697107, 0.03050795942544937, 0.014647336676716805, -0.023210665211081505, 0.01489351037889719, 0.03027936816215515, -0.031721241772174835, -0.030683796852827072, -0.036046866327524185, 0.017961889505386353, 0.013803312554955482, -0.04747636243700981, -0.031035473570227623, -0.012317478656768799, 0.062070947140455246, 0.041673693805933, -0.03882511332631111, 0.006444476544857025, -0.014462706632912159, -0.040020816028118134, 0.057112306356430054, -0.04364308714866638, 0.06129726022481918, -0.036187537014484406, 0.048250049352645874, -0.010356880724430084, -0.04392442852258682, -0.009363393299281597, -0.003442036220803857, 0.032600436359643936, -0.008954569697380066, 0.027114277705550194, -0.031017890200018883, -0.0024177776649594307, -0.017961889505386353, 0.02962876670062542, -0.024722876027226448, -0.09143595397472382, -0.028819909319281578, 0.01740800030529499, 0.085809126496315, 0.039950478821992874, 0.0008341333013959229, -0.01652880758047104, 0.03024420142173767, 0.026551594957709312, 0.031387150287628174, 0.06277430057525635, -0.023439256474375725, -0.022647982463240623, 0.01737283170223236, 0.019113631919026375, 0.011596540920436382, -0.04142752289772034, 0.019447725266218185, 0.045331135392189026, -0.030859636142849922, 0.06094558164477348, -0.019711481407284737, -0.005727935116738081, 0.022401809692382812, 0.040442828088998795, 0.057639818638563156, -0.027606625109910965, -0.010304128751158714, -0.01515726838260889, 0.008198464289307594, -0.0028925412334501743, -0.03532592952251434, -0.028098972514271736, 0.05500224605202675, -0.04385409131646156, 0.0055520967580378056, 0.0012209777487441897, 0.010093122720718384, -0.03924712538719177, -0.005930149462074041, 0.012844993732869625, -0.032090503722429276, 0.005310318898409605, -0.019518060609698296, 0.004378375597298145, -0.022524897009134293, -0.0063917250372469425, 0.03840310126543045, 0.014242908917367458, 0.0037233775947242975, 0.004637737292796373, 0.07279708981513977, 0.04107584431767464, -0.03914162144064903, 0.027360452339053154, 0.01515726838260889, -0.028116555884480476, 0.04515529423952103, 0.0432562418282032, 0.006659878417849541, -0.012642779387533665, -0.0958670824766159, -0.018304774537682533, 0.009970036335289478, -0.00007445656228810549, 0.00855453684926033, 0.024423951283097267, 0.019025713205337524, -0.03254768252372742, 0.05222399905323982, -0.03418298065662384, 0.009591983631253242, -0.02530314214527607, -0.03685572370886803, -0.03864927589893341, -0.061754439026117325, 0.026797769591212273, -0.052927352488040924, 0.020573090761899948, 0.014858342707157135, -0.04128685221076012, -0.049445752054452896, -0.07666553556919098, -0.019131215289235115, -0.011939425952732563, -0.027923135086894035, -0.040266986936330795, 0.05517808347940445, 0.028116555884480476, -0.03365546464920044, -0.05936303734779358, 0.006571959238499403, 0.01693323627114296, 0.023034827783703804, -0.024212945252656937, -0.07624351978302002, 0.03731290251016617, -0.0344291552901268, -0.014849551022052765, 0.0607345774769783, 0.011192113161087036, -0.01715303398668766, 0.016089212149381638, -0.002290294971317053, -0.044733282178640366, 0.07603251188993454, -0.0032464161049574614, -0.015755118802189827, -0.04677300900220871, -0.05433405935764313, 0.00047861007624305785, -0.04617515951395035, 0.011534997262060642, 0.01514847669750452, -0.05581109970808029, -0.02542622946202755, -0.00407065823674202, -0.0022298505064100027, -0.06323148310184479, -0.009178763255476952, -0.004365187603980303, -0.01790034770965576, -0.061367593705654144, -0.0026309818495064974, -0.019201550632715225, 0.03805142641067505, 0.027325283735990524, 0.02913641929626465, -0.03717223182320595, -0.018726786598563194, -0.030490374192595482, 0.004013510886579752, 0.01637934520840645, 0.026903271675109863, -0.0347808301448822, -0.013864856213331223, 0.02952326461672783, -0.036644719541072845, -0.05654962360858917, -0.018498197197914124, 0.015253979712724686, -0.006079611834138632, 0.02150503359735012, -0.010304128751158714, 0.0342533178627491, -0.10325229912996292, 0.02076651155948639, 0.024195360019803047, 0.016045251861214638, -0.01638813689351082, 0.006088403984904289, 0.0034046706277877092, 0.04765219986438751, 0.039809808135032654, 0.07286742329597473, -0.0339016392827034, 0.03798108920454979, -0.0043014464899897575, 0.0047080726362764835, 0.07015950977802277, -0.0057103512808680534, -0.05517808347940445, -0.03064863011240959, 0.031105808913707733, -0.0026617534458637238, 0.03724256902933121, -0.015930956229567528, 0.006281826179474592, -0.0031365170143544674, 0.004637737292796373, 0.07385212182998657, 0.017680548131465912, 0.027026358991861343, 0.08552778512239456, -0.027413202449679375, -0.013504387810826302, -0.011798755265772343, -0.005675183609127998, 0.03448190540075302, 0.03910645470023155, -0.058237671852111816, -0.041849534958601, 0.0347808301448822, 0.0057103512808680534, 0.061191756278276443, -0.00011244040069868788, 0.031809162348508835, 0.026797769591212273, -0.003951967693865299, 0.10212693363428116, -0.013513179495930672, -0.0351325087249279, 0.031738828867673874, 0.05834317207336426, 0.002077090786769986, -0.013240629807114601, 0.035747941583395004, -0.005719143431633711, 0.02097751758992672, 0.023228250443935394, -0.035818278789520264, -0.015816662460565567, 0.019465308636426926, -0.03917679190635681, 0.057393647730350494, 0.06928031891584396, -0.02141711488366127, -0.02978702075779438, -0.05982021614909172, -0.022243555635213852, 0.05813216790556908, 0.012906537391245365, -0.049551256000995636, 0.04543663561344147, -0.0329345278441906, -0.02901333197951317 ]
359
funcsigs
__str__
null
def __str__(self): return self._name
(self)
[ 0.003390365745872259, -0.017084578052163124, 0.024779802188277245, -0.009557923302054405, 0.02697121351957321, -0.06557375937700272, 0.02420666441321373, -0.009111212566494942, 0.10296260565519333, -0.060348089784383774, -0.05758354067802429, -0.02398752234876156, -0.0227232463657856, 0.0180201418697834, 0.018138140439987183, 0.012861897237598896, -0.0022546248510479927, -0.04096252843737602, -0.00816300604492426, 0.023313242942094803, -0.0010851698461920023, 0.02816805988550186, 0.051481302827596664, -0.05087444931268692, -0.013519320636987686, 0.05630240589380264, -0.008255720138549805, -0.007872222922742367, -0.008622359484434128, -0.005242529325187206, -0.04045682027935982, -0.059302955865859985, 0.01462345477193594, -0.006089594215154648, -0.05053731054067612, 0.02304353006184101, -0.05964009463787079, 0.02668464370071888, -0.019452987238764763, -0.023852666839957237, 0.014395885169506073, 0.014151458628475666, -0.049222465604543686, -0.02562265284359455, -0.01791900023818016, -0.0240043792873621, 0.010400773957371712, 0.04217623546719551, 0.003369294572621584, -0.01029963232576847, -0.003065868280827999, 0.025993507355451584, -0.03944540023803711, -0.015870872884988785, -0.04966074600815773, -0.019334988668560982, 0.046390485018491745, -0.009246069006621838, -0.01800328493118286, 0.05610012263059616, -0.04959331825375557, -0.011555478908121586, 0.03293859586119652, -0.04601963236927986, -0.020767834037542343, -0.017514431849122047, 0.014303171075880527, 0.027257781475782394, 0.004631462972611189, 0.04500821232795715, 0.036343708634376526, -0.040052250027656555, 0.012904039584100246, 0.04470478743314743, 0.007366512436419725, -0.0267352145165205, -0.06655146926641464, -0.0007580386009067297, 0.015862444415688515, -0.04430021718144417, 0.01205276045948267, 0.013502463698387146, -0.05104302242398262, -0.013569891452789307, -0.03846769407391548, -0.07261998951435089, -0.01926756091415882, -0.04959331825375557, -0.041501954197883606, 0.011058197356760502, -0.01654515415430069, 0.02285810373723507, -0.026178933680057526, 0.06419149041175842, -0.056774403899908066, -0.04676134139299393, 0.01918327622115612, -0.04227737709879875, 0.032483454793691635, 0.03039318509399891, 0.00024469001800753176, 0.02813434600830078, -0.017413290217518806, 0.04072653129696846, -0.054110996425151825, -0.018761850893497467, -0.030140331014990807, 0.005170887336134911, 0.0006363520515151322, 0.023835809901356697, -0.014328457415103912, 0.02923005260527134, 0.018306711688637733, 0.003639006754383445, 0.03342744708061218, -0.0732942745089531, -0.027274638414382935, 0.01914956048130989, 0.03445572406053543, -0.04072653129696846, 0.022284964099526405, 0.0240886639803648, -0.04824475571513176, -0.006245521362870932, -0.006131736561655998, 0.07545197010040283, -0.0406591035425663, -0.03539971634745598, 0.03796198219060898, -0.03309030830860138, 0.030089760199189186, 0.006494162604212761, -0.04598591849207878, 0.005111887585371733, 0.10040034353733063, 0.0017457539215683937, 0.03207888826727867, 0.02916262485086918, 0.032517168670892715, 0.148611381649971, -0.01406717300415039, 0.004226894583553076, 0.0404905341565609, 0.027696063742041588, 0.0005483795539475977, -0.0015276663471013308, 0.007358083967119455, 0.05856124684214592, -0.033697158098220825, -0.02311095781624317, 0.02936490811407566, 0.02430780604481697, 0.0192169900983572, -0.008841500617563725, -0.011808333918452263, 0.035197433084249496, -0.048952750861644745, -0.03964768350124359, -0.004892746452242136, -0.039951108396053314, -0.02044755034148693, -0.04804247245192528, -0.007863794453442097, -0.018812421709299088, -0.0021871968638151884, 0.021189259365200996, 0.03282059356570244, -0.00823464896529913, 0.015028023160994053, 0.012406758032739162, -0.0435585081577301, -0.035096291452646255, -0.07309198379516602, 0.05198701471090317, -0.021222973242402077, 0.04332251101732254, 0.010173204354941845, 0.08374561369419098, 0.018256139010190964, -0.027797207236289978, 0.005242529325187206, -0.030140331014990807, -0.055425841361284256, 0.01768300123512745, 0.07255256175994873, -0.03863626345992088, 0.02142525650560856, 0.023886380717158318, 0.05053731054067612, 0.008656073361635208, -0.0010245899902656674, 0.0026992284692823887, -0.03427029773592949, 0.0023368026595562696, -0.0001156285434262827, -0.040018536150455475, -0.006886087823659182, -0.04443507269024849, -0.0007153693004511297, 0.022099537774920464, -0.007042014971375465, 0.03684942051768303, -0.04689619690179825, 0.024746088311076164, 0.031016895547509193, 0.010206918232142925, 0.04177166521549225, -0.011150910519063473, 0.025774365290999413, -0.03351173177361488, 0.015761302784085274, 0.027122925966978073, -0.01137005165219307, 0.03192717209458351, 0.05886467173695564, -0.06999029964208603, -0.03600656986236572, -0.05589783936738968, -0.0035631500650197268, 0.046693913638591766, 0.03037632815539837, -0.003228117013350129, 0.030308900400996208, -0.03327573463320732, -0.051649872213602066, -0.016047872602939606, 0.021206116303801537, -0.0192169900983572, 0.0005170360673218966, -0.014126173220574856, 0.007602510508149862, -0.06250578910112381, -0.02435837686061859, 0.025808079168200493, -0.025201227515935898, 0.06129208207130432, -0.04999788478016853, -0.008390575647354126, -0.07187828421592712, -0.032483454793691635, -0.01528087817132473, -0.006582661531865597, 0.003308187937363982, 0.016031015664339066, 0.027578065171837807, -0.052796151489019394, 0.005722954403609037, 0.024644946679472923, -0.0024821944534778595, -0.038771118968725204, 0.06436005979776382, -0.035130005329847336, -0.020026125013828278, 0.005937881302088499, -0.0011694548884406686, -0.0995912030339241, -0.07376626878976822, 0.003053225576877594, 0.009321925230324268, -0.004060431849211454, -0.07693538814783096, 0.0020070376340299845, -0.020986976101994514, 0.04220994934439659, -0.004614606034010649, -0.008133506402373314, -0.03047747164964676, 0.021020689979195595, 0.007813223637640476, -0.004955960437655449, 0.10667114704847336, -0.002214589389041066, -0.07504740357398987, 0.033730871975421906, -0.0307471826672554, -0.06476462632417679, -0.012280330061912537, 0.02048126421868801, -0.12069617956876755, -0.04477221518754959, -0.0010799020528793335, -0.018272995948791504, -0.0014086137525737286, 0.015179735608398914, -0.002484301570802927, -0.057954393327236176, 0.025791222229599953, -0.012465757317841053, -0.0036874704528599977, 0.005364743061363697, 0.06071894243359566, 0.01891356334090233, -0.02038012258708477, 0.0017710394458845258, 0.0068060168996453285, -0.010931769385933876, 0.011479622684419155, 0.03405115753412247, -0.008386361412703991, 0.0013970246072858572, -0.015854015946388245, 0.0057355971075594425, 0.013671034015715122, -0.010181632824242115, -0.056673262268304825, -0.008015507832169533, -0.027763493359088898, 0.0003882379678543657, 0.004132074303925037, 0.01471616793423891, -0.024425804615020752, 0.02565636672079563, -0.0033924728631973267, 0.1024906113743782, 0.009490495547652245, 0.07484511286020279, -0.012305616401135921, 0.0014928987948223948, 0.031354036182165146, 0.09662437438964844, -0.04723333567380905, 0.0018879849230870605, -0.045143067836761475, 0.007324370089918375, 0.02660035900771618, -0.006110665388405323, -0.06584347039461136, 0.06277550011873245, 0.009423067793250084, 0.025959793478250504, -0.045311637222766876, -0.05640355125069618, 0.03329259157180786, 0.008689788170158863, -0.033832013607025146, 0.003261831123381853, 0.0384339801967144, -0.007008301094174385, -0.009583208709955215, -0.04312022775411606, 0.05768468230962753, 0.012263473123311996, -0.03850140795111656, -0.0007622528355568647, -0.026516074314713478, 0.03560199961066246, -0.009507352486252785, 0.004357536789029837, 0.041265957057476044, -0.010670485906302929, -0.015609589405357838, -0.03201145678758621, 0.013671034015715122, 0.0033587589859962463, 0.0036895775701850653, 0.004218466114252806, -0.009566351771354675, 0.04679505527019501, -0.024712374433875084, 0.016224870458245277, 0.009574780240654945, -0.07565425336360931, 0.009684351272881031, 0.0016762187005952, -0.019334988668560982, -0.005638669244945049, 0.0059041669592261314, 0.00836950447410345, 0.04824475571513176, -0.06621433049440384, -0.044064220041036606, 0.032365456223487854, -0.02670150063931942, -0.02147582918405533, -0.05127901956439018, 0.0613257959485054, 0.057785823941230774, 0.02668464370071888, -0.04480592906475067, -0.042479660362005234, 0.056605834513902664, -0.0056597404181957245, 0.018744993954896927, 0.06705717742443085, -0.003746469970792532, 0.006207593251019716, 0.013620462268590927, 0.009886635467410088, 0.00013538284110836685, -0.013628890737891197, -0.011555478908121586, -0.02789834886789322, -0.02017783932387829, 0.024543803185224533, -0.01667158119380474, -0.0772050991654396, -0.002442158991470933, -0.05111045017838478, -0.07693538814783096, 0.0334780178964138, 0.013123180717229843, -0.022032110020518303, -0.023818952962756157, -0.010493488050997257, -0.03416915610432625, 0.022386107593774796, 0.025184370577335358, 0.01768300123512745, -0.02034640870988369, -0.012996753677725792, 0.006114879623055458, -0.01761557348072529, -0.06911373138427734, -0.08819586783647537, 0.0691811591386795, 0.020835261791944504, -0.013451892882585526, -0.011926333419978619, 0.028791770339012146, 0.002263053320348263, -0.05724639818072319, 0.06783260405063629, 0.017329003661870956, 0.07558682560920715, -0.007994435727596283, 0.019874412566423416, 0.010485058650374413, 0.05212187021970749, 0.06702346354722977, 0.0165704395622015, -0.04332251101732254, -0.002039697952568531, -0.010940197855234146, 0.000136831498821266, 0.05178472772240639, -0.048851609230041504, 0.014547597616910934, -0.04197395220398903, -0.06705717742443085, 0.05481899157166481, 0.021324114874005318, -0.03644485026597977, 0.005128744523972273, 0.02051497809588909, 0.01524716429412365, -0.037658557295799255, -0.04534535109996796, 0.016165871173143387, 0.0433899387717247, -0.0023620883002877235, 0.0006574233411811292, 0.046626485884189606, 0.008399004116654396, -0.07275484502315521, 0.027207210659980774, -0.018761850893497467, -0.012946181930601597, -0.051447588950395584, 0.02919633872807026, -0.011917904950678349, -0.07936279475688934, 0.06001095101237297, -0.005975809413939714, 0.022048966959118843, -0.001009313389658928, 0.01783471554517746, 0.007960721850395203, 0.0353660024702549, -0.02680264227092266, -0.00828521978110075, 0.04328879714012146, 0.016224870458245277, -0.04052424803376198, -0.048952750861644745, -0.039984822273254395, 0.050200171768665314, -0.057785823941230774, -0.012389901094138622, -0.0113616231828928, -0.03332630544900894, -0.04231109097599983, -0.059269241988658905, 0.00224830349907279, 0.06102237105369568, 0.0060600945726037025, 0.017126720398664474, 0.010830627754330635, 0.04210880771279335, -0.011420623399317265, -0.01893042027950287, 0.04430021718144417, 0.037557415664196014, -0.053976140916347504, -0.01466559711843729, -0.013485606759786606, 0.04187280684709549, -0.0134097496047616, -0.01402503065764904, -0.07369884103536606, 0.03600656986236572, 0.007349655497819185, -0.019722700119018555, 0.03688313439488411, -0.01896413415670395, 0.05481899157166481, -0.027628635987639427, 0.028673771768808365, -0.004623034503310919, -0.006675375159829855, -0.043727077543735504, 0.015466305427253246, -0.035062577575445175, 0.04335622489452362, -0.014252600260078907, 0.007455011829733849, -0.0000034858119306591107, -0.0045893206261098385, 0.014252600260078907, -0.011041340418159962, 0.04986302927136421, 0.011403766460716724, -0.02690378576517105, -0.051447588950395584, -0.012819754891097546, -0.0279320627450943, 0.03401744365692139, -0.03590542823076248, 0.04183909296989441, -0.03590542823076248, 0.1139533743262291, 0.02806691825389862, 0.029651477932929993, -0.0006205486133694649, 0.040119677782058716, -0.0017678787698969245, 0.06530404835939407, -0.106940858066082, 0.020666692405939102, -0.006831302773207426, 0.05070587992668152, 0.014800453558564186, -0.03789455443620682, 0.005368957296013832, -0.03046061471104622, 0.020110411569476128, -0.05387499928474426, -0.014960594475269318, 0.008500146679580212, 0.020717263221740723, -0.009229212068021297, 0.03445572406053543, -0.03944540023803711, -0.027342068031430244, -0.07039486616849899, -0.009557923302054405, 0.05980866402387619, -0.011150910519063473, 0.022402964532375336, 0.025066372007131577, 0.01327489409595728, 0.010088919661939144, 0.017463861033320427, 0.08509417623281479, 0.025150656700134277, 0.03681570664048195, 0.04706476628780365, -0.019452987238764763, 0.03059547021985054, 0.015778159722685814, -0.028623199090361595, 0.0016056300373747945, -0.04709848016500473, 0.03907454386353493, 0.061629220843315125, -0.04038939252495766, 0.060617800801992416, 0.06004466488957405, 0.04102995619177818, -0.03917568549513817, 0.012221330776810646, -0.0071263001300394535, 0.03698427602648735, -0.007282227743417025, -0.027089212089776993, -0.07187828421592712, 0.005554384086281061, -0.023346956819295883, -0.0032555097714066505, 0.028741199523210526, -0.055392127484083176, -0.033950015902519226, -0.005874667316675186, -0.026431789621710777, -0.008167220279574394, 0.056032694876194, -0.05754982680082321, -0.006241307128220797, -0.03816426545381546, 0.007914365269243717, -0.006401448976248503, 0.04706476628780365, 0.008588645607233047, 0.0326351672410965, 0.05009903013706207, 0.04537906497716904, 0.029567193239927292, 0.0026107290759682655, 0.018154997378587723, -0.02048126421868801, 0.027426352724432945, -0.03194402903318405, -0.009701208211481571, -0.011327909305691719, 0.00019714797963388264, -0.00899321399629116, -0.027122925966978073, 0.05360528454184532, -0.03708541765809059, -0.01267646998167038, 0.006401448976248503, 0.01134476624429226, 0.08030678331851959, -0.017497574910521507, 0.046255629509687424, -0.03850140795111656, -0.01898099109530449, 0.015457876957952976, -0.0146908825263381, 0.03863626345992088, -0.06749545782804489, -0.009288211353123188, -0.004047789145261049, -0.01773357205092907, -0.071406289935112, -0.03600656986236572, 0.0049180323258042336, 0.01791900023818016, -0.0025032656267285347, -0.046390485018491745, 0.02284124679863453, -0.0017994856461882591, -0.003929790109395981, -0.04210880771279335, 0.0292131956666708, -0.057853251695632935, 0.03654599189758301, -0.04733447730541229, -0.055392127484083176, 0.0022293394431471825, -0.045277923345565796, -0.04220994934439659, 0.010906483978033066, -0.0013833282282575965, 0.024442661553621292, 0.04318765550851822, -0.00734544126316905, -0.020093554630875587, 0.006144379265606403, -0.03039318509399891, -0.027409495785832405, -0.018677564337849617, -0.0643937736749649, 0.011117196641862392, -0.06331492215394974, 0.06486576795578003, 0.030241472646594048, -0.03941168636083603, -0.015761302784085274, -0.0036453281063586473, -0.014800453558564186, -0.010367060080170631, 0.05121159180998802, 0.012769184075295925, -0.06466348469257355, -0.04982931539416313, 0.025926077738404274, 0.03342744708061218, 0.027443209663033485, 0.06574232876300812, -0.037388842552900314, 0.007728938478976488, -0.022622104734182358, 0.007994435727596283, -0.015702303498983383, 0.0507395938038826, 0.06712460517883301, -0.03465800732374191, -0.005862024612724781, 0.05229043960571289, -0.05212187021970749, -0.05771839618682861, -0.026195790618658066, -0.036107711493968964, 0.030207758769392967, 0.05650469288229942, 0.03152260556817055, 0.04109738767147064, -0.04480592906475067, -0.004981245845556259, 0.015500019304454327, 0.023363813757896423, 0.03914197161793709, 0.029027767479419708, -0.025909220799803734, 0.031320322304964066, -0.015854015946388245, 0.015677018091082573, 0.025791222229599953, 0.03671456500887871, -0.028892911970615387, 0.05741497129201889, 0.04730076342821121, -0.01931813172996044, 0.009861350059509277, 0.04463735595345497, -0.04821104183793068, 0.007880651392042637, 0.056841831654310226, -0.002754013752564788, 0.04615448787808418, 0.012103332206606865, 0.015002737753093243, 0.004703105427324772, 0.011420623399317265, 0.06280921399593353, 0.06253950297832489, -0.045311637222766876, -0.03944540023803711, -0.06129208207130432, 0.004850604105740786, 0.019638415426015854, 0.033815156668424606, -0.02268953248858452, 0.0329723097383976, 0.048919036984443665, -0.011740906164050102, 0.050368741154670715, 0.011041340418159962, 0.052695006132125854, 0.0608200840651989, 0.00350625766441226, 0.04086138680577278, 0.011201482266187668, 0.0054827420972287655, 0.005457456223666668, 0.027004927396774292, 0.04581734910607338, 0.02924690954387188, -0.020767834037542343, 0.017034007236361504, 0.057954393327236176, 0.026313789188861847, -0.005141387693583965, 0.019486701115965843, -0.014817310497164726, -0.0291289109736681, 0.0060516661033034325, 0.03961396962404251, 0.019975554198026657, 0.014126173220574856, -0.0029857975896447897, -0.023363813757896423, 0.0034009013324975967, 0.0073707266710698605, -0.0193012747913599, 0.04969445988535881, -0.0066332328133285046, -0.013064181432127953 ]
360
builtins
wrapper_descriptor
null
from builtins import wrapper_descriptor
()
[ 0.0167169701308012, -0.04747917130589485, 0.015567212365567684, 0.05002683401107788, 0.020662538707256317, 0.054758209735155106, 0.025162305682897568, 0.08053261786699295, -0.036362096667289734, -0.00826336070895195, 0.009396574459969997, 0.03546876087784767, -0.019173644483089447, -0.005939032416790724, -0.06620614975690842, -0.004321928136050701, 0.008246817626059055, 0.07252567261457443, -0.018793148919939995, -0.007667803671211004, -0.03470776975154877, 0.0016822433099150658, 0.02749490737915039, -0.042350757867097855, -0.0029302258044481277, 0.0909217894077301, 0.012134484946727753, -0.0018652532016858459, 0.03105170838534832, -0.06607380509376526, -0.05962192639708519, -0.0679597333073616, -0.023309461772441864, 0.015459681861102581, 0.01604696735739708, -0.04642040282487869, -0.035865798592567444, 0.08483386784791946, -0.017767466604709625, -0.013424859382212162, 0.019818831235170364, 0.02410353720188141, -0.013044364750385284, -0.052839189767837524, 0.0027296387124806643, 0.019918091595172882, -0.010951641947031021, -0.010058305226266384, 0.006067242473363876, -0.059291064739227295, 0.026651199907064438, -0.04496459662914276, 0.0550890751183033, -0.018859323114156723, -0.037354692816734314, 0.0479423813521862, 0.044369038194417953, 0.1092517226934433, -0.03847963362932205, 0.06306292861700058, -0.07431234419345856, 0.03943914547562599, -0.016369560733437538, -0.044766075909137726, 0.02554280124604702, -0.005678475834429264, -0.03192850202322006, -0.018230678513646126, -0.0059555754996836185, 0.020298587158322334, -0.02309439890086651, -0.04168902710080147, 0.02446748875081539, -0.015873262658715248, 0.021804023534059525, -0.07795186340808868, -0.037850990891456604, -0.01794944331049919, 0.07001110166311264, -0.037751730531454086, -0.01856154389679432, 0.0037098273169249296, -0.04311174899339676, 0.03867815434932709, -0.01603042334318161, -0.01450017187744379, -0.027130955830216408, 0.010339540429413319, 0.015393508598208427, 0.020232412964105606, -0.04311174899339676, 0.007924224250018597, -0.030125286430120468, 0.0321270227432251, -0.07345210015773773, 0.008693485520780087, 0.008982992731034756, -0.00398279121145606, 0.044402122497558594, 0.0007248017936944962, 0.03244134411215782, 0.007580951321870089, -0.015517583116889, 0.01229991763830185, 0.0077339764684438705, 0.0011673341505229473, 0.007494098972529173, -0.03460850939154625, -0.019256360828876495, -0.005980390589684248, -0.014094862155616283, -0.006079650018364191, -0.011108802631497383, -0.01857808604836464, 0.011356951668858528, -0.02198600023984909, 0.01227510254830122, -0.029413925483822823, 0.023342547938227654, -0.005748784635215998, 0.00925595685839653, 0.029413925483822823, -0.030704300850629807, 0.007671939209103584, 0.01760203391313553, 0.06647083908319473, 0.014872395433485508, 0.05019226670265198, 0.05042387172579765, -0.015178445726633072, 0.03838037699460983, -0.005087053868919611, -0.03768555819988251, 0.06875380873680115, 0.029331209138035774, 0.0398692712187767, 0.021737851202487946, 0.046321142464876175, -0.038810499012470245, -0.0021857789251953363, -0.03811568394303322, 0.005670204292982817, 0.007370024919509888, -0.011447940021753311, -0.04172211512923241, -0.026204532012343407, -0.02850404568016529, 0.017238082364201546, -0.02857021987438202, 0.00464038597419858, 0.008627313189208508, -0.01353239081799984, 0.027693426236510277, 0.05207819864153862, -0.03563419356942177, 0.0667024478316307, -0.011687817052006721, -0.021307725459337234, -0.014376097358763218, -0.029364295303821564, -0.017618577927350998, -0.010852381587028503, -0.016361288726329803, -0.02297859638929367, 0.01330078486353159, 0.007353481370955706, 0.02896725758910179, -0.10587690025568008, 0.00019787295605055988, 0.039703838527202606, -0.018826235085725784, -0.008776201866567135, 0.01075312215834856, 0.018363025039434433, 0.02593984082341194, 0.05412956327199936, 0.0009905280312523246, 0.04109347239136696, 0.005666068289428949, 0.0052069928497076035, 0.04059717431664467, 0.012920290231704712, -0.11090604960918427, -0.0015643725637346506, 0.054890554398298264, 0.033748261630535126, 0.027627253904938698, -0.02456674911081791, 0.032292455434799194, -0.042317673563957214, 0.011183246970176697, 0.027941575273871422, 0.06802590936422348, 0.010629047639667988, -0.0031473562121391296, -0.02301168255507946, -0.0763637125492096, 0.014433998614549637, -0.007126011420041323, 0.06491577625274658, -0.02402082085609436, 0.0732535794377327, 0.007456876803189516, 0.04192063584923744, 0.03336776793003082, 0.024616379290819168, 0.03209393471479416, -0.01852845773100853, -0.07490790635347366, -0.031961590051651, 0.04959670826792717, -0.04691670089960098, -0.02349143661558628, 0.0305719543248415, 0.017850182950496674, 0.001377226784825325, -0.025691691786050797, -0.016038695350289345, 0.01628684438765049, 0.01750277541577816, 0.03211047872900963, 0.038843587040901184, 0.00928904302418232, -0.018412655219435692, 0.056379448622465134, -0.033334679901599884, 0.015567212365567684, -0.033781345933675766, 0.02908306010067463, -0.05902637168765068, 0.023789215832948685, -0.005682611837983131, -0.02549317106604576, -0.004170970991253853, 0.0772901326417923, -0.02110920660197735, -0.0003479255537968129, 0.020232412964105606, -0.023756129667162895, 0.04115964472293854, 0.02504650317132473, 0.06881998479366302, 0.06150786206126213, 0.04195372015237808, -0.03235862776637077, -0.0014971655327826738, 0.006418786942958832, 0.021820567548274994, 0.0023698227014392614, 0.004929893184453249, 0.02206871658563614, -0.08059878647327423, 0.0015230143908411264, -0.005893538240343332, 0.006700022611767054, -0.04254927858710289, -0.006733108777552843, -0.04165594279766083, 0.016898944973945618, -0.03517098352313042, -0.029248492792248726, 0.02000080794095993, 0.0009166002855636179, 0.0009781206026673317, -0.010835838504135609, -0.01847882755100727, 0.001245914725586772, 0.005711562465876341, -0.008139286190271378, -0.011381766758859158, 0.07874594628810883, 0.026750460267066956, 0.000731522508431226, 0.010645591653883457, -0.0800694078207016, 0.006993665359914303, 0.019339077174663544, 0.012258559465408325, 0.03138257563114166, -0.019620312377810478, 0.043773479759693146, 0.017866726964712143, -0.04192063584923744, 0.003697419771924615, -0.06855528801679611, 0.012779672630131245, -0.005521314684301615, 0.026833176612854004, -0.04962979629635811, -0.03500555083155632, 0.01526116207242012, 0.029248492792248726, 0.07113604247570038, -0.0350717231631279, 0.06948171555995941, 0.09112030267715454, -0.08655436336994171, -0.057868342846632004, 0.029827507212758064, -0.012316460721194744, -0.011414852924644947, -0.018925495445728302, -0.03867815434932709, 0.08569411188364029, -0.03752012550830841, -0.04248310625553131, 0.047743864357471466, -0.015831904485821724, -0.06494885683059692, 0.027296388521790504, 0.02345835044980049, 0.020745255053043365, -0.04661892354488373, 0.008106200024485588, 0.038314200937747955, -0.012324732728302479, 0.007556136231869459, 0.00951237790286541, 0.0024546070490032434, 0.0993257686495781, -0.04704904556274414, -0.0034161843359470367, -0.0019686485175043344, 0.003891803091391921, 0.028140094131231308, 0.012366090901196003, 0.024632921442389488, -0.0062781693413853645, 0.0229620523750782, 0.006389836315065622, -0.08126051723957062, -0.017287712544202805, 0.04556015133857727, 0.010860653594136238, 0.011323865503072739, 0.06941553950309753, 0.0637577474117279, -0.01660943776369095, -0.006575948093086481, -0.043806567788124084, 0.011687817052006721, 0.039803095161914825, -0.04559323936700821, -0.015244618989527225, -0.049232758581638336, 0.0024132488761097193, 0.000622957362793386, 0.011001271195709705, 0.10481812804937363, -0.053897958248853683, 0.03144874796271324, -0.04450138285756111, -0.041821375489234924, 0.03191195800900459, 0.037288520485162735, 0.021324269473552704, -0.01373918168246746, -0.0078084212727844715, -0.03665987774729729, -0.01958722621202469, 0.06441947817802429, -0.06160711869597435, 0.013673008419573307, -0.014946839772164822, -0.022432668134570122, -0.02005043812096119, -0.015658199787139893, -0.010132749564945698, 0.032275911420583725, -0.007874594070017338, -0.03467468544840813, -0.03718926012516022, -0.022813163697719574, -0.036262836307287216, -0.02157241851091385, -0.04817399010062218, -0.03563419356942177, 0.023789215832948685, -0.0738491341471672, 0.054361168295145035, 0.0169899333268404, 0.051846593618392944, 0.010852381587028503, -0.014649061486124992, 0.005786007270216942, -0.02795811928808689, -0.026138359680771828, 0.034343820065259933, -0.02096031792461872, 0.043773479759693146, 0.033797889947891235, -0.04344261437654495, -0.0449976809322834, 0.009131882339715958, 0.0012117942096665502, -0.052276719361543655, -0.022730447351932526, 0.008106200024485588, -0.005525450687855482, 0.005364153999835253, 0.050291527062654495, 0.007767063099890947, 0.030208002775907516, 0.01402868889272213, 0.0147814080119133, 0.03368208929896355, 0.047743864357471466, 0.022846249863505363, 0.034244559705257416, -0.027776142582297325, -0.023921562358736992, -0.0028516454622149467, -0.05068856477737427, -0.06048217788338661, 0.03503863513469696, 0.02600601315498352, 0.0057032909244298935, -0.022316865622997284, -0.0026076321955770254, -0.024417860433459282, 0.04804164171218872, -0.08807634562253952, -0.018147962167859077, 0.03904210776090622, -0.04513002932071686, -0.0167169701308012, -0.03009220026433468, 0.024814898148179054, -0.006538725458085537, -0.0024008413311094046, -0.02761070989072323, 0.017188452184200287, -0.0032073254697024822, -0.057835254818201065, 0.0005666068173013628, -0.029877137392759323, -0.034310732036828995, -0.015906348824501038, 0.04347570240497589, 0.04066334664821625, 0.02711441181600094, 0.07867977023124695, 0.013127081096172333, -0.04039865359663963, 0.031763069331645966, 0.0033458753023296595, -0.020811427384614944, 0.08662053942680359, 0.011141888797283173, -0.030654670670628548, 0.02157241851091385, -0.011414852924644947, 0.14425727725028992, -0.023292917758226395, -0.04450138285756111, -0.05164807289838791, -0.04771077632904053, -0.04797546938061714, -0.026138359680771828, 0.025360826402902603, -0.0017659935401752591, -0.050225354731082916, -0.012854116968810558, -0.03566728159785271, -0.031812697649002075, 0.0668678805232048, 0.007667803671211004, -0.005388968624174595, -0.01678314246237278, 0.026767002418637276, 0.07371678948402405, -0.03249097242951393, 0.016195856034755707, -0.02258155681192875, 0.018809692934155464, 0.04066334664821625, -0.02000080794095993, 0.003840105375275016, -0.002905410947278142, -0.029331209138035774, -0.01895858161151409, -0.06941553950309753, 0.029777877032756805, 0.007452740799635649, -0.05158190056681633, 0.029149234294891357, 0.022267235442996025, -0.02256501466035843, 0.0036043638829141855, -0.016551537439227104, -0.0068365042097866535, 0.10203886032104492, 0.022796619683504105, -0.03546876087784767, 0.10058305412530899, 0.03151492029428482, 0.040266308933496475, 0.02347489260137081, 0.015856720507144928, -0.04847176745533943, -0.03662678971886635, -0.01899166777729988, -0.019835375249385834, -0.03364900127053261, 0.09337019175291061, -0.008234410546720028, -0.009768798016011715, -0.031746525317430496, -0.05598241090774536, -0.019289446994662285, 0.0059348964132368565, 0.036163579672575, -0.002514576306566596, 0.020430931821465492, 0.01378881186246872, -0.04251619055867195, -0.024252427741885185, 0.016849316656589508, -0.025890210643410683, -0.012887204065918922, 0.041854459792375565, -0.012076583690941334, -0.01478967908769846, -0.06862146407365799, 0.035303328186273575, -0.04413743317127228, -0.002644854597747326, 0.01755240373313427, 0.0235906969755888, 0.02301168255507946, 0.06822442263364792, -0.02355760894715786, -0.0073079876601696014, -0.026767002418637276, -0.00043736258521676064, 0.07523877173662186, -0.051217950880527496, 0.014169306494295597, -0.0007408281089738011, 0.026767002418637276, 0.0033975730184465647, -0.005537858232855797, -0.025840580463409424, 0.018247222527861595, 0.030704300850629807, 0.0014041096437722445, -0.0422184132039547, -0.05042387172579765, -0.0008928193710744381, -0.012581152841448784, 0.0024359957315027714, -0.021655134856700897, -0.015476224943995476, -0.01150584127753973, -0.031332943588495255, -0.03002602607011795, 0.010877196677029133, -0.044335950165987015, 0.009297315031290054, 0.008908548392355442, 0.016725242137908936, 0.03240825608372688, -0.007804285269230604, -0.013201525434851646, -0.011737446300685406, 0.033251963555812836, 0.05843081325292587, 0.03417838737368584, -0.06570985168218613, -0.06700022518634796, -0.018181048333644867, 0.013127081096172333, 0.0688861533999443, -0.0012717634672299027, 0.007899409160017967, 0.10402405261993408, 0.03914136439561844, -0.009967317804694176, 0.03206084668636322, -0.06481651216745377, -0.05869550630450249, -0.005260758567601442, -0.01995117776095867, -0.0772901326417923, -0.004975386895239353, -0.04446829855442047, 0.0017091260524466634, 0.04069643095135689, -0.020811427384614944, -0.003920753952115774, -0.03404603898525238, 0.008031755685806274, -0.03467468544840813, -0.052210547029972076, 0.01628684438765049, -0.019603770226240158, -0.08523090183734894, 0.012572881765663624, 0.04115964472293854, 0.0047313738614320755, -0.0070805177092552185, -0.02306131273508072, -0.037321604788303375, -0.0007733976817689836, 0.027246758341789246, 0.0015964250778779387, 0.020645994693040848, -0.05604858323931694, -0.020364759489893913, -0.023375634104013443, -0.042847055941820145, -0.011464483104646206, 0.000905226799659431, -0.023193657398223877, -0.02044747583568096, -0.005599895492196083, 0.00815996527671814, 0.00928904302418232, 0.022763533517718315, 0.05244215205311775, -0.02005043812096119, 0.004991930443793535, 0.005723970010876656, -0.047280650585889816, -0.020248956978321075, -0.00526903010904789, -0.0024504712782800198, 0.030687756836414337, 0.021754393354058266, -0.007035023532807827, -0.03358282893896103, 0.03593197092413902, 0.0844368264079094, -0.060349833220243454, 0.05154881626367569, -0.038248028606176376, 0.017370428889989853, -0.02446748875081539, 0.01750277541577816, 0.03652752935886383, 0.0007449639379046857, -0.05108560249209404, -0.022895880043506622, 0.020397845655679703, -0.03421147167682648, 0.016179313883185387, 0.03371517360210419, -0.026353422552347183, 0.01993463560938835, -0.03996852785348892, -0.019256360828876495, 0.08509855717420578, -0.0640886127948761, 0.005434462800621986, 0.007882866077125072, 0.009644723497331142, -0.034244559705257416, 0.001267627696506679, 0.03953840583562851, -0.017386971041560173, 0.015459681861102581, -0.015889806672930717, 0.01606351137161255, 0.013615107163786888, -0.004491496365517378, -0.002072043949738145, 0.0034616782795637846, 0.0022167975548654795, 0.014061775989830494, 0.018693890422582626, 0.028305526822805405, -0.028686022385954857, -0.03207739070057869, -0.06680170446634293, -0.022399581968784332, -0.04264853894710541, 0.0048802634701132774, 0.04900115355849266, -0.0020017351489514112, 0.01618758589029312, -0.07404765486717224, 0.017701294273138046, -0.035799626260995865, -0.016675611957907677, -0.027213672176003456, 0.010455343872308731, 0.032821837812662125, -0.015873262658715248, 0.010968185029923916, -0.07279036939144135, -0.012415721081197262, 0.02504650317132473, 0.029397383332252502, 0.006749652326107025, -0.04059717431664467, -0.024831442162394524, -0.008131015114486217, -0.08165755867958069, -0.008403979241847992, -0.018329938873648643, 0.056941919028759, -0.02208525873720646, 0.008346077054738998, 0.013929429464042187, 0.033797889947891235, 0.005972118582576513, 0.01950450986623764, -0.03214356303215027, 0.003585752798244357, -0.009818428196012974, 0.033698633313179016, 0.03192850202322006, 0.033781345933675766, -0.026336878538131714, 0.041755203157663345, -0.057305872440338135, -0.034840118139982224, 0.07080517709255219, 0.03014182858169079, 0.040861863642930984, 0.02455020509660244, 0.028652936220169067, 0.08695140480995178, 0.008668671362102032, 0.0061044651083648205, 0.021737851202487946, -0.0738491341471672, 0.029413925483822823, -0.01705610565841198, 0.03391369432210922, 0.009859786368906498, -0.024897614493966103, -0.0791429802775383, 0.07424617558717728, -0.0005045696161687374, 0.008660399354994297, 0.019901547580957413, 0.04043174162507057, -0.02256501466035843, -0.02352452278137207, -0.034873202443122864, -0.01948796585202217, -0.021655134856700897, 0.0037801361177116632, 0.04119272902607918, 0.012341275811195374, -0.007279036566615105, 0.0021423527505248785, 0.020910687744617462, 0.026287248358130455, 0.04245001822710037, 0.04152359440922737, -0.04522928595542908, -0.020381303504109383, 0.025145763531327248, -0.05591623857617378, 0.00275238580070436, 0.011927694082260132, -0.06077995523810387, -0.012672141194343567, -0.041258905082941055, 0.013474489562213421, 0.0015974590787664056, -0.0013151896419003606, 0.04658583551645279, -0.007767063099890947, -0.0224988404661417, 0.006964714732021093 ]
361
funcsigs
_empty
null
class _empty(object): pass
()
[ -0.0019924950320273638, -0.023942874744534492, -0.035502638667821884, -0.02389347366988659, -0.010127144865691662, -0.01814652606844902, 0.004536631517112255, 0.02677518129348755, 0.04248460754752159, -0.03051316924393177, -0.017356114462018013, -0.005899267271161079, 0.026412909850478172, 0.0022888993844389915, -0.07390345633029938, 0.02665991336107254, 0.01565179042518139, 0.017092643305659294, 0.0011362162185832858, -0.030990708619356155, -0.018607597798109055, 0.045415714383125305, 0.042089398950338364, 0.07640641927719116, -0.02801019884645939, 0.03395475074648857, 0.024634484201669693, -0.030430834740400314, 0.058062296360731125, -0.04986177757382393, -0.05302342399954796, -0.012679514475166798, -0.03474516049027443, 0.056810811161994934, 0.03734693303704262, -0.012004370801150799, 0.022180916741490364, 0.07746030390262604, -0.052430614829063416, -0.008447520434856415, 0.02392640709877014, 0.0034642245154827833, -0.05868803709745407, -0.03889482095837593, 0.0316493846476078, 0.03285146877169609, 0.09023862332105637, 0.04353848844766617, -0.014070967212319374, -0.027137452736496925, 0.020583627745509148, 0.049664173275232315, -0.01635163277387619, 0.024272212758660316, -0.04215526953339577, 0.04222113639116287, 0.03695172816514969, 0.03975110128521919, -0.07219089567661285, 0.05140966549515724, -0.06290356069803238, 0.05470304563641548, 0.019266273826360703, -0.06392451375722885, 0.03117184527218342, 0.0412331223487854, -0.05111326277256012, 0.03751160204410553, 0.023317132145166397, 0.01559415552765131, -0.0309083741158247, 0.019414477050304413, -0.028948813676834106, 0.07864592224359512, 0.041694194078445435, -0.059972453862428665, -0.03873015195131302, 0.008447520434856415, -0.010044810362160206, -0.0658676028251648, 0.024947356432676315, -0.0038162043783813715, -0.05565812811255455, 0.030299099162220955, 0.0055081783793866634, -0.0038367880042642355, 0.01829472742974758, 0.025062624365091324, -0.021670442074537277, 0.037445735186338425, -0.024354547262191772, 0.03678705915808678, -0.03201165795326233, -0.0012453094823285937, 0.03563437610864639, 0.011329228058457375, -0.008406353183090687, -0.047325875610113144, -0.04367022216320038, -0.023745272308588028, -0.030529635027050972, -0.004816568456590176, -0.03421822190284729, 0.0010847571538761258, -0.02446981519460678, 0.0025544280651956797, 0.02114350162446499, -0.023811139166355133, 0.0024391598999500275, 0.043637290596961975, 0.02255965583026409, -0.01758665032684803, -0.029591022059321404, 0.024140477180480957, 0.04182593151926994, -0.026544645428657532, -0.04162832722067833, 0.01161739882081747, 0.008974460884928703, -0.014597908593714237, 0.023415934294462204, -0.0031863453332334757, -0.09083142876625061, -0.01244074385613203, 0.09445414692163467, -0.017092643305659294, -0.004503697622567415, 0.010291813872754574, 0.05012524873018265, -0.0011917919619008899, 0.030397899448871613, 0.039784032851457596, -0.02252672053873539, 0.016664505004882812, -0.02132463827729225, 0.028092533349990845, 0.00017920619575306773, 0.016549235209822655, -0.05822696536779404, 0.027104519307613373, 0.0045819152146577835, -0.042813945561647415, -0.01607169583439827, 0.01962854713201523, 0.03461342677474022, -0.014993113465607166, -0.0021180552430450916, -0.017372580245137215, -0.021242303773760796, 0.04017924144864082, -0.04077204689383507, -0.01490254607051611, 0.02787846513092518, 0.0357661098241806, -0.04054151102900505, 0.0039232391864061356, 0.018739333376288414, -0.03563437610864639, -0.020863564684987068, -0.07890938967466354, 0.01140332967042923, -0.008081131614744663, -0.0026552879717200994, -0.032093990594148636, -0.004487230442464352, 0.0384666807949543, -0.01545418705791235, -0.0741669237613678, 0.009435534477233887, 0.0295416209846735, -0.022444386035203934, -0.04340675100684166, -0.04999351128935814, -0.0019986701663583517, 0.0185581985861063, 0.03354308009147644, -0.040080439299345016, 0.04014630615711212, 0.027137452736496925, -0.04696360230445862, 0.004330795258283615, -0.0035506756976246834, -0.0729154422879219, 0.014886079356074333, 0.05180487036705017, 0.01729024574160576, 0.028685342520475388, -0.016178730875253677, 0.028109000995755196, 0.01811359077692032, -0.044987574219703674, -0.004898903425782919, -0.0028796494007110596, 0.02088003046810627, 0.051179129630327225, -0.02254318818449974, -0.0032892634626477957, 0.004022040870040655, -0.007665342651307583, 0.011642099358141422, -0.08279558271169662, -0.03500863164663315, 0.029591022059321404, -0.04011337086558342, -0.005936318077147007, 0.05154140293598175, -0.017487850040197372, 0.0037153447046875954, -0.06916098296642303, -0.008089365437626839, -0.04798455163836479, -0.01580822467803955, -0.029064081609249115, 0.04594265669584274, 0.02911348268389702, -0.00802761409431696, 0.021752776578068733, 0.0003923753974959254, -0.014597908593714237, 0.041430722922086716, 0.032242193818092346, -0.014334437437355518, -0.01952974498271942, -0.018080657348036766, -0.009929541498422623, 0.011946736834943295, -0.012037305161356926, 0.025655431672930717, 0.0019039855105802417, -0.06708616018295288, 0.032900869846343994, -0.0017125577433034778, -0.012811249122023582, -0.0036762356758117676, 0.005611096508800983, -0.0686340481042862, 0.01595642790198326, -0.026314107701182365, -0.028635941445827484, -0.056547340005636215, 0.013107653707265854, -0.02420634590089321, -0.01702677644789219, -0.014161535538733006, 0.04383489117026329, -0.009180297143757343, -0.04340675100684166, 0.06619694083929062, 0.00873569119721651, -0.016186963766813278, -0.04103551805019379, -0.031402382999658585, -0.0017156453104689717, -0.06718495488166809, 0.062179021537303925, -0.04179299622774124, -0.06744842976331711, -0.011279827915132046, -0.01952974498271942, -0.006483842618763447, 0.026610512286424637, -0.024008741602301598, 0.012959451414644718, 0.07449626177549362, 0.014927246607840061, 0.03912535682320595, 0.02214798331260681, 0.005648147314786911, -0.03145178034901619, 0.0158246923238039, 0.09050209075212479, -0.022345585748553276, 0.028141934424638748, 0.0032707382924854755, -0.03135298192501068, 0.024766219779849052, -0.026445843279361725, 0.013716928660869598, -0.009106196463108063, -0.010917555540800095, 0.039915770292282104, -0.017372580245137215, -0.0031431198585778475, 0.016944441944360733, -0.01786658726632595, 0.018624065443873405, -0.028899412602186203, -0.010884622111916542, -0.0012823599390685558, -0.026841050013899803, 0.03214339166879654, 0.03645772114396095, 0.02279019169509411, 0.014515574090182781, 0.03362541273236275, -0.005808699410408735, -0.06138860806822777, 0.025523697957396507, 0.02596830390393734, -0.0028693575877696276, -0.008332252502441406, -0.025655431672930717, -0.04930190369486809, -0.014227403327822685, -0.024799153208732605, 0.004057032987475395, 0.02624824084341526, 0.06395744532346725, 0.04841269180178642, 0.0018298844806849957, 0.007595358416438103, 0.01388159766793251, 0.014672009274363518, 0.03955349698662758, 0.06145447492599487, 0.0315835177898407, 0.014276803471148014, -0.047622278332710266, 0.0012792723719030619, 0.07363998144865036, -0.059445515275001526, -0.0261000394821167, -0.0014840795192867517, -0.006265656091272831, -0.047622278332710266, -0.019743815064430237, 0.006706145592033863, 0.0288500115275383, -0.020221354439854622, 0.018377061933279037, -0.009204997681081295, -0.052035409957170486, 0.0219997800886631, -0.01120572630316019, -0.030743705108761787, -0.0011794418096542358, 0.007245436776429415, 0.020040219649672508, 0.002061450155451894, -0.033592477440834045, 0.01910160481929779, 0.005112973041832447, -0.042912743985652924, 0.02898174710571766, 0.01567649096250534, -0.020287223160266876, 0.011526831425726414, -0.02227971702814102, 0.0839153304696083, -0.032769132405519485, 0.0034786330070346594, 0.011699733324348927, 0.051179129630327225, 0.012070238590240479, 0.12139400094747543, -0.03938882797956467, 0.013140587136149406, 0.05980778485536575, 0.005825166590511799, 0.01113985851407051, 0.07937046885490417, 0.027269188314676285, -0.06553826481103897, -0.03145178034901619, 0.00013713841326534748, -0.04103551805019379, 0.02802666649222374, -0.0032666216138750315, -0.025194359943270683, -0.06227781996130943, -0.018871068954467773, -0.07041247189044952, -0.06646041572093964, -0.05193660780787468, -0.005648147314786911, 0.010094210505485535, -0.007508907001465559, 0.028948813676834106, -0.01952974498271942, -0.004487230442464352, 0.014227403327822685, 0.0011043115518987179, -0.013609894551336765, -0.03876308724284172, -0.04716120660305023, 0.0026470543816685677, -0.014309737831354141, 0.06171794608235359, -0.012333708815276623, 0.04429596662521362, 0.009731939062476158, -0.031089510768651962, -0.07462799549102783, -0.008875659666955471, -0.02214798331260681, 0.03092484176158905, 0.02540842816233635, -0.026017704978585243, -0.04011337086558342, 0.013231155462563038, 0.10960369557142258, -0.024947356432676315, -0.0038532549515366554, 0.029903892427682877, -0.006545593496412039, -0.03698465973138809, 0.02417341060936451, -0.06339757144451141, 0.0014470289461314678, 0.005891033913940191, 0.09504695236682892, -0.01827825978398323, -0.04604145511984825, -0.025655431672930717, 0.03227512538433075, -0.02060009352862835, 0.04656839743256569, 0.0035115666687488556, 0.05849043279886246, -0.007500673644244671, -0.026544645428657532, 0.02018842101097107, 0.04696360230445862, 0.08049021661281586, -0.03540383651852608, 0.006323290057480335, -0.03507449850440025, -0.046239059418439865, 0.04133192449808121, -0.027318589389324188, -0.03589784353971481, -0.00044923764653503895, -0.06303530186414719, -0.055855728685855865, 0.007298954296857119, -0.013519326224923134, -0.025507230311632156, -0.0783824548125267, -0.012654813937842846, 0.06491252779960632, -0.022362051531672478, 0.04436183348298073, 0.027236254885792732, 0.041990600526332855, 0.06622987985610962, -0.004466646816581488, -0.01567649096250534, 0.05437370762228966, 0.047194138169288635, -0.01038238126784563, -0.02143990620970726, 0.0020665961783379316, 0.046667199581861496, -0.02420634590089321, 0.0019955825991928577, -0.07844831794500351, -0.08556202054023743, 0.018360594287514687, 0.0019081021891906857, -0.0494995042681694, -0.06540653109550476, 0.06843644380569458, -0.06119100749492645, -0.0467001311480999, -0.02940988540649414, 0.08009500801563263, -0.009410833939909935, 0.01243251096457243, -0.01813005842268467, 0.005491711664944887, -0.02940988540649414, -0.013354657217860222, -0.03183051943778992, -0.05964311584830284, 0.02749972604215145, 0.005088272504508495, -0.008142882958054543, -0.006607344374060631, 0.008134649135172367, -0.03609544783830643, 0.02046835795044899, 0.030002694576978683, -0.005849866662174463, 0.0037482783664017916, -0.007154868915677071, 0.04455943405628204, 0.030595503747463226, -0.006874931510537863, 0.05595453083515167, -0.023037195205688477, -0.035799045115709305, 0.023811139166355133, -0.027236254885792732, -0.03741279989480972, 0.017092643305659294, 0.04037684202194214, -0.020023752003908157, 0.038137342780828476, -0.004997704643756151, -0.06112513691186905, 0.04195766523480415, 0.00473423395305872, -0.024782687425613403, 0.0006036148406565189, 0.004339028615504503, -0.10288520157337189, -0.009591969661414623, -0.02227971702814102, -0.021752776578068733, -0.01867346651852131, 0.009987175464630127, 0.04765521362423897, 0.017817188054323196, -0.018871068954467773, 0.04152952507138252, 0.030957775190472603, -0.03418528661131859, -0.06682268530130386, 0.004044682718813419, 0.03602958098053932, 0.0015869976487010717, 0.047457609325647354, 0.007220736239105463, 0.018920470029115677, -0.0742327943444252, 0.04867615923285484, -0.0480504184961319, 0.023547669872641563, 0.04735880717635155, 0.04353848844766617, 0.03793974220752716, -0.006133920978754759, -0.01202083844691515, 0.03912535682320595, -0.01264658011496067, 0.03639185056090355, 0.014120368286967278, -0.06810710579156876, 0.016442202031612396, 0.029376951977610588, 0.025935370475053787, 0.0028672991320490837, 0.059445515275001526, -0.03533796966075897, -0.024156944826245308, 0.03873015195131302, -0.01058821752667427, 0.012547778896987438, -0.03187992051243782, 0.017356114462018013, 0.0005794290918856859, -0.06672388315200806, 0.016730371862649918, -0.030299099162220955, 0.0384666807949543, -0.05302342399954796, 0.017421981319785118, -0.008418703451752663, 0.054077304899692535, 0.02471681870520115, 0.0037647453136742115, 0.03477809578180313, -0.008068781346082687, -0.0039294143207371235, -0.03329607471823692, -0.014474406838417053, -0.02445334941148758, 0.020567160099744797, 0.060664065182209015, 0.034843962639570236, -0.020122554153203964, -0.0247497521340847, 0.010629384778439999, -0.01202907133847475, 0.03586491197347641, 0.011172792874276638, -0.02526022680103779, 0.0343170240521431, -0.013453458435833454, -0.0715322196483612, 0.005911617539823055, -0.009657837450504303, -0.019052205607295036, -0.08081955462694168, -0.030002694576978683, -0.06797537207603455, -0.038532547652721405, -0.029162881895899773, -0.017421981319785118, -0.03051316924393177, 0.01677977293729782, 0.05437370762228966, 0.05753535404801369, -0.0295416209846735, 0.009731939062476158, 0.007179568987339735, 0.028751209378242493, -0.041167255491018295, -0.01407920103520155, -0.020583627745509148, 0.023679403588175774, 0.10947196185588837, -0.012045538052916527, 0.04297861456871033, 0.05312222242355347, -0.0019647071603685617, -0.048116285353899, 0.05733774974942207, -0.006220371928066015, -0.04933483526110649, 0.0013657236704602838, -0.04222113639116287, 0.026462310925126076, 0.019134540110826492, 0.006380924489349127, -0.0185581985861063, -0.005606980063021183, 0.027005719020962715, -0.016186963766813278, 0.060927536338567734, -0.032242193818092346, 0.023975808173418045, -0.024272212758660316, 0.05427490547299385, -0.0029269917868077755, -0.005273525137454271, 0.026445843279361725, -0.022444386035203934, 0.011831468902528286, -0.000491434067953378, 0.0033221973571926355, 0.0026799882762134075, -0.013749863021075726, -0.03474516049027443, -0.0019461818737909198, -0.008859192952513695, -0.022888993844389915, 0.0384337492287159, 0.026906916871666908, 0.04287981241941452, -0.028273670002818108, -0.05921497941017151, 0.01580822467803955, 0.04880789667367935, -0.038005609065294266, -0.0343499556183815, -0.006590877193957567, -0.005623446777462959, 0.009534335695207119, -0.043769024312496185, -0.04930190369486809, 0.03942176327109337, 0.017619583755731583, -0.015725890174508095, -0.031122444197535515, -0.0022086231037974358, -0.00032650778302922845, -0.018080657348036766, -0.0006133920978754759, -0.03892775624990463, -0.0281584020704031, -0.03270326554775238, -0.010489416308701038, 0.0092626316472888, 0.05707428231835365, 0.038400813937187195, 0.005203540902584791, 0.0008413557661697268, -0.010234178975224495, 0.0030896023381501436, -0.0012381051201373339, 0.09122663736343384, 0.02048482559621334, -0.04699653759598732, -0.07502320408821106, -0.02842187136411667, 0.023547669872641563, 0.008159349672496319, 0.03458049148321152, 0.00036175723653286695, 0.05539465695619583, -0.0009041358134709299, -0.04146365821361542, -0.06471492350101471, 0.009913074783980846, 0.025326093658804893, -0.04064031317830086, -0.039224158972501755, 0.04933483526110649, -0.08022674173116684, -0.013420525006949902, -0.04683186858892441, 0.053682100027799606, 0.04558038339018822, -0.024255745112895966, 0.03184698894619942, -0.020781230181455612, -0.017685452476143837, 0.01374162919819355, -0.009089729748666286, 0.033065538853406906, 0.014161535538733006, -0.03349367901682854, 0.001147537142969668, 0.030727237462997437, 0.049927644431591034, -0.03658945485949516, 0.05387970060110092, 0.019974350929260254, -0.005187074188143015, 0.02088003046810627, 0.07601121813058853, -0.028932346031069756, -0.03919122740626335, 0.02073182910680771, -0.04551451653242111, 0.049104299396276474, 0.052397679537534714, -0.0025832452811300755, 0.02776319533586502, 0.020830631256103516, -0.006055702921003103, 0.014540273696184158, 0.017092643305659294, 0.023531202226877213, 0.031929321587085724, -0.06227781996130943, -0.07120288163423538, -0.019826149567961693, 0.028553606942296028, 0.01814652606844902, 0.022362051531672478, -0.03836787864565849, 0.06889751553535461, 0.02624824084341526, -0.04587678611278534, 0.01237487606704235, 0.0008382681990042329, -0.03533796966075897, 0.08029261231422424, -0.04505344107747078, -0.0508168563246727, 0.0920829102396965, 0.005277642048895359, -0.026594046503305435, -0.03616131469607353, 0.06428678333759308, 0.05249648168683052, -0.03873015195131302, 0.06975379586219788, 0.0008387828129343688, 0.01113162562251091, 0.0044172462075948715, 0.02323479764163494, 0.03024969808757305, 0.01674683950841427, -0.048840828239917755, 0.010440015234053135, -0.028405405580997467, -0.015495354309678078, -0.06708616018295288, -0.06771189719438553, 0.02279019169509411, 0.043209150433540344, -0.005952784791588783, 0.05262821540236473, 0.030957775190472603, 0.01704324223101139 ]
362
funcsigs
_get_user_defined_method
null
def _get_user_defined_method(cls, method_name, *nested): try: if cls is type: return meth = getattr(cls, method_name) for name in nested: meth = getattr(meth, name, meth) except AttributeError: return else: if not isinstance(meth, _NonUserDefinedCallables): # Once '__signature__' will be added to 'C'-level # callables, this check won't be necessary return meth
(cls, method_name, *nested)
[ 0.02503032609820366, -0.0528767928481102, 0.04794854298233986, 0.03698040544986725, -0.039018403738737106, -0.038647860288619995, 0.05610053613781929, 0.008619806729257107, 0.05928722769021988, 0.036498699337244034, 0.001880516647361219, 0.013710170984268188, 0.020565256476402283, -0.05354377627372742, -0.02855050563812256, 0.05269152298569679, 0.07151521742343903, 0.015284988097846508, -0.05187632143497467, 0.0021896902471780777, 0.034812718629837036, -0.003501651808619499, 0.02960655838251114, 0.015201615169644356, 0.039648331701755524, 0.07388670742511749, 0.00260076392441988, 0.015442470088601112, 0.040389422327280045, -0.03483124449849129, -0.020342929288744926, 0.023826053366065025, 0.009884292259812355, 0.056359920650720596, 0.0529879592359066, 0.04513240233063698, 0.030125321820378304, 0.08255746215581894, -0.04450247436761856, -0.0007196681690402329, -0.060880571603775024, 0.02217712812125683, 0.0282911229878664, -0.06551238149404526, 0.03218184784054756, -0.03738800808787346, 0.0123391542583704, 0.04446541890501976, 0.005664709024131298, -0.013682380318641663, 0.006396535784006119, -0.04416898265480995, 0.03034764900803566, -0.01818450354039669, 0.0012031138176098466, -0.0015261828666552901, -0.012098299339413643, 0.03462744504213333, -0.007665653247386217, 0.05710101127624512, -0.03599846363067627, 0.001550499931909144, 0.005271004978567362, -0.013719434849917889, -0.02547498047351837, -0.011885236017405987, -0.012246517464518547, -0.0059657772071659565, -0.018916331231594086, 0.02547498047351837, -0.02184363640844822, 0.04794854298233986, 0.02047261968255043, -0.005493332166224718, 0.013015398755669594, -0.014599479734897614, -0.006757817231118679, -0.07692517340183258, 0.040389422327280045, 0.009884292259812355, 0.0015921862795948982, -0.01672085002064705, 0.008920874446630478, -0.015507315285503864, -0.018786638975143433, 0.01480327919125557, 0.014469788409769535, -0.03394193574786186, -0.044687747955322266, -0.006382640451192856, -0.05165399610996246, -0.024900635704398155, -0.020657893270254135, 0.012598535977303982, -0.014710643328726292, -0.02758708782494068, 0.02367783524096012, -0.010264101438224316, 0.004692028276622295, -0.03849964216351509, 0.03283030167222023, -0.01628546044230461, 0.036498699337244034, -0.047059234231710434, 0.02895810455083847, -0.0014404943212866783, 0.01622987724840641, 0.0007416693260893226, -0.012144617736339569, 0.035072099417448044, 0.01568332314491272, 0.025567615404725075, -0.0211581289768219, 0.010069564916193485, 0.008147361688315868, -0.04524356499314308, 0.006683708168566227, -0.010847710072994232, -0.03942600637674332, 0.03488682582974434, -0.021065492182970047, -0.04987537860870361, 0.00938405655324459, -0.0388701893389225, -0.03942600637674332, -0.014979287981987, -0.03849964216351509, 0.004664237145334482, 0.08085295557975769, -0.03107021190226078, 0.013089507818222046, 0.0060213590040802956, -0.014071452431380749, -0.01113488245755434, -0.040797021239995956, 0.04776327311992645, 0.037573277950286865, 0.052765630185604095, 0.0016396623104810715, 0.009569329209625721, 0.022825581952929497, 0.003765665227547288, -0.010597591288387775, -0.004863405134528875, -0.02614196203649044, 0.04453952983021736, 0.007827766239643097, 0.06536416709423065, 0.015257197432219982, -0.01980563811957836, -0.06025064364075661, -0.01769353076815605, -0.0022174811456352472, 0.058064427226781845, 0.061214059591293335, -0.02217712812125683, 0.031274013221263885, 0.023474035784602165, -0.04398370906710625, -0.027290651574730873, 0.017193295061588287, 0.012663381174206734, -0.10056595504283905, -0.08396553248167038, 0.036591336131095886, -0.03360844776034355, 0.02958803065121174, -0.050320032984018326, -0.02289969101548195, 0.04305734857916832, -0.07685106992721558, 0.030884940177202225, -0.004393276292830706, 0.0061603132635355, 0.06273329257965088, -0.03605404496192932, -0.004168632905930281, 0.020732002332806587, 0.03838847950100899, -0.016887595877051353, 0.008082516491413116, -0.0025567617267370224, -0.011514690704643726, -0.013923234306275845, 0.04661457985639572, 0.10034362971782684, 0.023436982184648514, -0.019990911707282066, -0.058731406927108765, -0.018814431503415108, -0.02264031022787094, 0.049912434071302414, 0.04298323765397072, 0.012070508673787117, 0.02966213971376419, -0.011088564060628414, -0.042538583278656006, 0.1201307401061058, -0.023548144847154617, 0.019620366394519806, 0.03170013800263405, 0.05821264535188675, 0.022770000621676445, 0.04313145577907562, -0.02582699805498123, 0.025326762348413467, 0.0775921568274498, 0.03849964216351509, -0.05617464706301689, -0.05317322909832001, 0.021732473745942116, 0.0020831585861742496, -0.008629070594906807, 0.013358153402805328, -0.028420813381671906, 0.017221085727214813, 0.02538234367966652, -0.03253386542201042, -0.034071628004312515, 0.024919161573052406, -0.007350689731538296, 0.08596647530794144, 0.023826053366065025, 0.0038652492221444845, 0.0018434622325003147, -0.04479891061782837, -0.003974096849560738, -0.011607327498495579, -0.03270060941576958, -0.03849964216351509, 0.04331672936677933, -0.01111635472625494, 0.005752713419497013, 0.008906979113817215, -0.09604530781507492, -0.005048677790910006, 0.010810655541718006, 0.025604670867323875, 0.049615997821092606, 0.017786167562007904, -0.011801863089203835, 0.018721794709563255, -0.005891668144613504, 0.04194571077823639, -0.06951427459716797, 0.002633186522871256, 0.04976421594619751, 0.03377519175410271, 0.009763864800333977, -0.008439166471362114, 0.02677188813686371, -0.015266460366547108, -0.03716567903757095, 0.007906507700681686, -0.002007891656830907, -0.0565822459757328, -0.04616992548108101, 0.01395102497190237, 0.023436982184648514, 0.026197543367743492, -0.02893957681953907, 0.024641253054142, 0.08085295557975769, 0.04013004153966904, -0.019620366394519806, -0.037591807544231415, -0.003855985589325428, 0.048541415482759476, -0.056619301438331604, 0.02541939727962017, 0.06873612850904465, -0.054581303149461746, 0.017591631039977074, -0.0006478750729002059, -0.00768418051302433, -0.028272595256567, -0.025975216180086136, 0.038721971213817596, -0.018601367250084877, -0.07166343182325363, 0.009157096967101097, 0.008916242979466915, 0.048911962658166885, 0.029217485338449478, -0.03607257083058357, 0.04791149124503136, 0.03698040544986725, 0.009763864800333977, 0.013284044340252876, 0.014219670556485653, 0.044984184205532074, -0.0387590229511261, -0.004305271431803703, 0.03946305811405182, 0.02578994259238243, 0.029384231194853783, -0.043650221079587936, -0.04739272594451904, 0.05902784317731857, -0.05821264535188675, -0.06543827801942825, 0.029884466901421547, -0.05339555814862251, -0.015201615169644356, 0.019879747182130814, -0.030421758070588112, -0.00519226398319006, -0.026716306805610657, -0.046021707355976105, -0.008985720574855804, -0.03816615045070648, -0.00846695713698864, -0.09330327063798904, -0.05428486689925194, 0.005660077556967735, 0.053062066435813904, -0.01661895029246807, 0.02252914570271969, 0.05009770765900612, 0.0705147460103035, 0.0028948839753866196, 0.05317322909832001, -0.038907241076231, -0.004719818942248821, -0.034016046673059464, -0.003619763068854809, -0.04554000124335289, -0.00954153761267662, -0.05673046410083771, 0.05391431972384453, 0.005697132088243961, -0.012774544768035412, 0.03672102466225624, 0.009875028394162655, -0.007119099143892527, 0.031107265502214432, 0.02788352407515049, 0.04528062045574188, -0.00954153761267662, -0.034090153872966766, -0.0015991339460015297, 0.03427542746067047, 0.03607257083058357, 0.0003346485900692642, -0.010069564916193485, 0.021732473745942116, 0.00020669471996370703, 0.04661457985639572, 0.07114467024803162, -0.0494677796959877, 0.02858755923807621, -0.09560064971446991, -0.03740653395652771, 0.012255781330168247, -0.002004417823627591, 0.0006675602635368705, -0.00042236357694491744, 0.014238198287785053, 0.05435897409915924, -0.059805989265441895, 0.03240417316555977, -0.0670316219329834, -0.026957159861922264, -0.02151014655828476, 0.05606348440051079, 0.04157516732811928, -0.04383549094200134, 0.028031742200255394, -0.012209462933242321, -0.04050058498978615, -0.00411073537543416, -0.05858318880200386, 0.006674444768577814, -0.02756856009364128, -0.03147781267762184, 0.03738800808787346, 0.007925034500658512, -0.007207103539258242, -0.004474333021789789, 0.012765280902385712, 0.005414591170847416, -0.03909251466393471, -0.028031742200255394, -0.01599828712642193, 0.08441019058227539, -0.04450247436761856, -0.055952318012714386, 0.05535944551229477, 0.02156572788953781, -0.00031930572004057467, -0.00730900326743722, -0.006229790393263102, -0.042130984365940094, -0.04027825966477394, 0.009333106689155102, 0.00706814881414175, -0.024493034929037094, -0.012422526255249977, -0.015572160482406616, 0.020213238894939423, 0.006725394632667303, 0.0016848224913701415, 0.04316851124167442, 0.030162375420331955, -0.00706814881414175, 0.03381224721670151, 0.008138097822666168, 0.005145946051925421, -0.01184818148612976, -0.008916242979466915, -0.01971300318837166, 0.02534528821706772, -0.009407215751707554, -0.01978711225092411, 0.004349273629486561, 0.05013475939631462, 0.020379984751343727, -0.02184363640844822, 0.006442854180932045, -0.022695891559123993, 0.028494922444224358, 0.013033926486968994, -0.027642669156193733, 0.03920367732644081, -0.017452677711844444, 0.02475241757929325, -0.0335528627038002, -0.006674444768577814, 0.007586912252008915, 0.06669812649488449, -0.00005377247362048365, 0.015831541270017624, -0.01644294150173664, -0.009921346791088581, -0.002369173103943467, -0.03749917075037956, -0.04316851124167442, -0.008971824310719967, 0.004696659743785858, 0.041871603578329086, -0.058434970676898956, 0.027698250487446785, -0.09115411341190338, -0.037295371294021606, -0.022399455308914185, -0.054544247686862946, -0.0030963679309934378, 0.060139480978250504, 0.03555380925536156, -0.06036180630326271, 0.050616469234228134, 0.0264939796179533, 0.05565588176250458, 0.03470155596733093, 0.012580008246004581, -0.012904235161840916, -0.015071924775838852, -0.025530561804771423, 0.08018597215414047, 0.03961127623915672, -0.03609110042452812, 0.019323930144309998, -0.011866709217429161, 0.004126946907490492, -0.05224686861038208, 0.026271652430295944, -0.011542481370270252, -0.010162200778722763, -0.013682380318641663, -0.008601279929280281, 0.07699928432703018, -0.0705888569355011, 0.012033454142510891, -0.012978344224393368, -0.0387960784137249, 0.04024120420217514, -0.005729554686695337, 0.004164001438766718, -0.02362225390970707, -0.029402758926153183, 0.007142257876694202, -0.012737490236759186, -0.027012743055820465, -0.000869623152539134, -0.017730586230754852, -0.027661196887493134, -0.04176044091582298, 0.03323790058493614, -0.01820303127169609, -0.06669812649488449, -0.0043330625630915165, 0.10138115286827087, 0.020602311939001083, 0.017369303852319717, -0.023492563515901566, 0.019268348813056946, 0.00026719781453721225, 0.012459580786526203, -0.01661895029246807, -0.03664691746234894, 0.0025729730259627104, 0.006475276779383421, 0.053062066435813904, 0.007735130377113819, 0.01800849474966526, -0.02052820287644863, 0.043242622166872025, 0.03396046534180641, 0.018351249396800995, 0.0071098352782428265, 0.022788528352975845, 0.005409959238022566, -0.04424309358000755, 0.004694344010204077, 0.010690228082239628, 0.024604199454188347, -0.010616119019687176, -0.061288170516490936, -0.023714890703558922, -0.007438694126904011, 0.02291821874678135, -0.028698721900582314, -0.043909601867198944, -0.0028670933097600937, 0.018295668065547943, -0.004133894573897123, -0.0050440458580851555, 0.04027825966477394, -0.01288570836186409, -0.01730445958673954, 0.04476185515522957, 0.041130512952804565, -0.0493566170334816, -0.0318298302590847, 0.009865764528512955, 0.02262178249657154, -0.07481306791305542, 0.01003251038491726, 0.017397094517946243, 0.013765753246843815, 0.016924649477005005, 0.04024120420217514, -0.010013982653617859, 0.05261741206049919, -0.025956688448786736, -0.04424309358000755, 0.0016871384577825665, -0.05120934173464775, 0.023807527497410774, -0.05695279315114021, -0.009624910540878773, 0.07603586465120316, -0.03031059354543686, 0.01197787281125784, 0.06677223742008209, -0.022510617971420288, -0.03003268502652645, 0.015674060210585594, -0.010597591288387775, 0.010125146247446537, -0.041834548115730286, -0.00042265307274647057, 0.02336287312209606, 0.023029381409287453, -0.06558649241924286, 0.03990771248936653, -0.007781448308378458, 0.06080646067857742, -0.0017971440684050322, -0.09634174406528473, -0.041797492653131485, 0.023863108828663826, 0.00846695713698864, -0.048170872032642365, 0.06899550557136536, 0.07251568883657455, 0.035831715911626816, -0.03184835612773895, -0.004349273629486561, -0.03820320591330528, -0.00786018930375576, -0.06280740350484848, 0.009597119875252247, -0.05002359673380852, -0.07340499758720398, -0.08529949933290482, 0.010912555269896984, -0.011950081214308739, -0.04016709700226784, 0.0059981998056173325, 0.007438694126904011, -0.03733242675662041, -0.020268820226192474, -0.006688340101391077, 0.010995927266776562, 0.01785101369023323, -0.054507192224264145, 0.05461835861206055, -0.0072487895376980305, -0.005604495760053396, -0.014580952003598213, -0.02895810455083847, -0.03238564729690552, 0.0026239228900521994, 0.0336269736289978, 0.005423855036497116, -0.04327967390418053, -0.0387960784137249, -0.009661965072154999, -0.010643909685313702, 0.011764808557927608, -0.015794487670063972, 0.042205095291137695, 0.07510950416326523, 0.03540559113025665, 0.026234596967697144, -0.014117770828306675, -0.01379354391247034, 0.023807527497410774, 0.003332590451464057, -0.11449845880270004, -0.009411847218871117, 0.03073672205209732, -0.008369688875973225, -0.041130512952804565, 0.007827766239643097, 0.006679076701402664, 0.04983832314610481, 0.027957633137702942, 0.0030894202645868063, -0.04691101610660553, 0.0037702969275414944, 0.006679076701402664, -0.03975949436426163, -0.007999143563210964, -0.06603115051984787, 0.015470260754227638, -0.0061603132635355, -0.045651163905858994, 0.04138989374041557, 0.013450789265334606, -0.0042821126990020275, -0.05761977285146713, 0.03766591474413872, 0.009319210425019264, 0.03496093675494194, 0.03416426479816437, -0.011987135745584965, -0.0011446371208876371, 0.044576581567525864, -0.07462779432535172, 0.032626502215862274, -0.013126562349498272, 0.03140370175242424, 0.003765665227547288, -0.06314089894294739, -0.02119518257677555, -0.037980880588293076, 0.010597591288387775, -0.02154720202088356, -0.018434621393680573, -0.034108683466911316, -0.02432628907263279, 0.0028971999417990446, -0.06747627258300781, 0.014228934422135353, -0.0246783085167408, -0.04194571077823639, 0.04687396436929703, -0.04442836344242096, 0.042205095291137695, 0.0024085436016321182, 0.02578994259238243, -0.0918952003121376, -0.024215126410126686, 0.05721217393875122, 0.004129262641072273, -0.039351895451545715, 0.016554106026887894, 0.030977575108408928, -0.005145946051925421, 0.04805970937013626, -0.10664289444684982, 0.062214531004428864, 0.0029852045699954033, 0.0028091955464333296, 0.09115411341190338, -0.013172880746424198, 0.0070403581485152245, -0.12768986821174622, -0.011950081214308739, -0.012950553558766842, 0.0033626973163336515, 0.042501531541347504, -0.004877300467342138, 0.01859210431575775, -0.014701379463076591, 0.0029759409371763468, -0.0004956041811965406, 0.022695891559123993, 0.006850453559309244, -0.00973607413470745, -0.0038999877870082855, -0.02365930937230587, -0.00035230739740654826, 0.043909601867198944, 0.019175712019205093, 0.011579535901546478, 0.04350200295448303, -0.0013524898095056415, 0.007610071450471878, -0.007832398638129234, 0.035794664174318314, -0.047503888607025146, 0.009587856009602547, 0.005822191014885902, -0.007767552975565195, 0.023084962740540504, -0.04398370906710625, 0.023084962740540504, 0.0014057557564228773, -0.004724450875073671, 0.005544282030314207, -0.07381259649991989, -0.010319682769477367, 0.02191774547100067, -0.03572055324912071, -0.03244122862815857, -0.03105168417096138, 0.05339555814862251, 0.00652622664347291, 0.0029342544730752707, 0.0022429560776799917, 0.07107055932283401, -0.02503032609820366, -0.031644556671381, 0.03503504395484924, 0.00029875204199925065, -0.02862461470067501, 0.026753360405564308, -0.11457256227731705, 0.0211581289768219, -0.0027188751846551895, 0.06406725943088531, 0.07351616024971008, -0.008013038896024227, 0.010662437416613102, 0.04868963360786438, 0.0812235027551651, -0.0006131364498287439, 0.021973328664898872, 0.012894971296191216, -0.005474804900586605, 0.028717249631881714, 0.006266844924539328, -0.027624141424894333, -0.032978519797325134, -0.034812718629837036, 0.012635589577257633, -0.026642197743058205, -0.05317322909832001, -0.024233654141426086, -0.017804695293307304, -0.0036128154024481773, 0.03307115659117699, -0.02436334453523159, -0.03559086099267006, 0.045317672193050385 ]
363
funcsigs
_void
A private marker - used in Parameter & Signature
class _void(object): '''A private marker - used in Parameter & Signature'''
()
[ -0.03135751187801361, -0.02140055038034916, -0.01461564190685749, 0.02534184604883194, -0.039620403200387955, -0.06340647488832474, -0.016231918707489967, 0.04079587757587433, 0.02025964856147766, -0.02625802531838417, -0.025549283251166344, -0.017511112615466118, 0.007178173400461674, -0.019671911373734474, -0.09044238924980164, 0.028349678963422775, -0.019084174185991287, 0.03438263013958931, -0.036716289818286896, -0.0009691182058304548, -0.017874127253890038, 0.038479503244161606, 0.03619769960641861, 0.01512559037655592, -0.026880335062742233, 0.04463345557451248, 0.03227368742227554, -0.055212728679180145, 0.03996613249182701, -0.036301419138908386, -0.05929231643676758, -0.016940660774707794, -0.012186904437839985, 0.05476327985525131, 0.031029069796204567, 0.016292421147227287, -0.021486982703208923, 0.07063218951225281, -0.035437099635601044, 0.01885945163667202, -0.029421433806419373, 0.026448175311088562, -0.006387320812791586, -0.04985394701361656, 0.04045015200972557, 0.017269102856516838, 0.030182035639882088, 0.045324914157390594, -0.049508217722177505, -0.023267479613423347, 0.02236858755350113, 0.03521237522363663, -0.026448175311088562, -0.05503986403346062, -0.014364989474415779, 0.026171592995524406, 0.09445282816886902, 0.013837754726409912, -0.05026882141828537, 0.03370846062898636, 0.00024308984575327486, 0.07813447713851929, 0.01599855348467827, -0.020570803433656693, 0.054728709161281586, 0.028574401512742043, -0.02679390273988247, 0.010492837987840176, 0.0076838000677526, 0.06299160420894623, -0.00963716208934784, 0.005825513042509556, -0.02741621434688568, 0.04352713003754616, 0.027312494814395905, -0.04200592637062073, -0.061574120074510574, -0.017312318086624146, -0.012982078827917576, -0.03509137034416199, 0.0036603929474949837, -0.017355535179376602, 0.0034961721394211054, 0.021867282688617706, -0.013077153824269772, 0.010631129145622253, -0.011884392239153385, -0.04335426539182663, -0.04888590797781944, 0.08975093066692352, -0.04608551412820816, 0.014053834602236748, -0.032774996012449265, -0.007165208458900452, 0.03153037279844284, -0.0029300430323928595, 0.022161150351166725, -0.041141606867313385, -0.03484936058521271, -0.039931558072566986, 0.02012135647237301, -0.023682354018092155, 0.017856840044260025, -0.040588442236185074, 0.020760953426361084, -0.05697593837976456, 0.021365977823734283, -0.008937063626945019, -0.012947505339980125, 0.05268891528248787, 0.025739433243870735, -0.021798137575387955, -0.09044238924980164, -0.004900691565126181, -0.0026016016490757465, 0.011305298656225204, -0.045082904398441315, -0.030787060037255287, -0.023665066808462143, 0.013595744967460632, 0.0233366247266531, -0.013898257166147232, -0.07204966992139816, -0.024287376552820206, 0.008980278857052326, 0.0010317813139408827, -0.004779686685651541, 0.08034713566303253, 0.015350313857197762, 0.009161786176264286, -0.03407147526741028, 0.030424045398831367, -0.028574401512742043, 0.019810201600193977, 0.0029473293107002974, -0.010994143784046173, 0.05929231643676758, 0.009326007217168808, -0.021296830847859383, -0.006447823252528906, 0.011054646223783493, -0.02777922712266445, 0.002780947834253311, 0.006439180113375187, 0.021815422922372818, -0.017148097977042198, 0.018773019313812256, -0.0481598824262619, -0.012532631866633892, 0.030942637473344803, -0.007147922180593014, -0.003398936241865158, -0.006184205878525972, 0.03609398007392883, -0.016776440665125847, 0.025549283251166344, 0.06129753589630127, -0.06285331398248672, -0.003919688984751701, -0.025808580219745636, 0.010942284017801285, -0.06575742363929749, -0.006728726904839277, -0.033086150884628296, 0.043146826326847076, 0.016205990687012672, 0.013898257166147232, 0.019447188824415207, 0.017061665654182434, -0.015747901052236557, -0.06776264309883118, -0.0035912473686039448, -0.03448634594678879, 0.04141818732023239, 0.06240386515855789, 0.07536865770816803, -0.0008848470752127469, 0.03529880568385124, 0.017243172973394394, -0.01825442723929882, 0.044356875121593475, -0.03761518374085426, -0.04760671779513359, 0.02698405459523201, 0.06368305534124374, 0.014226698316633701, 0.024719536304473877, 0.033501021564006805, -0.008504903875291348, -0.014684787951409817, 0.016275135800242424, -0.0430431105196476, 0.00466732494533062, 0.0055575743317604065, 0.024304663762450218, -0.031150072813034058, -0.010302687995135784, 0.024650391191244125, 0.030666055157780647, -0.03481478989124298, 0.025929583236575127, -0.009861885569989681, 0.0035393883008509874, -0.03547167032957077, 0.03547167032957077, 0.04764128848910332, 0.02285260707139969, 0.002683711936697364, -0.07287941873073578, -0.021365977823734283, 0.00812460295855999, -0.024719536304473877, -0.0032757706940174103, 0.04819445312023163, 0.005674257408827543, -0.08145346492528915, 0.0095161572098732, 0.002316376194357872, -0.015229308977723122, 0.05082198604941368, 0.10634586960077286, -0.02437380887567997, -0.0031590876169502735, -0.024892400950193405, 0.03203167766332626, 0.03595568984746933, 0.052723485976457596, -0.001981452340260148, 0.02357863448560238, -0.06489310413599014, -0.01643071323633194, -0.042109645903110504, -0.04518662020564079, 0.005682900547981262, 0.025255415588617325, -0.06561913341283798, 0.009109927341341972, -0.036301419138908386, -0.03267127647995949, -0.03370846062898636, 0.029006561264395714, 0.004014763981103897, 0.039067238569259644, 0.05548930913209915, -0.02722606249153614, 0.010778063908219337, -0.05372609943151474, 0.09908558428287506, 0.029974598437547684, 0.0007249479531310499, -0.008271537721157074, -0.04376913607120514, -0.06731320172548294, -0.01728639006614685, 0.024840541183948517, -0.007908523082733154, -0.005523001309484243, 0.008357969112694263, 0.010613842867314816, 0.032169971615076065, 0.021331405267119408, 0.00016557119670324028, -0.005523001309484243, 0.038410358130931854, 0.0786876454949379, 0.01449463702738285, 0.018358144909143448, -0.04086502268910408, -0.0021370297763496637, 0.025549283251166344, 0.13794538378715515, -0.023665066808462143, -0.01461564190685749, -0.0028306462336331606, -0.05479785427451134, 0.01678508333861828, -0.00525938393548131, 0.0271050576120615, 0.00845736637711525, -0.012636350467801094, 0.10883510857820511, -0.008837666362524033, 0.006629330106079578, -0.00939515233039856, -0.02231672778725624, -0.012532631866633892, 0.01583433337509632, 0.07087419927120209, -0.005488428752869368, -0.007735659368336201, 0.010536054149270058, 0.04864389821887016, 0.03796090930700302, 0.009075354784727097, 0.09638890624046326, 0.05479785427451134, -0.05355323478579521, 0.024823255836963654, 0.03388132154941559, -0.03025118075311184, -0.009965603239834309, 0.022939039394259453, -0.023198334500193596, -0.023613207042217255, 0.01421805564314127, 0.02923128381371498, 0.057874832302331924, -0.0015374082140624523, 0.011867105960845947, 0.018392717465758324, 0.04542862996459007, 0.02928314357995987, -0.039620403200387955, -0.025929583236575127, 0.057874832302331924, -0.005224811378866434, 0.042593661695718765, -0.05189374089241028, -0.025497423484921455, 0.07813447713851929, -0.01806427724659443, -0.09880900382995605, 0.05372609943151474, -0.053449515253305435, 0.054002679884433746, -0.028954701498150826, -0.02176356501877308, 0.00281984219327569, 0.01385504100471735, 0.024097226560115814, -0.015281167812645435, -0.02928314357995987, 0.004373456351459026, -0.005648327525705099, -0.020812813192605972, -0.017130812630057335, -0.025445565581321716, 0.01121886633336544, -0.00780480494722724, -0.01467614434659481, 0.02024236135184765, -0.03595568984746933, -0.03213539719581604, 0.011262082494795322, -0.005842799786478281, 0.044045720249414444, -0.04874761775135994, -0.004176823887974024, 0.11049459874629974, 0.017148097977042198, 0.0351778008043766, 0.014330416917800903, 0.004395064432173967, 0.02923128381371498, 0.09998447448015213, -0.026102447882294655, 0.04110703244805336, 0.01006932184100151, 0.0038678296841681004, -0.05189374089241028, 0.09030409902334213, -0.01794327236711979, -0.016266493126749992, -0.007454755250364542, 0.0430431105196476, -0.006404607091099024, -0.02250687964260578, -0.01315494254231453, -0.013120369054377079, 0.018634727224707603, -0.006378677673637867, -0.09141042828559875, -0.03982784226536751, -0.05531644448637962, 0.015056445263326168, -0.00025672989431768656, 0.039378393441438675, 0.007026917301118374, -0.03360474109649658, -0.029490580782294273, -0.020086783915758133, -0.01866929978132248, 0.012774641625583172, -0.025376420468091965, -0.025151696056127548, 0.011797960847616196, -0.008608621545135975, 0.045739784836769104, -0.007571438327431679, 0.08007055521011353, 0.04141818732023239, -0.024650391191244125, -0.02746807225048542, -0.0466732494533062, 0.015575036406517029, 0.015540463849902153, 0.01801241748034954, -0.003169891657307744, -0.007493649609386921, 0.011305298656225204, 0.029317716136574745, -0.0023790393024683, -0.08691596239805222, 0.010345904156565666, 0.01994849368929863, 0.002337984275072813, -0.00469757616519928, -0.04518662020564079, -0.003703608876094222, -0.028574401512742043, 0.017148097977042198, -0.03972412273287773, -0.038894377648830414, -0.04632752388715744, 0.11139349639415741, 0.027364354580640793, 0.012696852907538414, 0.03488393500447273, 0.03522966057062149, -0.029144853353500366, -0.001631402992643416, -0.02983630821108818, 0.03467649593949318, 0.09880900382995605, -0.05573131889104843, 0.014892224222421646, -0.023250194266438484, -0.012264693155884743, 0.04072673246264458, -0.03633598983287811, 0.009784095920622349, 0.0007876111194491386, -0.020968390628695488, -0.04280110076069832, -0.02231672778725624, -0.026033302769064903, -0.005777975544333458, -0.07059761136770248, 0.04397657513618469, 0.09528257697820663, -0.022178437560796738, 0.05953432619571686, -0.005216167774051428, -0.010043391957879066, 0.06824666261672974, -0.022472307085990906, -0.02693219482898712, 0.06077894568443298, 0.07806533575057983, -0.03643970936536789, -0.0032606450840830803, 0.05863543227314949, 0.042593661695718765, -0.07827276736497879, -0.000952372036408633, -0.09652719646692276, -0.12515345215797424, -0.07094334065914154, -0.009421082213521004, -0.04466802999377251, -0.002225622534751892, 0.019671911373734474, -0.07460805773735046, -0.03488393500447273, -0.0228007473051548, 0.046776968985795975, 0.01970648393034935, -0.02565300092101097, -0.04051929712295532, -0.021435122936964035, -0.014641571789979935, -0.06769350171089172, -0.019810201600193977, -0.0027852694038301706, 0.010752134025096893, 0.03184152767062187, -0.014140266925096512, -0.000823264301288873, -0.050960276275873184, -0.009213645942509174, -0.0049698371440172195, 0.00797334685921669, -0.011391730979084969, 0.05725252255797386, -0.03415790572762489, 0.017174027860164642, 0.02159070037305355, 0.0013429364189505577, -0.0030467261094599962, -0.0019187892321497202, -0.04736470803618431, -0.024512100964784622, 0.009421082213521004, -0.05376067012548447, 0.011893035843968391, 0.03244655206799507, -0.021936427801847458, 0.04791787266731262, -0.053691525012254715, -0.05147886648774147, -0.039620403200387955, -0.04207507148385048, -0.0055143581703305244, -0.0050389827229082584, 0.06423622369766235, -0.043319690972566605, 0.0007119831861928105, -0.011962181888520718, -0.048782192170619965, 0.016344280913472176, -0.03170323744416237, 0.027191489934921265, 0.05106399580836296, 0.02019050344824791, 0.025203555822372437, -0.002817681524902582, -0.05538559332489967, -0.03965497761964798, -0.02164256013929844, 0.016335638239979744, 0.032048966735601425, -0.014658858068287373, 0.03377760574221611, -0.02285260707139969, 0.03661257401108742, -0.02304275706410408, -0.04155648127198219, 0.007528222631663084, 0.033138006925582886, -0.012601777911186218, -0.021780850365757942, -0.024633103981614113, -0.02589501067996025, -0.044287730008363724, -0.002528134500607848, 0.0431814007461071, 0.0008162417216226459, -0.011288012377917767, 0.012454843148589134, -0.008491938933730125, 0.0030121533200144768, -0.004961193539202213, -0.04542862996459007, -0.002599440747871995, 0.0009577739983797073, 0.04179849103093147, -0.06655260175466537, -0.038479503244161606, -0.015229308977723122, -0.00510812783613801, -0.006413250230252743, -0.008669123984873295, 0.021625272929668427, -0.01403654832392931, 0.01637021079659462, 0.008876561187207699, 0.061401255428791046, 0.021296830847859383, 0.016871515661478043, 0.029922740533947945, -0.0008988922345452011, 0.03778804838657379, -0.03723488375544548, -0.06340647488832474, -0.0739857479929924, 0.008042492903769016, 0.016154130920767784, -0.013500669971108437, 0.016569003462791443, -0.014200768433511257, 0.002698837546631694, -0.015929408371448517, 0.03996613249182701, 0.02001763880252838, -0.018323572352528572, 0.05901573225855827, 0.04408029466867447, 0.03177238255739212, -0.046846114099025726, -0.06544627249240875, -0.0060329497791826725, 0.02207471989095211, -0.02261059731245041, -0.007675156928598881, -0.045082904398441315, -0.015229308977723122, -0.003757628845050931, -0.005747724324464798, -0.0030877813696861267, -0.008102995343506336, -0.005518679972738028, 0.019879348576068878, 0.00010290803766110912, -0.05455584451556206, -0.0519283153116703, 0.011227509938180447, 0.012800571508705616, -0.005920588504523039, -0.000312505493639037, -0.012662280350923538, 0.005834156181663275, 0.024944260716438293, -0.007398574613034725, 0.04418401047587395, 0.02758907712996006, 0.03134022280573845, -0.03796090930700302, 0.04027728736400604, -0.01367353368550539, 0.029092993587255478, 0.005237775854766369, -0.022057432681322098, 0.01668136566877365, -0.056180763989686966, -0.01994849368929863, 0.028764551505446434, 0.01891130954027176, 0.05220489576458931, -0.017787694931030273, 0.05109856650233269, -0.06250758469104767, 0.030061030760407448, -0.002858736552298069, 0.00994831696152687, -0.018271714448928833, -0.04179849103093147, 0.0006082648178562522, -0.007640583906322718, 0.04643124341964722, -0.03286142647266388, -0.06603400409221649, 0.012394340708851814, -0.007467720191925764, -0.017148097977042198, 0.026292597874999046, -0.01500458549708128, -0.03051047772169113, 0.004263255745172501, -0.012178260833024979, 0.027485359460115433, 0.034659210592508316, 0.008664802648127079, -0.01662086322903633, 0.03452092036604881, -0.016707295551896095, 0.009153143502771854, -0.026603752747178078, 0.011772030964493752, 0.043803710490465164, -0.07723558694124222, -0.027122344821691513, 0.11077118664979935, 0.01273142546415329, -0.0009475102415308356, -0.01070027519017458, -0.005086520221084356, -0.015721971169114113, 0.02183271013200283, 0.001982532674446702, -0.0072732483968138695, -0.02867811918258667, -0.042109645903110504, -0.02098567597568035, -0.010838566347956657, 0.02048437111079693, 0.036543428897857666, -0.007925809361040592, -0.038825228810310364, -0.018773019313812256, -0.022213010117411613, 0.012774641625583172, 0.07211881875991821, 0.057874832302331924, 0.02006949856877327, -0.013327806256711483, -0.07599096745252609, -0.010665702633559704, -0.022022860124707222, -0.014131623320281506, 0.0333627313375473, -0.030890777707099915, -0.005086520221084356, -0.018340859562158585, -0.08698511123657227, -0.04287024587392807, 0.0454632043838501, -0.022645169869065285, -0.02195371501147747, 0.0049871234223246574, -0.05790940299630165, 0.0005666694487445056, -0.06178155541419983, 0.009844598360359669, 0.037995483726263046, -0.026102447882294655, 0.02618888020515442, -0.019412614405155182, -0.040899597108364105, 0.05503986403346062, -0.006218778435140848, -0.006689832545816898, -0.014883581548929214, -0.02050165832042694, 0.06852325052022934, -0.01581704616546631, 0.047330133616924286, 0.0000018864785715777543, -0.06593029201030731, 0.05597332864999771, -0.040830451995134354, 0.012368411757051945, 0.003945618402212858, 0.0031958213075995445, -0.027208777144551277, 0.0002556495019234717, -0.0579785481095314, 0.0018031864892691374, 0.021538840606808662, 0.05573131889104843, 0.009931030683219433, 0.009144499897956848, -0.013811824843287468, -0.013759966008365154, -0.0017005485715344548, -0.009939674288034439, 0.023129189386963844, -0.050718266516923904, 0.004580893088132143, 0.016646793112158775, 0.017053022980690002, 0.036163125187158585, 0.00851786881685257, -0.04345798119902611, 0.018963169306516647, 0.003658232046291232, -0.03796090930700302, 0.008617265149950981, -0.00032357958843931556, -0.0037684328854084015, 0.039758697152137756, -0.013068510219454765, -0.014027904719114304, 0.04608551412820816, -0.05013052746653557, 0.021210400387644768, 0.02928314357995987, 0.012411627918481827, 0.032048966735601425, 0.0301993228495121, 0.032965146005153656, 0.009732237085700035, 0.02964615821838379, 0.00017542984278406948, -0.029784448444843292, 0.04688068851828575, -0.01898045465350151, -0.009732237085700035, 0.0811077356338501, -0.01934346929192543, -0.010717561468482018, -0.07523036748170853, -0.013120369054377079, 0.020225076004862785, 0.014572426676750183, 0.045739784836769104, 0.07765045762062073, -0.010406406596302986, 0.047814153134822845 ]
364
funcsigs
formatannotation
null
def formatannotation(annotation, base_module=None): if isinstance(annotation, type): if annotation.__module__ in ('builtins', '__builtin__', base_module): return annotation.__name__ return annotation.__module__+'.'+annotation.__name__ return repr(annotation)
(annotation, base_module=None)
[ 0.006759339477866888, 0.017083950340747833, 0.041678279638290405, 0.05221007019281387, 0.017230704426765442, -0.08356373757123947, 0.020338447764515877, 0.005917659495025873, -0.032855741679668427, -0.010540425777435303, 0.013328761793673038, -0.022272152826189995, -0.04202358424663544, -0.002330806804820895, -0.016471033915877342, -0.027365397661924362, 0.05635372921824455, -0.013328761793673038, 0.003084002761170268, -0.009970673359930515, -0.008222567848861217, 0.05569764971733093, -0.025569813326001167, -0.0843924731016159, 0.011464116163551807, 0.035911690443754196, 0.010402304120361805, -0.014312880113720894, -0.01180942077189684, -0.053591288626194, -0.01258635614067316, -0.131975457072258, 0.04640895128250122, 0.01176625769585371, -0.00033694185549393296, -0.006060097366571426, -0.03432328626513481, 0.052658967673778534, -0.062362030148506165, -0.04053877294063568, 0.035238344222307205, 0.022945497184991837, -0.061602357774972916, -0.03333916887640953, 0.020787343382835388, 0.015124346129596233, 0.022910967469215393, 0.016704116016626358, -0.049274981021881104, 0.048204537481069565, -0.0007521167863160372, -0.0518302358686924, -0.02037297748029232, -0.010747608728706837, -0.0651935264468193, 0.027607111260294914, 0.04544210061430931, 0.0022121083457022905, -0.00010318675776943564, 0.03608434274792671, -0.011395054869353771, 0.028142333030700684, 0.019544245675206184, -0.036326054483652115, 0.014528695493936539, -0.00700105307623744, -0.05065619945526123, 0.0011103703873232007, -0.015935812145471573, -0.014675449579954147, -0.01785225421190262, -0.004050855990499258, 0.018991759046912193, 0.01012606080621481, 0.003936473745852709, -0.011403688229620457, -0.029281839728355408, -0.017532845959067345, 0.031301870942115784, -0.01850833185017109, 0.03857053443789482, -0.019803224131464958, -0.03680948168039322, 0.0012474132236093283, 0.0839090421795845, -0.06933718174695969, -0.10089803487062454, -0.027296336367726326, -0.0013143160613253713, -0.030991097912192345, -0.03843241557478905, -0.015167509205639362, 0.05155399441719055, 0.06032473221421242, -0.09129856526851654, -0.01220652088522911, -0.002233689883723855, -0.033943451941013336, 0.028953799977898598, 0.008455649018287659, 0.04267966002225876, -0.03908849135041237, -0.04872249439358711, 0.046892378479242325, 0.002803442534059286, 0.029817061498761177, -0.01100658718496561, 0.04033159092068672, -0.00705284858122468, 0.01926800236105919, -0.016177525743842125, -0.025345364585518837, -0.002969620516523719, -0.04506226256489754, 0.05970318242907524, -0.04147109389305115, -0.006016934290528297, 0.008157823234796524, 0.04126391187310219, 0.013061150908470154, 0.018352944403886795, 0.04464789852499962, -0.009150574915111065, -0.0005956506356596947, 0.02570793591439724, -0.01840474084019661, -0.004432849120348692, 0.036118872463703156, 0.00016267088358290493, -0.10338422656059265, 0.0020070835016667843, 0.01893996261060238, -0.09192011505365372, -0.006435616407543421, 0.06122252345085144, 0.02222035825252533, -0.03946832939982414, -0.004402635153383017, -0.040918607264757156, 0.020890934392809868, -0.014787673950195312, -0.028280455619096756, 0.005196835845708847, -0.02876388281583786, -0.035238344222307205, 0.024223124608397484, 0.0006533812265843153, 0.035031162202358246, 0.00798085518181324, -0.07006232440471649, 0.0011643243487924337, -0.02408500388264656, 0.019216207787394524, -0.04323215037584305, 0.013475515879690647, 0.013596372678875923, -0.020459303632378578, 0.005671629682183266, 0.007937692105770111, -0.01873278059065342, 0.04126391187310219, -0.020459303632378578, -0.01706668548285961, -0.04851531237363815, 0.04154015704989433, -0.01635017804801464, 0.07272116839885712, 0.008563556708395481, -0.004579603672027588, -0.026070505380630493, -0.008015385828912258, -0.06232750043272972, 0.023031823337078094, 0.03787992522120476, 0.028038742020726204, 0.0738261491060257, -0.03712025657296181, 0.10400577634572983, 0.000022778645870857872, 0.0834256187081337, 0.05904710292816162, 0.028470372781157494, -0.0036753369495272636, 0.01831841468811035, -0.01649693213403225, -0.031543586403131485, 0.03580809757113457, -0.020407507196068764, 0.01651419699192047, 0.007959273643791676, 0.014062534086406231, 0.030904771760106087, -0.0204765684902668, 0.013829453848302364, -0.021754195913672447, -0.04053877294063568, -0.02373969927430153, -0.036222465336322784, 0.010445467196404934, 0.005170938093215227, -0.012836702167987823, 0.07033856958150864, -0.043750107288360596, 0.07375708222389221, 0.03344276174902916, 0.035238344222307205, 0.04492414370179176, -0.002753805136308074, -0.0596686527132988, -0.04454430565237999, 0.04392275959253311, -0.026864705607295036, 0.004044381435960531, -0.017532845959067345, -0.0004634636570699513, 0.004510542843490839, 0.013147477060556412, 0.03406430780887604, -0.018352944403886795, 0.05283161997795105, -0.02384329028427601, 0.004691827576607466, 0.034478675574064255, -0.019993143156170845, 0.008490179665386677, 0.014563226141035557, 0.06460651010274887, -0.000899950391612947, 0.03836335241794586, -0.03449593856930733, 0.02995518408715725, -0.06067003682255745, -0.003084002761170268, 0.03321831300854683, 0.014312880113720894, 0.028021477162837982, -0.00879232119768858, -0.04008987545967102, 0.02973073534667492, -0.02593238279223442, 0.0033624046482145786, 0.02266925387084484, 0.006547840312123299, 0.00127331109251827, -0.020459303632378578, -0.04323215037584305, -0.025984179228544235, -0.004877428989857435, 0.0071089607663452625, -0.008770739659667015, -0.02449936978518963, 0.03812164068222046, -0.013035252690315247, -0.015314263291656971, -0.016471033915877342, -0.00722118467092514, -0.033511821180582047, -0.00253367330878973, 0.026001444086432457, 0.036774951964616776, -0.045027732849121094, -0.015426487661898136, -0.013043885119259357, 0.004670246038585901, 0.04060783237218857, -0.03563544526696205, 0.0006598557229153812, -0.014502797275781631, 0.022185826674103737, -0.04205811396241188, -0.0030559466686099768, 0.01786951906979084, 0.017222072929143906, 0.029057390987873077, -0.0044457982294261456, -0.039606448262929916, -0.0033926188480108976, 0.04116032272577286, 0.029350899159908295, -0.03308019042015076, 0.046132709830999374, -0.05307333171367645, -0.0024128167424350977, 0.0363951176404953, 0.017532845959067345, 0.009003819897770882, 0.026968296617269516, -0.04267966002225876, 0.00471340911462903, 0.02962714433670044, 0.04533850774168968, -0.005909026600420475, -0.007605336140841246, 0.049931060522794724, -0.04779016971588135, 0.023774228990077972, 0.060497384518384933, -0.024551164358854294, 0.0051407236605882645, -0.038950372487306595, 0.04747939854860306, 0.06022113934159279, 0.04105672985315323, -0.004437165334820747, -0.038294292986392975, -0.009962040930986404, -0.012189256027340889, -0.04022799804806709, -0.052002888172864914, 0.0025077753234654665, 0.026933766901493073, 0.015909913927316666, -0.032182399183511734, 0.021305300295352936, 0.004756572190672159, 0.031422726809978485, -0.0038609381299465895, -0.0077348253689706326, -0.0013089206768199801, 0.052555374801158905, -0.005805435590445995, 0.008049915544688702, 0.009133309125900269, -0.03342549502849579, 0.03984816372394562, -0.024792877957224846, -0.04412994161248207, 0.037534620612859726, -0.019475186243653297, 0.002822865964844823, -0.03756915032863617, -0.014882632531225681, 0.008326159790158272, 0.0016747277695685625, -0.032614029943943024, 0.04913685843348503, -0.0014524379512295127, -0.05714792758226395, -0.07368802279233932, -0.013328761793673038, -0.00985844898968935, 0.0381561703979969, -0.025880588218569756, 0.07969632744789124, -0.0738261491060257, 0.06322529166936874, -0.01916441135108471, 0.018007639795541763, 0.021736931055784225, -0.062258437275886536, -0.03777633607387543, 0.004868796560913324, -0.021443422883749008, -0.008317527361214161, -0.02886747382581234, -0.00466161360964179, 0.008088762871921062, -0.009280064143240452, -0.03604981303215027, 0.03421969711780548, 0.0455111600458622, 0.0031724870204925537, 0.060842689126729965, 0.006547840312123299, 0.0012517295544967055, 0.04530397802591324, 0.002509933663532138, 0.005188203416764736, 0.08232064545154572, -0.02581152692437172, -0.03618793189525604, 0.006828400772064924, 0.030559467151761055, -0.02189231850206852, -0.08453059196472168, 0.04792829230427742, 0.027797028422355652, -0.02886747382581234, -0.061049871146678925, -0.03667135909199715, 0.014235186390578747, 0.03510022163391113, 0.014226553961634636, 0.008809586055576801, -0.019233472645282745, -0.012336011044681072, -0.0013261858839541674, -0.04499320313334465, -0.03520381450653076, 0.04361198469996452, 0.002730065258219838, -0.012491397559642792, -0.007100327871739864, 0.007816835306584835, -0.04226529598236084, -0.04696144163608551, -0.04651254415512085, -0.024361247196793556, -0.02482740767300129, -0.007367939222604036, 0.035134755074977875, -0.034461408853530884, 0.046478014439344406, -0.04468242824077606, 0.03309745714068413, 0.01357047539204359, 0.02776249870657921, -0.005019867327064276, -0.016048036515712738, 0.006284545641392469, -0.0008082288550212979, 0.001401721267029643, -0.07437863200902939, -0.020010408014059067, 0.10186488926410675, 0.009875714778900146, -0.014407838694751263, -0.028953799977898598, 0.0001161356849479489, -0.03292480483651161, -0.010471365414559841, 0.03149178996682167, 0.008882963098585606, 0.04219623655080795, -0.059979427605867386, 0.016522830352187157, -0.054627206176519394, 0.01940612494945526, 0.03527287393808365, 0.05421283841133118, -0.05928881838917732, 0.0197168979793787, -0.0019801065791398287, 0.006534891668707132, 0.008602403104305267, -0.05894351378083229, 0.033943451941013336, 0.024430308490991592, 0.02954081818461418, -0.035117488354444504, 0.05479985848069191, 0.03570450842380524, 0.019250737503170967, 0.001236622454598546, -0.025966914370656013, 0.036118872463703156, -0.05410924553871155, 0.056699033826589584, -0.03266582638025284, -0.023049088194966316, -0.013328761793673038, 0.0014912846963852644, 0.030576732009649277, 0.02593238279223442, 0.04937857389450073, -0.10027648508548737, 0.025794262066483498, -0.035031162202358246, 0.032752152532339096, 0.038708657026290894, -0.07196149975061417, 0.0444752462208271, 0.02855669893324375, 0.03594622015953064, 0.05849461629986763, -0.056146543473005295, 0.09468255192041397, -0.0019304690649732947, -0.035669974982738495, 0.007894529029726982, 0.11001408100128174, 0.00406812084838748, 0.0006242461386136711, 0.043197616934776306, -0.009720327332615852, 0.0803869366645813, 0.011852583847939968, 0.04620176926255226, -0.020977260544896126, 0.0470305010676384, 0.001542001380585134, -0.03040407970547676, -0.05221007019281387, 0.02964440919458866, 0.006262964103370905, 0.03874318674206734, -0.009461348876357079, 0.00941818580031395, -0.02581152692437172, -0.009711694903671741, -0.012672682292759418, 0.08625711500644684, -0.009228268638253212, 0.010713078081607819, 0.06557336449623108, 0.0010251232888549566, 0.03649870678782463, 0.013095680624246597, -0.03413337096571922, 0.027175480499863625, 0.013035252690315247, -0.043094027787446976, -0.015858119353652, -0.03050767071545124, 0.05272802710533142, -0.025207243859767914, 0.03157811611890793, 0.027468988671898842, -0.006642799358814955, 0.03701666370034218, 0.01138642244040966, 0.026105035096406937, 0.004726358223706484, 0.0005392688326537609, -0.017265236005187035, -0.05410924553871155, 0.004622766748070717, -0.0040292744524776936, 0.033719003200531006, 0.04419900104403496, -0.027589846402406693, -0.014684082940220833, -0.04578740522265434, -0.010471365414559841, 0.020407507196068764, -0.0042623551562428474, 0.03667135909199715, 0.06881922483444214, -0.09026265144348145, 0.04720315337181091, 0.004670246038585901, 0.05732057988643646, 0.04129844158887863, 0.016626421362161636, -0.011161974631249905, 0.08080130070447922, -0.08232064545154572, -0.012318745255470276, 0.04454430565237999, 0.013596372678875923, 0.017731396481394768, -0.02341165952384472, 0.004165238235145807, -0.03370174020528793, 0.04616723954677582, 0.013976207934319973, -0.027538049966096878, -0.02365337312221527, 0.039261143654584885, 0.02190958335995674, 0.0381561703979969, 0.018888168036937714, -0.05987583473324776, 0.06187860295176506, -0.03684401139616966, 0.029661674052476883, -0.009711694903671741, -0.0028681871481239796, 0.009685796685516834, 0.018370211124420166, -0.04930951073765755, 0.02985159121453762, 0.05390206351876259, 0.014994856901466846, -0.00937502272427082, 0.018111232668161392, -0.03342549502849579, 0.04171280935406685, -0.03245864063501358, 0.021616075187921524, -0.010445467196404934, -0.05828743427991867, 0.02190958335995674, -0.027745233848690987, -0.035566385835409164, 0.09295602887868881, 0.031854357570409775, 0.03860506787896156, 0.009228268638253212, 0.05293521285057068, -0.00210527959279716, -0.015124346129596233, 0.021944114938378334, -0.03901943191885948, -0.01095479167997837, 0.008118976838886738, -0.02909192070364952, -0.04008987545967102, 0.04261060059070587, -0.04865343123674393, -0.07603609561920166, -0.004480328410863876, 0.08121566474437714, -0.004450114443898201, 0.021719666197896004, -0.0005697527667507529, -0.0005897156661376357, -0.01649693213403225, 0.02484467439353466, -0.022807376459240913, 0.048308126628398895, -0.004275303799659014, 0.005464447196573019, 0.005658681038767099, 0.06046285480260849, 0.02638128027319908, 0.020424773916602135, -0.029920652508735657, -0.008908861316740513, 0.0333564355969429, -0.04785923287272453, 0.06636756658554077, -0.035773567855358124, -0.017834987491369247, -0.02605324052274227, 0.005978087894618511, 0.015219304710626602, 0.0033278740011155605, 0.003904101438820362, -0.017800457775592804, 0.03156084939837456, 0.0662294402718544, -0.020424773916602135, -0.040780484676361084, 0.01754147931933403, 0.04485508054494858, -0.00937502272427082, -0.05607748404145241, 0.029817061498761177, -0.05649184808135033, -0.008593770675361156, 0.002417132956907153, -0.005680262576788664, -0.09944775700569153, -0.018111232668161392, -0.04630536213517189, -0.007350673899054527, -0.034478675574064255, -0.06022113934159279, 0.007596703711897135, -0.004454430658370256, -0.07866041362285614, -0.043094027787446976, -0.009513144381344318, 0.012715845368802547, -0.020614691078662872, -0.007333408575505018, -0.01563367061316967, 0.007454265374690294, -0.023584311828017235, -0.03397798165678978, 0.0363951176404953, -0.04136750474572182, 0.06875016540288925, 0.016609156504273415, 0.04084954783320427, -0.051346808671951294, 0.034047044813632965, -0.011861216276884079, -0.005455814301967621, 0.002645897213369608, -0.06022113934159279, -0.00683271698653698, 0.028591230511665344, -0.026622992008924484, -0.03750009089708328, -0.03542826324701309, -0.06267280131578445, 0.0411948524415493, -0.02178872749209404, -0.03729290887713432, 0.05393659323453903, 0.028712086379528046, -0.0864643007516861, -0.028712086379528046, -0.03162991255521774, 0.07037309557199478, 0.04685784876346588, 0.031716238707304, -0.03168170526623726, -0.003256655065342784, -0.04892967641353607, -0.01704942062497139, -0.025310834869742393, 0.02997244894504547, 0.053867533802986145, -0.007920426316559315, 0.003280394710600376, -0.0020610373467206955, -0.01525383535772562, -0.02550075203180313, -0.02558707818388939, 0.010497262701392174, -0.02330806851387024, 0.063190758228302, 0.01496895868331194, 0.025207243859767914, 0.03061126172542572, -0.029333634302020073, -0.047652050852775574, 0.018784575164318085, -0.00042272848077118397, -0.03314925357699394, 0.030697587877511978, -0.00150531274266541, 0.01992408186197281, 0.014632286503911018, -0.017817722633481026, -0.04008987545967102, -0.05355675891041756, -0.007087379228323698, 0.025880588218569756, 0.009936142712831497, 0.016203423961997032, 0.025000059977173805, -0.03705119341611862, -0.051036033779382706, 0.07313553988933563, 0.010479997843503952, -0.05994489789009094, 0.011472748592495918, 0.025414425879716873, 0.07458581775426865, 0.01453732792288065, 0.025000059977173805, 0.015167509205639362, -0.0060773626901209354, -0.02527630515396595, -0.00879232119768858, 0.014235186390578747, 0.009867082349956036, 0.08287312835454941, -0.08335655927658081, 0.018352944403886795, 0.012482765130698681, 0.03518654778599739, -0.05013824254274368, -0.015366059727966785, -0.015452385880053043, -0.02474108152091503, -0.02657119743525982, 0.0028012844268232584, -0.06985513865947723, 0.025863323360681534, 0.03863959759473801, 0.021098118275403976, -0.009668531827628613, -0.03667135909199715, -0.013743127696216106, 0.019475186243653297, 0.016151627525687218, 0.0077607231214642525, -0.07513830065727234, -0.05127774924039841, 0.018439270555973053, -0.015521446242928505, 0.03370174020528793, 0.015081183053553104, 0.04226529598236084, -0.02460296079516411, -0.04520038515329361, 0.01180942077189684, 0.034375082701444626, -0.04281778261065483, 0.0174983162432909, 0.031526319682598114, -0.06961342692375183, -0.05062166973948479 ]
368
funcsigs
signature
Get a signature object for the passed callable.
def signature(obj): '''Get a signature object for the passed callable.''' if not callable(obj): raise TypeError('{0!r} is not a callable object'.format(obj)) if isinstance(obj, types.MethodType): sig = signature(obj.__func__) if obj.__self__ is None: # Unbound method - preserve as-is. return sig else: # Bound method. Eat self - if we can. params = tuple(sig.parameters.values()) if not params or params[0].kind in (_VAR_KEYWORD, _KEYWORD_ONLY): raise ValueError('invalid method signature') kind = params[0].kind if kind in (_POSITIONAL_OR_KEYWORD, _POSITIONAL_ONLY): # Drop first parameter: # '(p1, p2[, ...])' -> '(p2[, ...])' params = params[1:] else: if kind is not _VAR_POSITIONAL: # Unless we add a new parameter type we never # get here raise ValueError('invalid argument type') # It's a var-positional parameter. # Do nothing. '(*args[, ...])' -> '(*args[, ...])' return sig.replace(parameters=params) try: sig = obj.__signature__ except AttributeError: pass else: if sig is not None: return sig try: # Was this function wrapped by a decorator? wrapped = obj.__wrapped__ except AttributeError: pass else: return signature(wrapped) if isinstance(obj, types.FunctionType): return Signature.from_function(obj) if isinstance(obj, functools.partial): sig = signature(obj.func) new_params = OrderedDict(sig.parameters.items()) partial_args = obj.args or () partial_keywords = obj.keywords or {} try: ba = sig.bind_partial(*partial_args, **partial_keywords) except TypeError as ex: msg = 'partial object {0!r} has incorrect arguments'.format(obj) raise ValueError(msg) for arg_name, arg_value in ba.arguments.items(): param = new_params[arg_name] if arg_name in partial_keywords: # We set a new default value, because the following code # is correct: # # >>> def foo(a): print(a) # >>> print(partial(partial(foo, a=10), a=20)()) # 20 # >>> print(partial(partial(foo, a=10), a=20)(a=30)) # 30 # # So, with 'partial' objects, passing a keyword argument is # like setting a new default value for the corresponding # parameter # # We also mark this parameter with '_partial_kwarg' # flag. Later, in '_bind', the 'default' value of this # parameter will be added to 'kwargs', to simulate # the 'functools.partial' real call. new_params[arg_name] = param.replace(default=arg_value, _partial_kwarg=True) elif (param.kind not in (_VAR_KEYWORD, _VAR_POSITIONAL) and not param._partial_kwarg): new_params.pop(arg_name) return sig.replace(parameters=new_params.values()) sig = None if isinstance(obj, type): # obj is a class or a metaclass # First, let's see if it has an overloaded __call__ defined # in its metaclass call = _get_user_defined_method(type(obj), '__call__') if call is not None: sig = signature(call) else: # Now we check if the 'obj' class has a '__new__' method new = _get_user_defined_method(obj, '__new__') if new is not None: sig = signature(new) else: # Finally, we should have at least __init__ implemented init = _get_user_defined_method(obj, '__init__') if init is not None: sig = signature(init) elif not isinstance(obj, _NonUserDefinedCallables): # An object with __call__ # We also check that the 'obj' is not an instance of # _WrapperDescriptor or _MethodWrapper to avoid # infinite recursion (and even potential segfault) call = _get_user_defined_method(type(obj), '__call__', 'im_func') if call is not None: sig = signature(call) if sig is not None: # For classes and objects we skip the first parameter of their # __call__, __new__, or __init__ methods return sig.replace(parameters=tuple(sig.parameters.values())[1:]) if isinstance(obj, types.BuiltinFunctionType): # Raise a nicer error message for builtins msg = 'no signature found for builtin function {0!r}'.format(obj) raise ValueError(msg) raise ValueError('callable {0!r} is not supported by signature'.format(obj))
(obj)
[ 0.009364153258502483, -0.062455836683511734, 0.022085465490818024, -0.011560031212866306, -0.012710755690932274, -0.027385132387280464, 0.0429040789604187, 0.022212151437997818, 0.03878680616617203, -0.008002285845577717, -0.04522664099931717, 0.00841929204761982, -0.003977389540523291, -0.03967360407114029, -0.08137417584657669, 0.05730397254228592, 0.030341122299432755, 0.018601620569825172, -0.017218640074133873, -0.02101919800043106, 0.02491476945579052, 0.025717109441757202, -0.00245188781991601, -0.004785008262842894, 0.026793934404850006, 0.020628584548830986, 0.03844897821545601, 0.04081377014517784, 0.0640605166554451, 0.029538782313466072, -0.014632148668169975, 0.0016125979600474238, 0.005621659103780985, 0.004814040381461382, 0.026878392323851585, -0.04852045699954033, 0.046155668795108795, 0.06000658869743347, -0.005896143615245819, -0.03604196012020111, -0.04455098509788513, -0.010799919255077839, -0.02195877954363823, -0.035556331276893616, 0.049449484795331955, 0.003259506542235613, -0.004552751779556274, 0.1332729011774063, 0.005832801107317209, 0.0032093601766973734, -0.0034073060378432274, -0.06431388854980469, 0.03464842215180397, -0.041552767157554626, -0.025041455402970314, 0.021061426028609276, 0.024006858468055725, 0.04776034876704216, -0.007258010096848011, 0.037646640092134476, 0.0058222441002726555, 0.07491322606801987, 0.008033957332372665, -0.03344491124153137, 0.004898497369140387, -0.051265306770801544, -0.02259220741689205, -0.024154657498002052, -0.03878680616617203, 0.011570587754249573, -0.04678909480571747, 0.0074797095730900764, 0.04315744712948799, 0.021663181483745575, -0.01797875203192234, -0.055445920675992966, -0.022613320499658585, -0.04856268689036369, 0.04564892500638962, -0.009168846532702446, 0.009987021796405315, -0.05498140677809715, -0.02820858731865883, -0.05080079287290573, -0.022022122517228127, 0.0058644721284508705, -0.04408647492527962, -0.0016614245250821114, 0.022212151437997818, -0.006334263365715742, -0.06317371875047684, 0.013143597170710564, 0.009475002996623516, 0.014927747659385204, -0.04429761692881584, -0.05797962471842766, 0.007917829789221287, -0.019857916980981827, 0.046028982847929, -0.037709981203079224, 0.001016781316138804, -0.01710251159965992, -0.05160313472151756, -0.00742692407220602, 0.013407524675130844, 0.00017600675346329808, 0.024809198454022408, 0.012974683195352554, -0.002374029252678156, -0.0035524661652743816, 0.04881605878472328, -0.03732992708683014, -0.044508758932352066, 0.03623198717832565, 0.007384695578366518, -0.00825037807226181, 0.005394680891185999, -0.015381703153252602, -0.0038612615317106247, 0.005442188121378422, -0.010747133754193783, -0.019836802035570145, -0.041890595108270645, -0.006561241112649441, -0.0030061358120292425, -0.004241317510604858, 0.024682514369487762, 0.024070201441645622, 0.042333994060754776, -0.017208082601428032, 0.00263663730584085, 0.0077753085643053055, -0.08297885209321976, 0.021071983501315117, -0.00666681258007884, -0.003259506542235613, 0.013502538204193115, 0.02882089838385582, -0.09172013401985168, 0.006413441617041826, 0.007896714843809605, 0.014473792165517807, 0.0015624517109245062, 0.04064485803246498, -0.008614598773419857, 0.023901287466287613, 0.028715327382087708, -0.013977608643472195, 0.006867397576570511, -0.024070201441645622, 0.013872036710381508, -0.015297246165573597, 0.022951148450374603, 0.0578107126057148, -0.026456108316779137, -0.03291705623269081, 0.010884376242756844, -0.06735433638095856, -0.04776034876704216, -0.0011850351002067327, 0.004159499891102314, -0.021325353533029556, -0.015318361110985279, -0.03680207207798958, 0.027659617364406586, -0.01753535307943821, 0.046324580907821655, -0.055445920675992966, -0.02856752835214138, 0.022191036492586136, -0.05679722875356674, 0.032684799283742905, -0.008614598773419857, 0.022191036492586136, 0.05329227074980736, 0.07605338841676712, -0.035978615283966064, -0.006777661852538586, -0.01262629870325327, -0.032431431114673615, 0.07491322606801987, -0.04091934114694595, -0.03384608030319214, -0.029559897258877754, 0.01824267953634262, 0.04957617074251175, 0.008894361555576324, -0.018812762573361397, 0.0002756394387688488, -0.021240897476673126, -0.01216178573668003, 0.016215715557336807, 0.05016736686229706, 0.009195239283144474, 0.0013209579046815634, 0.019762901589274406, -0.046662408858537674, 0.055361464619636536, 0.037900011986494064, -0.008482635021209717, 0.047549206763505936, -0.02413354441523552, 0.03956803306937218, -0.04256625100970268, -0.03631644323468208, 0.02274000644683838, 0.03253700211644173, 0.04091934114694595, -0.029581010341644287, -0.046831320971250534, 0.03690764307975769, -0.032769255340099335, -0.028250815346837044, 0.04305187612771988, -0.008466798812150955, -0.06498954445123672, 0.07461762428283691, -0.051265306770801544, -0.0029243184253573418, 0.004389117006212473, 0.061949096620082855, 0.024027973413467407, -0.023035604506731033, 0.032346971333026886, -0.018981676548719406, -0.031059006229043007, 0.04315744712948799, -0.01763036660850048, 0.03272702917456627, -0.07001472264528275, 0.010821033269166946, -0.022761119529604912, 0.0039114076644182205, 0.04151054099202156, -0.04526887089014053, 0.008092021569609642, 0.05819076672196388, -0.009337760508060455, -0.0005037718801759183, -0.00798645056784153, 0.018548835068941116, 0.009892008267343044, 0.012668526731431484, 0.04949171096086502, -0.037498839199543, 0.001974178710952401, 0.044424302875995636, 0.03205137327313423, 0.003140738932415843, -0.051434218883514404, 0.0029559896793216467, 0.025738224387168884, -0.0343739353120327, -0.03369828313589096, -0.028947584331035614, 0.00553192337974906, 0.00003311467298772186, 0.013840366154909134, 0.009084389545023441, 0.04586006700992584, -0.011697273701429367, 0.008487912826240063, 0.021726524457335472, 0.057430654764175415, 0.013365295715630054, -0.015033318661153316, -0.0007066662656143308, -0.010124264284968376, -0.044931042939424515, 0.058824192732572556, 0.11781730502843857, -0.07972726225852966, -0.0011777770705521107, -0.010050364769995213, -0.04548001289367676, -0.03466953709721565, -0.03230474516749382, 0.004365363158285618, 0.048224858939647675, -0.03420502319931984, 0.029728809371590614, -0.04539555683732033, 0.037118785083293915, -0.0004117271164432168, 0.0031380997970700264, 0.07254843413829803, 0.019002791494131088, -0.009358874522149563, 0.02214880846440792, -0.013956493698060513, 0.03080563433468342, -0.03741438314318657, 0.04818263277411461, 0.03249477222561836, -0.00014796444156672806, 0.0585285946726799, -0.07161940634250641, -0.07732024043798447, 0.039040178060531616, -0.08137417584657669, -0.008456242270767689, 0.029939953237771988, -0.027110647410154343, -0.015561173669993877, 0.04091934114694595, -0.06596079468727112, 0.017683152109384537, -0.04700023680925369, -0.041552767157554626, -0.008260935544967651, -0.0181476641446352, 0.007395252585411072, -0.000524556206073612, -0.07077483832836151, 0.036949869245290756, 0.04471990093588829, 0.002826665062457323, -0.048140402883291245, 0.045099955052137375, 0.07732024043798447, 0.027068419381976128, 0.02057579904794693, -0.010219278745353222, -0.000011577763871173374, 0.03462730720639229, -0.02544262446463108, -0.03471176326274872, 0.002182681579142809, -0.045353326946496964, 0.04556446895003319, -0.051096390932798386, -0.027765188366174698, 0.03927243500947952, 0.03308596834540367, -0.01596234366297722, 0.013988165184855461, 0.012446828186511993, -0.0029929394368082285, 0.007247453089803457, -0.012446828186511993, 0.03768886625766754, -0.003090592799708247, 0.0019042380154132843, 0.022613320499658585, -0.03308596834540367, -0.005558316130191088, 0.0366542711853981, -0.006413441617041826, 0.08357004821300507, -0.03169243037700653, -0.020269643515348434, -0.058486368507146835, -0.05515032261610031, -0.04425538703799248, -0.0022117136977612972, -0.018020980060100555, 0.013059140183031559, -0.003468009177595377, -0.02369014546275139, -0.10295289754867554, 0.05831745266914368, -0.023859059438109398, -0.036780957132577896, -0.027744073420763016, 0.08145862817764282, 0.0663408562541008, -0.02204323746263981, 0.028250815346837044, -0.027321789413690567, -0.013523652218282223, 0.019762901589274406, -0.059077564626932144, -0.01573008857667446, 0.0008894361671991646, -0.0033281275536864996, 0.0017300457693636417, 0.04140496999025345, 0.020512456074357033, -0.037203241139650345, 0.011517802253365517, 0.01614181511104107, -0.03830118104815483, 0.038005582988262177, -0.02882089838385582, 0.015740644186735153, 0.013428638689219952, -0.020681370049715042, 0.008757119067013264, 0.010266785509884357, 0.0071207680739462376, -0.009881450794637203, -0.03393054008483887, -0.02004794403910637, 0.001371104153804481, 0.053714554756879807, -0.007305517327040434, 0.032959286123514175, -0.01177117321640253, -0.023859059438109398, 0.00885213352739811, 0.05401015281677246, -0.0071207680739462376, 0.03154463320970535, 0.033487141132354736, 0.043537504971027374, -0.00925330352038145, 0.06612971425056458, -0.007178831845521927, 0.006851561833173037, 0.01642685756087303, -0.019235046580433846, -0.04294630512595177, -0.024809198454022408, -0.036506474018096924, 0.05835968255996704, 0.05789516866207123, -0.011011061258614063, -0.026983963325619698, -0.007495545316487551, -0.018453821539878845, 0.049449484795331955, 0.022338835522532463, 0.01010842900723219, 0.03124903328716755, -0.006154792848974466, 0.05219433084130287, -0.0491538867354393, -0.027912987396121025, 0.052574388682842255, 0.03194580227136612, 0.011401674710214138, -0.04708469286561012, -0.0030985106714069843, 0.028081901371479034, -0.0883418619632721, -0.0608089305460453, -0.01180284470319748, 0.010894933715462685, 0.004819318652153015, 0.11536805331707001, -0.0350918211042881, 0.031206805258989334, -0.035894159227609634, 0.005278552882373333, -0.03787889704108238, -0.019731231033802032, 0.060471102595329285, 0.009448610246181488, 0.023669030517339706, -0.0043072993867099285, 0.10413528978824615, 0.006777661852538586, 0.05658608675003052, -0.012087886221706867, -0.01037235651165247, -0.049787312746047974, 0.0029691860545426607, -0.02630830742418766, 0.0015004286542534828, 0.010034529492259026, 0.009195239283144474, -0.00981810875236988, -0.03162908926606178, 0.002853057812899351, -0.0897776260972023, 0.02689950540661812, 0.04784480482339859, -0.0023529150057584047, -0.06287812441587448, 0.008107857778668404, 0.061526812613010406, -0.012351813726127148, 0.006751269102096558, 0.00251918938010931, -0.0249992273747921, 0.08019177615642548, 0.01358699519187212, -0.030510036274790764, -0.039715833961963654, -0.007521938066929579, 0.009358874522149563, -0.03108011931180954, 0.006561241112649441, 0.02438691444694996, -0.01315415371209383, 0.011359445750713348, -0.02206435054540634, 0.014537135139107704, 0.0030457249376922846, 0.019045019522309303, -0.038850151002407074, 0.06351155042648315, 0.012109000235795975, 0.020512456074357033, 0.021399253979325294, 0.023373432457447052, -0.0006499218288809061, -0.012489056214690208, -0.016542984172701836, -0.04522664099931717, -0.025400396436452866, -0.005006707273423672, 0.028356386348605156, 0.006086171604692936, 0.022191036492586136, -0.0765601322054863, 0.018306022509932518, 0.02856752835214138, -0.03266368433833122, -0.0031592140439897776, -0.01858050562441349, 0.0019860556349158287, -0.008503749035298824, 0.029538782313466072, -0.046746864914894104, 0.011718387715518475, 0.009358874522149563, -0.004075042903423309, -0.04212285205721855, -0.06587634235620499, 0.03150240331888199, 0.0013724237214773893, 0.010013414546847343, -0.05477026477456093, 0.06156904250383377, -0.03697098419070244, -0.00021229679987300187, -0.04313633590936661, 0.03012998029589653, -0.00009196229075314477, 0.02664613537490368, 0.012784655205905437, -0.017873181030154228, -0.017609253525733948, 0.014959419146180153, 0.033043742179870605, -0.0008729406981728971, -0.038596779108047485, 0.07563110440969467, -0.006745990831404924, -0.0029137611854821444, 0.04357973486185074, -0.0671854242682457, 0.08128971606492996, 0.012805769219994545, 0.007590559311211109, 0.00207183207385242, -0.06976135820150375, -0.06659422069787979, -0.07660236209630966, 0.002597047947347164, 0.005442188121378422, 0.046324580907821655, 0.04140496999025345, -0.03602084517478943, -0.030362237244844437, 0.037456613034009933, 0.04590229690074921, 0.0014700769679620862, 0.00339674879796803, -0.020269643515348434, 0.06608748435974121, 0.04433984309434891, -0.043621961027383804, -0.023120062425732613, 0.03690764307975769, 0.06680536270141602, -0.0029612681828439236, -0.013238610699772835, -0.039715833961963654, -0.018897220492362976, 0.051434218883514404, -0.03310708329081535, -0.02154705300927162, 0.0020955854561179876, 0.06068224459886551, 0.0016838583396747708, -0.0020876675844192505, -0.03682318702340126, -0.074997678399086, 0.0378577820956707, -0.0218743234872818, -0.015075547620654106, -0.05928870663046837, -0.009665030054748058, 0.006423999089747667, -0.00000822196489025373, 0.04341081902384758, -0.05747288465499878, 0.027997445315122604, -0.08251433819532394, 0.01554005965590477, -0.037287697196006775, -0.060217730700969696, 0.01978401653468609, 0.05992213264107704, -0.03291705623269081, 0.012710755690932274, 0.013291396200656891, -0.05844413861632347, -0.03961026296019554, -0.016184043139219284, -0.03948357701301575, 0.024724742397665977, 0.01315415371209383, 0.01755646802484989, -0.034944020211696625, 0.03847009316086769, 0.007453316822648048, -0.04395978897809982, 0.02901092730462551, 0.02510479837656021, 0.018971119076013565, -0.0005433610640466213, -0.039631374180316925, 0.019129475578665733, -0.039124634116888046, 0.029390983283519745, 0.027195105329155922, 0.07719355821609497, -0.05810631066560745, -0.022887805476784706, -0.0011612816015258431, -0.017925966531038284, -0.012995797209441662, -0.04433984309434891, -0.053250040858983994, 0.011137746274471283, 0.0005146589246578515, -0.06773439049720764, -0.03866012021899223, -0.011095518246293068, 0.03454285115003586, -0.01806320808827877, 0.04315744712948799, -0.016289614140987396, -0.011538917198777199, 0.019667888060212135, -0.033571597188711166, 0.0880884900689125, 0.035809703171253204, -0.06224469467997551, -0.024809198454022408, 0.02438691444694996, 0.0014252093387767673, 0.020100729539990425, 0.0013011633418500423, -0.04556446895003319, 0.05738842859864235, 0.002341038314625621, 0.01770426705479622, 0.06841004639863968, -0.020797498524188995, -0.016806911677122116, 0.016120700165629387, -0.020364657044410706, 0.04030703008174896, -0.05050519481301308, 0.03532407805323601, -0.012035100720822811, 0.023901287466287613, -0.047591432929039, 0.010002858005464077, -0.022465521469712257, 0.008197592571377754, 0.0600910484790802, -0.04539555683732033, -0.014051508158445358, 0.05823299661278725, -0.012182899750769138, 0.0394202321767807, -0.01944618858397007, 0.001561132026836276, -0.016352957114577293, -0.04826708883047104, -0.037815552204847336, 0.0012503572506830096, 0.04087711498141289, 0.005431631114333868, 0.01848549209535122, -0.0012681724037975073, 0.003051003674045205, -0.04670463502407074, -0.0042941030114889145, -0.03426836431026459, -0.02014295756816864, 0.05713505670428276, -0.01737699657678604, 0.00026508234441280365, -0.07778475433588028, 0.03866012021899223, -0.03809003904461861, 0.04106714203953743, 0.004391755908727646, -0.05181427672505379, -0.015687858685851097, -0.02240217849612236, 0.00981810875236988, 0.02457694336771965, -0.04140496999025345, 0.008978818543255329, 0.03707655519247055, 0.0020348820835351944, -0.016215715557336807, -0.005811686627566814, 0.03813226521015167, -0.00034013675758615136, -0.050125136971473694, 0.05895087867975235, -0.020797498524188995, -0.0070838178507983685, 0.030256666243076324, 0.045437783002853394, -0.033634938299655914, 0.04792926087975502, -0.02360568940639496, 0.002104823011904955, 0.02343677543103695, -0.002479600254446268, -0.006054500117897987, -0.010303735733032227, -0.03618975728750229, 0.04628235101699829, -0.03612641617655754, 0.05983767658472061, -0.0035471876617521048, 0.024935884401202202, 0.04252402111887932, -0.037646640092134476, -0.03344491124153137, 0.062033552676439285, 0.02839861437678337, -0.04564892500638962, -0.029412096366286278, 0.010615170001983643, -0.02761738933622837, 0.04923834279179573, -0.0061178430914878845, -0.053630098700523376, 0.002276375889778137, -0.05379901081323624, 0.045099955052137375, -0.006318428087979555, 0.05688168480992317, 0.12128002941608429, 0.006946575827896595, -0.003351881168782711, 0.0020889872685074806, 0.05367232486605644, -0.03847009316086769, 0.04391755908727646, 0.04716914892196655, -0.024027973413467407, -0.04577561095356941, 0.00779114430770278, -0.03409945219755173, -0.03561967611312866, 0.04712691903114319, 0.009438052773475647, -0.03447950631380081, -0.07111266255378723, -0.058908652514219284, 0.0538412407040596, -0.022761119529604912, 0.02683616243302822, 0.03923020511865616, -0.04826708883047104, 0.019857916980981827 ]
371
mohawk.receiver
Receiver
A Hawk authority that will receive and respond to requests. :param credentials_map: Callable to look up the credentials dict by sender ID. The credentials dict must have the keys: ``id``, ``key``, and ``algorithm``. See :ref:`receiving-request` for an example. :type credentials_map: callable :param request_header: A `Hawk`_ ``Authorization`` header such as one created by :class:`mohawk.Sender`. :type request_header: str :param url: Absolute URL of the request. :type url: str :param method: Method of the request. E.G. POST, GET :type method: str :param content=EmptyValue: Byte string of request body. :type content=EmptyValue: str :param content_type=EmptyValue: content-type header value for request. :type content_type=EmptyValue: str :param accept_untrusted_content=False: When True, allow requests that do not hash their content. Read :ref:`skipping-content-checks` to learn more. :type accept_untrusted_content=False: bool :param localtime_offset_in_seconds=0: Seconds to add to local time in case it's out of sync. :type localtime_offset_in_seconds=0: float :param timestamp_skew_in_seconds=60: Max seconds until a message expires. Upon expiry, :class:`mohawk.exc.TokenExpired` is raised. :type timestamp_skew_in_seconds=60: float .. _`Hawk`: https://github.com/hueniverse/hawk
class Receiver(HawkAuthority): """ A Hawk authority that will receive and respond to requests. :param credentials_map: Callable to look up the credentials dict by sender ID. The credentials dict must have the keys: ``id``, ``key``, and ``algorithm``. See :ref:`receiving-request` for an example. :type credentials_map: callable :param request_header: A `Hawk`_ ``Authorization`` header such as one created by :class:`mohawk.Sender`. :type request_header: str :param url: Absolute URL of the request. :type url: str :param method: Method of the request. E.G. POST, GET :type method: str :param content=EmptyValue: Byte string of request body. :type content=EmptyValue: str :param content_type=EmptyValue: content-type header value for request. :type content_type=EmptyValue: str :param accept_untrusted_content=False: When True, allow requests that do not hash their content. Read :ref:`skipping-content-checks` to learn more. :type accept_untrusted_content=False: bool :param localtime_offset_in_seconds=0: Seconds to add to local time in case it's out of sync. :type localtime_offset_in_seconds=0: float :param timestamp_skew_in_seconds=60: Max seconds until a message expires. Upon expiry, :class:`mohawk.exc.TokenExpired` is raised. :type timestamp_skew_in_seconds=60: float .. _`Hawk`: https://github.com/hueniverse/hawk """ #: Value suitable for a ``Server-Authorization`` header. response_header = None def __init__(self, credentials_map, request_header, url, method, content=EmptyValue, content_type=EmptyValue, seen_nonce=None, localtime_offset_in_seconds=0, accept_untrusted_content=False, timestamp_skew_in_seconds=default_ts_skew_in_seconds, **auth_kw): self.response_header = None # make into property that can raise exc? self.credentials_map = credentials_map self.seen_nonce = seen_nonce log.debug('accepting request {header}'.format(header=request_header)) if not request_header: raise MissingAuthorization() parsed_header = parse_authorization_header(request_header) try: credentials = self.credentials_map(parsed_header['id']) except LookupError: etype, val, tb = sys.exc_info() log.debug('Catching {etype}: {val}'.format(etype=etype, val=val)) raise CredentialsLookupError( 'Could not find credentials for ID {0}' .format(parsed_header['id'])) validate_credentials(credentials) resource = Resource(url=url, method=method, ext=parsed_header.get('ext', None), app=parsed_header.get('app', None), dlg=parsed_header.get('dlg', None), credentials=credentials, nonce=parsed_header['nonce'], seen_nonce=self.seen_nonce, content=content, timestamp=parsed_header['ts'], content_type=content_type) self._authorize( 'header', parsed_header, resource, timestamp_skew_in_seconds=timestamp_skew_in_seconds, localtime_offset_in_seconds=localtime_offset_in_seconds, accept_untrusted_content=accept_untrusted_content, **auth_kw) # Now that we verified an incoming request, we can re-use some of its # properties to build our response header. self.parsed_header = parsed_header self.resource = resource def respond(self, content=EmptyValue, content_type=EmptyValue, always_hash_content=True, ext=None): """ Respond to the request. This generates the :attr:`mohawk.Receiver.response_header` attribute. :param content=EmptyValue: Byte string of response body that will be sent. :type content=EmptyValue: str :param content_type=EmptyValue: content-type header value for response. :type content_type=EmptyValue: str :param always_hash_content=True: When True, ``content`` and ``content_type`` must be provided. Read :ref:`skipping-content-checks` to learn more. :type always_hash_content=True: bool :param ext=None: An external `Hawk`_ string. If not None, this value will be signed so that the sender can trust it. :type ext=None: str .. _`Hawk`: https://github.com/hueniverse/hawk """ log.debug('generating response header') resource = Resource(url=self.resource.url, credentials=self.resource.credentials, ext=ext, app=self.parsed_header.get('app', None), dlg=self.parsed_header.get('dlg', None), method=self.resource.method, content=content, content_type=content_type, always_hash_content=always_hash_content, nonce=self.parsed_header['nonce'], timestamp=self.parsed_header['ts']) mac = calculate_mac('response', resource, resource.gen_content_hash()) self.response_header = self._make_header(resource, mac, additional_keys=['ext']) return self.response_header
(credentials_map, request_header, url, method, content=EmptyValue, content_type=EmptyValue, seen_nonce=None, localtime_offset_in_seconds=0, accept_untrusted_content=False, timestamp_skew_in_seconds=60, **auth_kw)
[ 0.0047804443165659904, -0.013868976384401321, -0.08918879926204681, -0.00838865339756012, 0.028845887631177902, -0.03385138139128685, -0.02771816775202751, 0.08364912122488022, -0.06742577999830246, -0.019804345443844795, 0.05749393254518509, 0.04340732470154762, 0.049461398273706436, 0.02324685826897621, -0.019339406862854958, -0.01840953342616558, 0.03654208406805992, 0.03893601521849632, -0.005401184782385826, -0.08934707194566727, 0.017796210944652557, -0.02350405789911747, -0.013473285362124443, 0.05456581711769104, -0.03389095142483711, 0.0016841606702655554, -0.023682117462158203, -0.03398987278342247, 0.02979554794728756, 0.017618151381611824, -0.016787199303507805, -0.020516589283943176, 0.015629801899194717, 0.030270377174019814, 0.0059452601708471775, -0.04451525956392288, 0.011138707399368286, -0.022772029042243958, -0.046098023653030396, 0.017796210944652557, -0.045267071574926376, 0.014739497564733028, 0.03373267501592636, -0.048907432705163956, -0.0011054623173549771, 0.07431080937385559, -0.022336767986416817, 0.11237630248069763, -0.02182237058877945, -0.03264452517032623, -0.006143105681985617, -0.001550614950247109, 0.01405693031847477, -0.01608484797179699, 0.00817102286964655, 0.017430197447538376, 0.018923930823802948, 0.0068850270472466946, -0.01757858134806156, -0.016698168590664864, -0.0002533351071178913, 0.05302261933684349, 0.008907997980713844, 0.03786764666438103, -0.008868428878486156, -0.009264119900763035, -0.01944822259247303, -0.010495709255337715, -0.011653105728328228, 0.009926903061568737, 0.04293249547481537, -0.016925690695643425, -0.014887881465256214, -0.02126840129494667, 0.07644753903150558, -0.04320947825908661, -0.056860826909542084, 0.009397665970027447, -0.022752244025468826, -0.015619910322129726, 0.037570878863334656, -0.021367324516177177, 0.010035717859864235, -0.04732466861605644, 0.0161540936678648, -0.0024940911680459976, 0.0374719575047493, -0.03622553125023842, -0.049303121864795685, 0.0019203388364985585, -0.03274344652891159, -0.029202010482549667, -0.009026705287396908, 0.004258626606315374, 0.009536158293485641, -0.019092099741101265, -0.00657836627215147, -0.025541866198182106, -0.0006349607137963176, -0.020773788914084435, -0.05915583297610283, 0.08246205002069473, -0.036027684807777405, 0.0587601438164711, -0.0037912162952125072, -0.01596613973379135, -0.03683885186910629, -0.006914703641086817, 0.016233231872320175, -0.0014764227671548724, -0.01705429144203663, 0.005173662677407265, -0.013265547342598438, -0.01764782704412937, -0.01105956919491291, -0.03579026833176613, -0.021743232384324074, -0.002423608675599098, -0.03725432604551315, -0.020318742841482162, 0.023701902478933334, -0.031991634517908096, 0.033633753657341, -0.025799065828323364, -0.02350405789911747, 0.02781709097325802, -0.04831389710307121, -0.04613759368658066, 0.021466247737407684, -0.023187505081295967, -0.03535500913858414, 0.049619678407907486, 0.004787863697856665, 0.027797305956482887, -0.01070344727486372, -0.001424488378688693, -0.013275439850986004, 0.02475048415362835, -0.014927450567483902, 0.07644753903150558, 0.05254779011011124, -0.004669156391173601, 0.009046490304172039, -0.044831812381744385, -0.02477026917040348, -0.01811276562511921, 0.004120134748518467, -0.04269507899880409, -0.007562648039311171, -0.015422064810991287, -0.0005923002609051764, -0.03464276343584061, 0.038401830941438675, 0.040241796523332596, 0.009773572906851768, 0.0009144176146946847, -0.03220926225185394, -0.025858420878648758, -0.009991202503442764, -0.01057484745979309, 0.0004989418666809797, -0.07126398384571075, 0.027520323172211647, -0.019072316586971283, 0.004026157781481743, -0.009461965411901474, 0.009367989376187325, -0.00583644537255168, -0.007340071722865105, -0.004832378588616848, -0.06944380700588226, 0.01963617652654648, -0.08016704022884369, -0.0319322794675827, -0.010802369564771652, 0.026550879701972008, 0.02910308726131916, -0.01357220858335495, -0.016965260729193687, -0.03887666016817093, -0.016599245369434357, -0.061332136392593384, -0.04657285287976265, 0.01469992846250534, 0.00819080788642168, 0.030013177543878555, 0.037689585238695145, 0.016559677198529243, 0.069404236972332, 0.025403374806046486, -0.0618465356528759, -0.015352818183600903, -0.002230709185823798, 0.03662122040987015, 0.008185861632227898, -0.018488671630620956, -0.012632441706955433, 0.0019005542853847146, 0.049896661192178726, -0.025838635861873627, -0.034702118486166, 0.014314129017293453, -0.030052747577428818, 0.009189927950501442, 0.012751149013638496, 0.0312991738319397, 0.031398095190525055, 0.001323092496022582, -0.07605184614658356, 0.03818419948220253, -0.03515716269612312, -0.030745206400752068, -0.030804559588432312, 0.005460538435727358, -0.008809075690805912, -0.015194541774690151, 0.02995382435619831, -0.002304901136085391, 0.044831812381744385, -0.002618981059640646, 0.06030333787202835, 0.03822376951575279, -0.04562319442629814, -0.02449328452348709, -0.009560888633131981, -0.004162176977843046, 0.02362276427447796, 0.00023215945111587644, -0.04111231490969658, -0.04744337499141693, 0.051954254508018494, 0.019230592995882034, 0.01652010716497898, 0.015797970816493034, -0.05697953328490257, 0.02688721753656864, 0.03681906685233116, 0.04514836519956589, -0.05733565613627434, 0.02380082570016384, 0.0011066988809034228, 0.02207956835627556, 0.04922398552298546, -0.009466911666095257, -0.037847861647605896, -0.02977576293051243, 0.007473617792129517, 0.07965263724327087, -0.0022776974365115166, -0.0249087605625391, -0.06615956872701645, -0.02194107696413994, -0.027045493945479393, -0.06370628625154495, -0.020595727488398552, -0.013690915890038013, -0.008175969123840332, -0.030428653582930565, 0.06485378742218018, -0.02991425432264805, 0.01652010716497898, 0.009392719715833664, -0.02936028689146042, -0.000990464584901929, -0.004372387658804655, 0.013819514773786068, -0.014937343075871468, 0.023286426439881325, -0.014917558059096336, -0.01840953342616558, 0.04020222648978233, 0.005613869056105614, -0.03687841817736626, -0.02184215374290943, -0.029617486521601677, 0.01733127422630787, 0.0408749021589756, 0.0004961596569046378, -0.014808743260800838, 0.04214111343026161, 0.032110340893268585, -0.029558133333921432, 0.03834247589111328, 0.009921956807374954, 0.0063310591503977776, 0.04451525956392288, -0.044990088790655136, 0.04922398552298546, 0.004644425585865974, -0.016806984320282936, -0.018419425934553146, 0.009996148757636547, 0.0185480248183012, -0.043605171144008636, 0.06778190284967422, 0.030567144975066185, -0.04787863418459892, -0.011445367708802223, 0.04712682217359543, -0.021881723776459694, -0.004021211992949247, 0.072807177901268, 0.04277421906590462, -0.06390412896871567, -0.01112881489098072, -0.032961077988147736, 0.0408749021589756, 0.032248832285404205, 0.006449766457080841, 0.0027179040480405092, 0.03990545868873596, 0.029696624726057053, 0.014155852608382702, -0.058285314589738846, 0.012434596195816994, 0.04629587009549141, 0.07158053666353226, 0.041191454976797104, 0.03650251403450966, 0.07340072095394135, -0.00316800270229578, 0.021307971328496933, 0.0044762566685676575, 0.03264452517032623, 0.03802592307329178, -0.06370628625154495, -0.015837540850043297, 0.016124416142702103, -0.009936795569956303, 0.005059901159256697, -0.08459877967834473, 0.029558133333921432, -0.042734649032354355, -0.030824344605207443, 0.005628707353025675, -0.005406131036579609, -0.0048150671645998955, -0.019715314731001854, -0.015293464995920658, -0.04744337499141693, -0.02977576293051243, -0.038659028708934784, -0.006251920945942402, 0.04202240705490112, 0.007844578474760056, -0.0515189953148365, -0.015026373788714409, 0.023721687495708466, 0.007864362560212612, -0.01781599596142769, -0.028232567012310028, 0.004540556576102972, 0.06821716576814651, 0.0817498043179512, 0.08871396631002426, -0.0467311292886734, -0.049857091158628464, -0.03292150795459747, -0.028094075620174408, 0.04277421906590462, 0.026966355741024017, 0.02781709097325802, -0.040340717881917953, 0.03021102398633957, -0.08594413101673126, -0.056465134024620056, -0.018083088099956512, -0.0024990371894091368, 0.05555504560470581, -0.04103317856788635, -0.012078474275767803, -0.05345788225531578, -0.046533286571502686, -0.003966804128140211, 0.018241364508867264, 0.027757737785577774, -0.022198276594281197, 0.010891400277614594, -0.08119583129882812, -0.008611230179667473, 0.06548689305782318, 0.059393249452114105, -0.04439655318856239, -0.021307971328496933, -0.02380082570016384, -0.03893601521849632, -0.003618101356551051, -0.0049164630472660065, 0.0017509335884824395, 0.0542888343334198, 0.06390412896871567, -0.02967683970928192, 0.06453723460435867, 0.0026066158898174763, -0.03313913941383362, 0.011336552910506725, -0.0642998218536377, 0.03317870572209358, -0.023543626070022583, -0.06331059336662292, 0.06667396426200867, -0.005037643481045961, 0.004503460600972176, 0.036284882575273514, -0.009536158293485641, -0.002762419171631336, 0.08491533249616623, 0.005074739456176758, 0.016648707911372185, 0.022851167246699333, -0.02279181405901909, -0.050846319645643234, 0.008907997980713844, 0.013324901461601257, -0.001043635536916554, 0.009081113152205944, 0.015135188587009907, 0.041231025010347366, 0.027639029547572136, 0.05369529500603676, -0.0009762443951331079, -0.0350186713039875, 0.03563199192285538, 0.054209694266319275, 0.007043303456157446, 0.040518779307603836, -0.06928552687168121, -0.008932729251682758, -0.029043734073638916, -0.07454822212457657, 0.026669586077332497, 0.03292150795459747, -0.02615518867969513, -0.031694866716861725, 0.0017422778764739633, 0.02757967635989189, -0.03970761224627495, 0.028311705216765404, 0.03302042931318283, -0.02728290855884552, 0.010006041266024113, 0.001720020198263228, -0.00316800270229578, -0.00872004497796297, 0.03992524370551109, 0.023840395733714104, -0.04131016135215759, 0.02894481085240841, 0.016490431502461433, -0.0033930521458387375, 0.04625630006194115, 0.008279838599264622, -0.03248624876141548, 0.019477900117635727, -0.068771131336689, -0.024374578148126602, 0.06319188326597214, 0.026135403662919998, -0.010921076871454716, -0.049857091158628464, 0.026768509298563004, 0.014759281650185585, 0.0197449903935194, -0.012642334215342999, -0.021426677703857422, 0.0680193156003952, 0.03313913941383362, -0.005198393017053604, -0.025858420878648758, -0.024849407374858856, 0.00860628392547369, 0.002952845534309745, -0.05092545598745346, 0.025245098397135735, 0.03458341211080551, 0.008161131292581558, 0.0835699811577797, -0.0005616960115730762, -0.10596610605716705, -0.02518574520945549, 0.01882500946521759, -0.001783083425834775, 0.012840179726481438, -0.023543626070022583, 0.013760161586105824, -0.05563418194651604, 0.04131016135215759, -0.05539676919579506, 0.01946800760924816, -0.021743232384324074, -0.0015246476978063583, 0.027876446023583412, -0.009338312782347202, 0.0025089294649660587, -0.012592872604727745, 0.010950754396617413, 0.03302042931318283, 0.014561436139047146, -0.03290172293782234, -0.05108373239636421, -0.027896229177713394, -0.04253680258989334, 0.014759281650185585, -0.0022208169102668762, 0.021050771698355675, 0.0030418760143220425, -0.030052747577428818, -0.011752028949558735, 0.01707407459616661, 0.027737952768802643, -0.03177400305867195, 0.007933608256280422, 0.03304021432995796, -0.03383159637451172, -0.03901515156030655, 0.051954254508018494, -0.049857091158628464, 0.04040007293224335, -0.024710915982723236, -0.010075286962091923, 0.013502961955964565, 0.06746535003185272, 0.04922398552298546, 0.0009261647355742753, -0.015926571562886238, 0.013948114588856697, -0.0025423159822821617, -0.037432387471199036, 0.026649802923202515, 0.01335457805544138, -0.03606725111603737, 0.009392719715833664, -0.02364254929125309, -0.021723447367548943, 0.025996912270784378, 0.0642998218536377, -0.07074958831071854, -0.01778632029891014, -0.06255877763032913, -0.04103317856788635, 0.027025708928704262, 0.016401400789618492, -0.0897427648305893, -0.08507360517978668, -0.06932509690523148, -0.01594635471701622, -0.007241148967295885, 0.007795116864144802, 0.0014813689049333334, -0.07031432539224625, -0.03893601521849632, -0.021169479936361313, 0.06885027140378952, -0.0008958696271292865, -0.055080216377973557, 0.007844578474760056, 0.05246865376830101, -0.057296086102724075, 0.0026536041405051947, 0.010466032661497593, 0.041745420545339584, -0.002139205578714609, -0.05143985524773598, -0.027480753138661385, 0.003825839376077056, 0.011168383993208408, 0.04154757782816887, 0.030309945344924927, -0.06829629838466644, -0.02894481085240841, -0.05246865376830101, 0.054051417857408524, 0.004604856483638287, 0.06109471991658211, -0.02069465070962906, 0.021921291947364807, 0.005885906517505646, 0.027737952768802643, 0.06596172600984573, 0.024236086755990982, 0.0990019366145134, -0.004671629052609205, -0.01392833050340414, -0.11142664402723312, -0.01845899410545826, 0.027619246393442154, 0.022178491577506065, 0.027460969984531403, -0.0018721140222623944, 0.025838635861873627, -0.06251920759677887, 0.007898985408246517, -0.008922836743295193, -0.031121112406253815, 0.02520553022623062, 0.0869729295372963, 0.018637055531144142, -0.004147338215261698, 0.01868651621043682, 0.038520537316799164, -0.002348179928958416, 0.03313913941383362, 0.006716858129948378, -0.043723877519369125, 0.06797974556684494, -0.027203770354390144, -0.03341612219810486, 0.00012002117728115991, -0.026768509298563004, -0.04411957040429115, -0.018330395221710205, -0.026392603293061256, 0.0020786153618246317, -0.0009533684933558106, 0.03163551166653633, 0.007839632220566273, -0.029835116118192673, 0.009071220643818378, 0.04103317856788635, 0.015995817258954048, 0.012305996380746365, -0.01286985632032156, -0.051281578838825226, 0.055040646344423294, -0.013562316074967384, 0.0401824414730072, 0.018033625558018684, 0.00011012890172423795, -0.04772035777568817, 0.019962621852755547, 0.00865079928189516, 0.03765001893043518, 0.00527753122150898, 0.012118043377995491, 0.053101759403944016, 0.048472173511981964, 0.012780825607478619, 0.012948994524776936, 0.00785941630601883, 0.006751480977982283, -0.009921956807374954, -0.03610682114958763, -0.010723231360316277, -0.034069012850522995, -0.053932711482048035, 0.016371723264455795, 0.01405693031847477, -0.02587820403277874, 0.017380736768245697, -0.03410858288407326, 0.007216418161988258, 0.033495258539915085, -0.027065278962254524, -0.011158491484820843, -0.024255869910120964, -0.006988896057009697, -0.025680359452962875, 0.031556371599435806, 0.011860843747854233, 0.00525280088186264, 0.055594611912965775, -0.01496701966971159, 0.11593752354383469, -0.02211913838982582, -0.008314461447298527, 0.000657218333799392, 0.01390854548662901, -0.03232797235250473, 0.04158714413642883, 0.0515189953148365, 0.02571992762386799, -0.04222024977207184, 0.0033559559378772974, 0.039371274411678314, -0.026531094685196877, -0.027104847133159637, 0.024987898766994476, -0.057573068886995316, 0.028074290603399277, 0.012286211363971233, 0.0408749021589756, 0.033356767147779465, -0.0161540936678648, 0.0094471275806427, 0.06659483164548874, -0.015748510137200356, 0.10786542296409607, -0.007241148967295885, -0.05903712660074234, -0.1350889801979065, 0.029142657294869423, -0.0570586696267128, -0.0037120780907571316, 0.027243338525295258, -0.038283124566078186, 0.04435698315501213, -0.05021321401000023, -0.05456581711769104, 0.0010640383698046207, 0.016668491065502167, 0.01730159856379032, -0.00018130693933926523, 0.015600125305354595, 0.052666500210762024, -0.04926355555653572, -0.005772145465016365, -0.01845899410545826, -0.02209935337305069, 0.03873816877603531, -0.05302261933684349, -0.017618151381611824, 0.04815562069416046, 0.05662341043353081, -0.02184215374290943, 0.03774894028902054, 0.0037739048711955547, -0.06319188326597214, 0.0200912207365036, 0.05037149041891098, 0.025977127254009247, -0.005440753884613514, -0.0021416787058115005, 0.05788962170481682, 0.0031655295751988888, -0.0029924146365374327, -0.05595073476433754, 0.012404919601976871, 0.007933608256280422, 0.036284882575273514, -0.0023803298827260733, 0.010881507769227028, 0.020457234233617783, -0.0786634087562561, 0.07961306720972061, 0.03187292441725731, -0.07019562274217606, 0.006469551008194685, 0.0029726300854235888, 0.03998459503054619, 0.09631124138832092, -0.022613752633333206, -0.0025769390631467104, -0.042180683463811874, -0.03203120455145836, 0.06821716576814651, 0.0264519564807415, 0.011603644117712975, -0.0032149909529834986, 0.0439612939953804, 0.04855130985379219, 0.018577702343463898, -0.05033192038536072, -0.004411956761032343, 0.0185480248183012, -0.012612656690180302, -0.0004584453417919576, -0.04661242291331291, 0.05064847320318222, 0.0038382045459002256, 0.006558581721037626, -0.013413932174444199, 0.017944596707820892, 0.011554183438420296, -0.012761041522026062, -0.009476804174482822, 0.033772245049476624, 0.03800613805651665, 0.032802801579236984 ]
372
mohawk.receiver
__init__
null
def __init__(self, credentials_map, request_header, url, method, content=EmptyValue, content_type=EmptyValue, seen_nonce=None, localtime_offset_in_seconds=0, accept_untrusted_content=False, timestamp_skew_in_seconds=default_ts_skew_in_seconds, **auth_kw): self.response_header = None # make into property that can raise exc? self.credentials_map = credentials_map self.seen_nonce = seen_nonce log.debug('accepting request {header}'.format(header=request_header)) if not request_header: raise MissingAuthorization() parsed_header = parse_authorization_header(request_header) try: credentials = self.credentials_map(parsed_header['id']) except LookupError: etype, val, tb = sys.exc_info() log.debug('Catching {etype}: {val}'.format(etype=etype, val=val)) raise CredentialsLookupError( 'Could not find credentials for ID {0}' .format(parsed_header['id'])) validate_credentials(credentials) resource = Resource(url=url, method=method, ext=parsed_header.get('ext', None), app=parsed_header.get('app', None), dlg=parsed_header.get('dlg', None), credentials=credentials, nonce=parsed_header['nonce'], seen_nonce=self.seen_nonce, content=content, timestamp=parsed_header['ts'], content_type=content_type) self._authorize( 'header', parsed_header, resource, timestamp_skew_in_seconds=timestamp_skew_in_seconds, localtime_offset_in_seconds=localtime_offset_in_seconds, accept_untrusted_content=accept_untrusted_content, **auth_kw) # Now that we verified an incoming request, we can re-use some of its # properties to build our response header. self.parsed_header = parsed_header self.resource = resource
(self, credentials_map, request_header, url, method, content=EmptyValue, content_type=EmptyValue, seen_nonce=None, localtime_offset_in_seconds=0, accept_untrusted_content=False, timestamp_skew_in_seconds=60, **auth_kw)
[ -0.029101397842168808, -0.039527490735054016, -0.058661088347435, 0.014932607300579548, 0.013347689062356949, -0.0074806250631809235, 0.007146455813199282, 0.06771230697631836, -0.06954547017812729, 0.0011904792627319694, 0.07130224257707596, 0.11655835807323456, 0.017739631235599518, 0.005995957646518946, -0.021425046026706696, 0.014655724167823792, 0.04960986599326134, 0.04766213148832321, -0.017978325486183167, -0.1287030428647995, 0.022513482719659805, -0.014378841035068035, 0.014101956970989704, 0.05793546140193939, -0.009757752530276775, 0.012421561405062675, -0.06904898583889008, -0.03616669774055481, 0.03414258733391762, -0.019954700022935867, -0.023601921275258064, 0.030247122049331665, 0.017835108563303947, 0.07367007434368134, 0.025721510872244835, -0.029807928949594498, 0.025205936282873154, 0.012622063048183918, -0.03905010595917702, 0.005618823226541281, -0.06996556371450424, -0.013748692348599434, 0.006917310878634453, -0.04682193696498871, 0.02234162576496601, 0.05743898078799248, 0.005637918598949909, 0.06519171595573425, -0.026714472100138664, -0.03748428076505661, -0.021425046026706696, 0.01060749776661396, 0.017806466668844223, -0.01584918610751629, -0.002193584805354476, 0.03811442852020264, 0.03311143442988396, 0.04086416959762573, -0.02913958951830864, 0.025282317772507668, -0.041933510452508926, 0.06828517466783524, -0.03106822445988655, 0.007065300364047289, -0.01543863583356142, -0.011724579147994518, -0.048731476068496704, -0.03433353826403618, 0.0008885330753400922, 0.03381796553730965, 0.07008013874292374, 0.02333458513021469, -0.015858734026551247, -0.0010395061690360308, 0.09761571139097214, -0.03269133344292641, -0.050144534558057785, -0.01720496080815792, -0.002348734997212887, -0.020298415794968605, 0.021711476147174835, -0.06217464059591293, -0.0058527421206235886, -0.033741582185029984, 0.018541639670729637, -0.015075823292136192, 0.03582298010587692, -0.07000375539064407, -0.008435395546257496, 0.05453648045659065, -0.041322458535432816, -0.014827582985162735, -0.06473342329263687, -0.03677775338292122, 0.0014798939228057861, 0.012975328601896763, 0.009891420602798462, -0.01348135620355606, -0.012383370660245419, 0.015534112229943275, -0.027745625004172325, 0.012249702587723732, -0.02182604931294918, 0.03133556246757507, -0.005298974923789501, -0.02249438874423504, 0.02134866453707218, -0.015868281945586205, -0.023220013827085495, -0.017376819625496864, 0.013166282325983047, -0.01773008517920971, -0.009509512223303318, 0.061601780354976654, -0.02602703869342804, -0.02083308808505535, -0.007299218792468309, -0.04136065021157265, -0.019028572365641594, -0.02050846628844738, 0.003504006890580058, -0.01079845242202282, 0.031469229608774185, 0.02875768207013607, 0.009552476927638054, 0.02400292456150055, -0.03828628733754158, -0.06259474158287048, -0.03087727166712284, 0.0009135958389379084, -0.016613002866506577, 0.00817760732024908, -0.006678618025034666, 0.025874275714159012, 0.006692939903587103, -0.0271154772490263, -0.05125207081437111, 0.009122829884290695, -0.05125207081437111, 0.08623485267162323, 0.0391455814242363, 0.0550711490213871, -0.017901942133903503, -0.00418428098782897, -0.025950657203793526, -0.02111951820552349, 0.01616426184773445, -0.03607122227549553, 0.0017066518776118755, -0.012669801712036133, 0.0036472224164754152, -0.04899881035089493, -0.001901186304166913, 0.023640112951397896, 0.015562755987048149, -0.04239179939031601, 0.003179385093972087, -0.03251947462558746, 0.011495434679090977, -0.024308452382683754, 0.02776472084224224, -0.01655571721494198, 0.019649172201752663, -0.03446720913052559, 0.0058527421206235886, -0.010617045685648918, 0.027401907369494438, -0.046936508268117905, -0.003045717254281044, -0.032557666301727295, -0.05682792887091637, -0.012268798425793648, -0.03843905031681061, -0.008110773749649525, 0.004886037204414606, -0.0004758933209814131, 0.009309010580182076, -0.0337606780230999, -0.041551604866981506, -0.027459193021059036, 0.023410968482494354, -0.043117426335811615, -0.015448183752596378, 0.02400292456150055, 0.002768833888694644, 0.022704437375068665, 0.023544635623693466, -0.008583384566009045, 0.03190842270851135, 0.05129025876522064, -0.052168648689985275, 0.02946421131491661, -0.006468568928539753, -0.004220084752887487, -0.004141316283494234, -0.03841995820403099, -0.04728022590279579, -0.011094430461525917, 0.07836754620075226, 0.01721450872719288, -0.0470510795712471, 0.009967802092432976, 0.00265187444165349, -0.007466303650289774, 0.03442901745438576, 0.04949529096484184, 0.013643667101860046, -0.02913958951830864, -0.04758575186133385, 0.023258203640580177, -0.011237646453082561, -0.018990380689501762, -0.02512955479323864, 0.005609275307506323, -0.038018953055143356, 0.014646176248788834, 0.04521792009472847, -0.03712146729230881, 0.03853452950716019, -0.007117812521755695, 0.07275349646806717, 0.11976638436317444, -0.018742140382528305, -0.044301342219114304, 0.04013854265213013, 0.013290402479469776, 0.01758686825633049, -0.03752247244119644, -0.06649020314216614, 0.0033154399134218693, 0.002145846141502261, -0.010722070001065731, 0.014789392240345478, 0.017386367544531822, -0.04216265678405762, -0.011333123780786991, 0.051366642117500305, 0.012240155600011349, -0.06114349141716957, -0.006793190725147724, 0.022742629051208496, 0.039260152727365494, 0.02696271240711212, -0.0029597878456115723, -0.05667516589164734, -0.027000904083251953, -0.09417854249477386, 0.06526809930801392, -0.021425046026706696, -0.010559759102761745, -0.005298974923789501, 0.0002273546706419438, -0.05552944168448448, -0.09211623668670654, -0.014942155219614506, -0.013700953684747219, 0.00037892445106990635, -0.05270332098007202, 0.03013255074620247, -0.02419387921690941, 0.013424070551991463, -0.0051748547703027725, 0.025855179876089096, 0.0053276182152330875, 0.0020623039454221725, -0.03551745414733887, 0.012459752149879932, 0.00728489737957716, 0.014378841035068035, -0.016278833150863647, 0.050526443868875504, 0.030800890177488327, -0.007461529690772295, 0.027421003207564354, -0.009643180295825005, -0.007356504909694195, 0.028413964435458183, -0.04086416959762573, -0.02243710123002529, 0.015266777016222477, 0.06461885571479797, -0.005394452251493931, 0.029865214601159096, 0.049762628972530365, 0.008234893903136253, 0.02490040846168995, -0.03103003464639187, 0.08195748180150986, -0.026848141103982925, -0.012622063048183918, -0.003231897484511137, 0.046745553612709045, 0.07069119065999985, -0.046554598957300186, 0.026599900797009468, -0.008989162743091583, -0.03864910081028938, 0.010970310308039188, -0.01923862099647522, 0.03097274899482727, -0.005489929113537073, 0.005881384946405888, 0.030342599377036095, -0.04460686817765236, 0.04269732907414436, -0.055567629635334015, 0.017987871542572975, 0.02131047286093235, -0.022513482719659805, 0.007251480594277382, 0.08379063755273819, 0.0701565220952034, -0.012364275753498077, -0.052168648689985275, -0.02744009904563427, 0.05533848702907562, 0.02484312281012535, 0.004415812436491251, 0.021272283047437668, 0.03181294724345207, -0.0019023797940462828, 0.006998466327786446, -0.011581364087760448, -0.016765765845775604, 0.030438076704740524, -0.013519546948373318, -0.01575371064245701, 0.000359232333721593, -0.0328059084713459, 0.012030106037855148, -0.07615248113870621, 0.05048825219273567, -0.04827318713068962, -0.02570241689682007, 0.0005170677904970944, 0.0009195631137117743, -0.04200989380478859, -0.02003108151257038, 0.00044486328260973096, -0.03372248634696007, -0.040100350975990295, -0.04323199763894081, -0.0293305441737175, 0.02894863486289978, -0.0524359829723835, -0.07607609778642654, 0.01454115193337202, 0.005657013971358538, 0.01664164662361145, -0.07676353305578232, -0.04063502326607704, 0.0016410114476457238, 0.04586716368794441, 0.038973722606897354, 0.0658409595489502, 0.00857861153781414, -0.016565265133976936, -0.06049424409866333, -0.01471300981938839, 0.011008501052856445, 0.08241577446460724, -0.0011457243235781789, -0.021367758512496948, 0.023029059171676636, -0.03756066411733627, -0.04640183597803116, 0.018312493339180946, -0.032844096422195435, -0.01381552591919899, -0.055185724049806595, -0.004628248978406191, -0.050564635545015335, -0.041513413190841675, 0.013529094867408276, 0.018980832770466805, -0.020355703309178352, -0.031755659729242325, -0.007514042314141989, -0.060226909816265106, 0.004060160834342241, 0.03834357485175133, 0.05946309491991997, -0.01015875581651926, 0.007008013781160116, -0.04437772184610367, -0.05182493105530739, 0.018407970666885376, 0.0006916117272339761, 0.027421003207564354, 0.035097356885671616, 0.034906402230262756, -0.017185864970088005, 0.03630036488175392, 0.03372248634696007, 0.02390744723379612, 0.007704996038228273, -0.0462108813226223, 0.0011910758912563324, 0.011829604394733906, 0.006158268544822931, 0.06839974224567413, 0.02314363233745098, -0.0010037022875621915, 0.017033101990818977, 0.0038930759765207767, 0.006015053018927574, 0.036281272768974304, -0.003888302017003298, 0.01480848714709282, -0.004649731330573559, -0.012545681558549404, -0.07531227916479111, 0.02682904526591301, -0.017577320337295532, 0.0051748547703027725, -0.02047027461230755, -0.032977767288684845, 0.0271154772490263, 0.011867795139551163, -0.00727057596668601, 0.035708408802747726, 0.004704630468040705, 0.00869795773178339, -0.004036291502416134, 0.008717052638530731, 0.002997978823259473, -0.02763105183839798, -0.014884868636727333, 0.01402557548135519, -0.0676359310746193, 0.005995957646518946, 0.05041187256574631, -0.024537596851587296, -0.046707361936569214, 0.033302389085292816, 0.015830092132091522, -0.06794145703315735, 0.04258275404572487, 0.006158268544822931, 0.011753221973776817, 0.007089169230312109, -0.001639817957766354, -0.008869815617799759, -0.0002789719437714666, 0.029922500252723694, 0.00803916621953249, -0.02574060671031475, 0.06759773939847946, 0.04040588065981865, -0.014283363707363605, 0.027879292145371437, 0.02894863486289978, -0.022284338250756264, -0.01291804201900959, -0.06671934574842453, -0.0006116497097536922, 0.051557596772909164, 0.05633144825696945, 0.0036543833557516336, 0.00226996629498899, 0.06110529974102974, -0.03473454341292381, 0.004172346089035273, -0.05365809053182602, -0.04223903641104698, 0.07042385637760162, 0.027783814817667007, 0.033493343740701675, -0.0032820228952914476, -0.028776776045560837, 0.0008216991554945707, 0.01763460785150528, -0.032595857977867126, 0.022876296192407608, 0.006358770187944174, -0.014197434298694134, 0.09731018543243408, 0.03332148492336273, -0.05671335384249687, 0.000745317549444735, 0.06030329316854477, 0.018847165629267693, 0.02554965391755104, -0.009776847437024117, -0.005986409727483988, -0.03116370178759098, -0.006320579443126917, -0.027230048552155495, 0.0789022147655487, 0.017090387642383575, 0.023487349972128868, 0.05824098736047745, -0.0426209457218647, 0.011963271535933018, -0.02824210561811924, 0.021806953474879265, -0.004501741845160723, 0.011142169125378132, 0.007356504909694195, -0.04067321494221687, 0.0005045364378020167, -0.03874458000063896, 0.019448671489953995, -0.004167572129517794, 0.005494703073054552, 0.03427625447511673, -0.04338476061820984, -0.01654616929590702, 0.05847013369202614, 0.00419621542096138, 0.008540419861674309, 0.004454003646969795, 0.0019167013233527541, -0.013147186487913132, -0.015047179535031319, 0.026905426755547523, -0.08096452057361603, 0.050946541130542755, -0.029311448335647583, 0.024575786665081978, 0.03498278185725212, 0.06805602461099625, 0.062021877616643906, -0.02268534153699875, -0.03668227419257164, 0.0037999858614057302, 0.012937137857079506, -0.019267264753580093, 0.03469635173678398, 0.02818481996655464, -0.02589336968958378, -0.016794409602880478, -0.03309233859181404, -0.021138614043593407, 0.05006815493106842, 0.06469523161649704, -0.0693163201212883, -0.05171035975217819, -0.048540521413087845, -0.017548678442835808, 0.03311143442988396, 0.025339603424072266, -0.02442302368581295, -0.019859222695231438, -0.02810843661427498, -0.0355556458234787, -0.015992403030395508, -0.009824586100876331, -0.01937229000031948, -0.04922795668244362, -0.02358282543718815, -0.02314363233745098, 0.016183355823159218, -0.013280854560434818, -0.039527490735054016, -0.0030528779607266188, 0.05220684036612511, -0.05614049360156059, -0.002050369279459119, 0.013891907408833504, 0.042315419763326645, 0.019916508346796036, -0.046516407281160355, 0.001895219087600708, -0.053199801594018936, -0.004766690544784069, 0.033970728516578674, -0.001799741992726922, -0.034677255898714066, -0.026752663776278496, -0.011103978380560875, 0.00242869695648551, -0.03248128667473793, 0.07420475035905838, -0.017099935561418533, 0.03712146729230881, 0.01471300981938839, 0.04624907299876213, 0.08317958563566208, 0.03334057703614235, 0.0630912184715271, 0.003530263202264905, -0.005657013971358538, -0.1339733749628067, -0.03786619007587433, 0.02503407746553421, 0.0025945883244276047, 0.009017805568873882, 0.049151573330163956, -0.011084883473813534, -0.04582897573709488, -0.046325456351041794, -0.037656139582395554, -0.01697581633925438, -0.022742629051208496, 0.045714400708675385, 0.006234650034457445, -0.0324430949985981, -0.03895462676882744, 0.034104395657777786, -0.009490416385233402, 0.045332495123147964, -0.011142169125378132, -0.0021219770424067974, 0.02744009904563427, -0.023697398602962494, -0.04544706642627716, 0.00841629970818758, -0.052130457013845444, -0.004382395651191473, 0.02843305841088295, -0.016851695254445076, 0.009017805568873882, -0.0034753638319671154, 0.041513413190841675, 0.01105623971670866, -0.09631722420454025, 0.048960622400045395, 0.03103003464639187, -0.01492305938154459, 0.004776238463819027, -0.04422495886683464, -0.04659279063344002, 0.06072339043021202, -0.05503296107053757, 0.04246818274259567, 0.04907519370317459, 0.0034156907349824905, -0.03620488941669464, 0.012793921865522861, 0.029063208028674126, -0.0004642570565920323, -0.015123561024665833, 0.02763105183839798, 0.020680325105786324, 0.06992737948894501, 0.05793546140193939, 0.014321554452180862, 0.041131503880023956, 0.015992403030395508, 0.018703950569033623, -0.040100350975990295, 0.01957279071211815, -0.0008026037830859423, -0.041284266859292984, 0.049151573330163956, -0.000702949648257345, -0.022551674395799637, 0.05946309491991997, -0.03744608908891678, -0.0009840101702138782, 0.0612962543964386, -0.0008085711160674691, -0.016756217926740646, -0.016087880358099937, -0.04403400421142578, -0.04911338537931442, 0.055376678705215454, 0.040482260286808014, 0.010177851654589176, 0.04086416959762573, 0.01249794289469719, 0.11357947438955307, -0.012956232763826847, -0.021845145151019096, -0.0011361766373738647, 0.007638162467628717, -0.031469229608774185, 0.027363715693354607, 0.054803814738988876, 0.05087016150355339, -0.03693051636219025, 0.019439123570919037, 0.044339533895254135, 0.01225925050675869, -0.020489370450377464, 0.032557666301727295, -0.08020070195198059, 0.007308766711503267, 0.024957695975899696, -0.004821590147912502, 0.020202940329909325, -0.013586381450295448, 0.009624084457755089, 0.014035123400390148, -0.021176805719733238, 0.047929469496011734, -0.0043298834934830666, -0.052550558000802994, -0.08944287896156311, 0.03994758799672127, -0.06030329316854477, -0.01569642312824726, 0.009122829884290695, -0.07535047084093094, 0.07030928134918213, -0.05373447388410568, -0.0905122235417366, 0.04422495886683464, 0.05896661430597305, 0.004649731330573559, -0.0057047526352107525, -0.007638162467628717, 0.04548525810241699, -0.051557596772909164, -0.027650147676467896, 0.014636628329753876, -0.0010997760109603405, 0.030953653156757355, -0.02635166049003601, -0.005991183687001467, 0.03276771679520607, 0.044530484825372696, -0.02470945566892624, 0.00959066767245531, 0.04227722808718681, -0.007776604034006596, -0.0029741094913333654, 0.030017977580428123, -0.03922196477651596, -0.006005505099892616, -0.02230343408882618, 0.0070032402873039246, -0.0010406996589154005, 0.021520521491765976, -0.055376678705215454, -0.026237087324261665, 0.020336607471108437, 0.05522391200065613, -0.03461997210979462, -0.0038620459381490946, 0.030056169256567955, -0.07477761059999466, 0.05006815493106842, -0.013376331888139248, -0.05724802613258362, 0.010473829694092274, 0.02551146224141121, 0.04285009205341339, 0.09394939988851547, -0.051137495785951614, 0.01294668484479189, -0.028356676921248436, 0.01112307421863079, -0.025855179876089096, 0.021654190495610237, 0.029731547459959984, -0.03811442852020264, 0.03013255074620247, 0.07122586667537689, -0.002890567062422633, -0.02904411219060421, 0.0032342844642698765, 0.018035611137747765, -0.016765765845775604, -0.02320091798901558, -0.012793921865522861, 0.02818481996655464, 0.03400891646742821, 0.016250191256403923, -0.03549835830926895, -0.005208272021263838, -0.0005937477690167725, -0.05125207081437111, 0.00507937790825963, 0.08042985200881958, 0.025244126096367836, 0.008444943465292454 ]
373
mohawk.base
_authorize
null
def _authorize(self, mac_type, parsed_header, resource, their_timestamp=None, timestamp_skew_in_seconds=default_ts_skew_in_seconds, localtime_offset_in_seconds=0, accept_untrusted_content=False): now = utc_now(offset_in_seconds=localtime_offset_in_seconds) their_hash = parsed_header.get('hash', '') their_mac = parsed_header.get('mac', '') mac = calculate_mac(mac_type, resource, their_hash) if not strings_match(mac, their_mac): raise MacMismatch('MACs do not match; ours: {ours}; ' 'theirs: {theirs}' .format(ours=mac, theirs=their_mac)) check_hash = True if 'hash' not in parsed_header: # The request did not hash its content. if not resource.content and not resource.content_type: # It is acceptable to not receive a hash if there is no content # to hash. log.debug('NOT calculating/verifying payload hash ' '(no hash in header, request body is empty)') check_hash = False elif accept_untrusted_content: # Allow the request, even if it has content. Missing content or # content_type values will be coerced to the empty string for # hashing purposes. log.debug('NOT calculating/verifying payload hash ' '(no hash in header, accept_untrusted_content=True)') check_hash = False if check_hash: if not their_hash: log.info('request unexpectedly did not hash its content') content_hash = resource.gen_content_hash() if not strings_match(content_hash, their_hash): # The hash declared in the header is incorrect. # Content could have been tampered with. log.debug('mismatched content: {content}' .format(content=repr(resource.content))) log.debug('mismatched content-type: {typ}' .format(typ=repr(resource.content_type))) raise MisComputedContentHash( 'Our hash {ours} ({algo}) did not ' 'match theirs {theirs}' .format(ours=content_hash, theirs=their_hash, algo=resource.credentials['algorithm'])) if resource.seen_nonce: if resource.seen_nonce(resource.credentials['id'], parsed_header['nonce'], parsed_header['ts']): raise AlreadyProcessed('Nonce {nonce} with timestamp {ts} ' 'has already been processed for {id}' .format(nonce=parsed_header['nonce'], ts=parsed_header['ts'], id=resource.credentials['id'])) else: log.warning('seen_nonce was None; not checking nonce. ' 'You may be vulnerable to replay attacks') their_ts = int(their_timestamp or parsed_header['ts']) if math.fabs(their_ts - now) > timestamp_skew_in_seconds: message = ('token with UTC timestamp {ts} has expired; ' 'it was compared to {now}' .format(ts=their_ts, now=now)) tsm = calculate_ts_mac(now, resource.credentials) if isinstance(tsm, six.binary_type): tsm = tsm.decode('ascii') www_authenticate = ('Hawk ts="{ts}", tsm="{tsm}", error="{error}"' .format(ts=now, tsm=tsm, error=message)) raise TokenExpired(message, localtime_in_seconds=now, www_authenticate=www_authenticate) log.debug('authorized OK')
(self, mac_type, parsed_header, resource, their_timestamp=None, timestamp_skew_in_seconds=60, localtime_offset_in_seconds=0, accept_untrusted_content=False)
[ 0.006975546479225159, 0.00783290434628725, -0.05065007880330086, 0.026826683431863785, 0.021063614636659622, -0.07289065420627594, -0.011911696754395962, 0.0666811540722847, -0.050487738102674484, 0.026725221425294876, 0.05142119154334068, 0.054424483329057693, 0.047484446316957474, -0.007305299397557974, -0.028165988624095917, -0.003812453243881464, 0.017867544665932655, 0.035430703312158585, -0.009172209538519382, -0.09561825543642044, 0.01458016037940979, -0.05271991342306137, -0.04233015328645706, 0.05385629087686539, -0.0006249455618672073, 0.02222028560936451, -0.019673578441143036, -0.021002735942602158, 0.007335738278925419, 0.014316357672214508, 0.013119100593030453, -0.0005060441908426583, 0.0375005379319191, 0.02475684881210327, 0.004000158980488777, -0.028653008863329887, 0.022139117121696472, -0.03218390420079231, 0.01070429291576147, 0.0033634817227721214, -0.04793088138103485, -0.0016348144272342324, 0.05702192336320877, -0.02187531441450119, -0.05690016597509384, 0.018587928265333176, -0.009288891218602657, 0.09017986804246902, -0.021347709000110626, -0.05438389629125595, -0.02976909652352333, -0.035085730254650116, 0.013788753189146519, 0.00003618564733187668, 0.04220839962363243, -0.022179700434207916, 0.00932440347969532, 0.02414807304739952, 0.014326504431664944, 0.015716539695858955, 0.03204185515642166, 0.05207055062055588, -0.019653284922242165, 0.031372204422950745, 0.0348828062415123, -0.019419921562075615, 0.005661607254296541, -0.0027699260972440243, -0.004266497679054737, 0.019866356626152992, 0.048458486795425415, 0.01685292087495327, 0.010196981020271778, 0.011171020567417145, 0.05746835842728615, -0.07122667133808136, -0.05166470259428024, -0.008106852881610394, -0.054546236991882324, 0.008081487379968166, 0.0884752944111824, -0.03230565786361694, 0.00597106758505106, -0.02163180336356163, 0.012561056762933731, 0.0290385652333498, 0.03520748391747475, -0.046550992876291275, -0.08246871829032898, 0.009212794713675976, 0.009243233129382133, -0.009400499984622002, -0.03766287863254547, -0.004276643972843885, 0.034578416496515274, 0.007751734461635351, 0.004286790266633034, -0.02057659439742565, 0.014032263308763504, -0.02236233465373516, -0.023965440690517426, 0.04983837902545929, -0.04030090197920799, 0.04159962385892868, 0.03859633207321167, 0.04504934698343277, -0.011434823274612427, -0.016913797706365585, 0.0017895447090268135, -0.011302921921014786, -0.0181414932012558, -0.06903508305549622, -0.06550418585538864, 0.0000652372109470889, 0.02773984521627426, -0.05389687791466713, 0.021327415481209755, 0.018851730972528458, -0.06241972744464874, 0.006640720181167126, 0.029363246634602547, -0.04411589354276657, 0.08985518664121628, -0.022179700434207916, -0.01184067316353321, 0.014488844200968742, -0.01602092757821083, -0.05016305670142174, 0.00044643497676588595, 0.01470191590487957, -0.0694003477692604, 0.03070254996418953, 0.01826324872672558, 0.02615703083574772, -0.06591003388166428, -0.037236735224723816, 0.01464103814214468, 0.032691214233636856, -0.02116507664322853, -0.036506205797195435, 0.03810931369662285, 0.04371004179120064, -0.012520471587777138, -0.04508993402123451, -0.0418025478720665, 0.007746661547571421, -0.01925758086144924, -0.03360437974333763, 0.03835282474756241, -0.03204185515642166, 0.03969212621450424, -0.032204195857048035, 0.012246523052453995, 0.03346233069896698, 0.012926321476697922, -0.018922755494713783, -0.027273118495941162, -0.0375005379319191, -0.03396964445710182, 0.0159904882311821, -0.00812714546918869, -0.0390021838247776, -0.0019468115642666817, -0.037033811211586, 0.025304745882749557, -0.003891086671501398, -0.020515715703368187, 0.020637471228837967, -0.03167659044265747, -0.04862082749605179, -0.03467988222837448, 0.02307257056236267, -0.04529285803437233, 0.002792755141854286, 0.02666434273123741, -0.0120638906955719, -0.0055094133131206036, -0.03737878426909447, -0.01887202449142933, -0.058604735881090164, -0.004294400103390217, -0.04468408226966858, -0.022971108555793762, -0.02605556882917881, -0.028044233098626137, 0.03346233069896698, 0.0319809764623642, 0.013595974072813988, 0.055642031133174896, 0.06205446273088455, -0.035430703312158585, 0.044399987906217575, -0.012743689119815826, -0.004504934884607792, -0.014367089606821537, -0.060187552124261856, -0.04293892905116081, 0.021794144064188004, 0.0009176014573313296, -0.029363246634602547, -0.010440491139888763, 0.0169746745377779, -0.01960255391895771, 0.0007742856396362185, 0.02234204113483429, -0.019318459555506706, -0.01615282893180847, 0.0420866422355175, -0.0891246572136879, 0.01706599071621895, -0.031027231365442276, -0.06448955833911896, 0.00830977875739336, 0.06862923502922058, -0.028896518051624298, 0.002334905555471778, 0.03344203904271126, -0.011678333394229412, 0.0065443310886621475, -0.04866141080856323, 0.09310198575258255, 0.0884752944111824, -0.055763788521289825, -0.04310126602649689, 0.0691162496805191, -0.002427490195259452, -0.015746979042887688, 0.0290385652333498, -0.05483033135533333, -0.04399413615465164, 0.04419706389307976, -0.017258770763874054, 0.005296342074871063, 0.01852705143392086, -0.07983069121837616, -0.008700408972799778, 0.06351552158594131, 0.03047933429479599, -0.026116445660591125, 0.002143395133316517, 0.01099853403866291, -0.006371844559907913, 0.04671333357691765, -0.04663216322660446, -0.026441125199198723, 0.006574769504368305, -0.01838500425219536, 0.057549528777599335, -0.04143728315830231, -0.04281717166304588, -0.06838572025299072, 0.013098808005452156, -0.03407110646367073, -0.0872577428817749, -0.017522573471069336, 0.0120638906955719, -0.01806032471358776, -0.01732979342341423, 0.07329650968313217, -0.009806349873542786, 0.026096154004335403, 0.03323911502957344, 0.039976224303245544, -0.009014942683279514, -0.02126653864979744, -0.017766082659363747, -0.009775911457836628, 0.05722484737634659, -0.0031935321167111397, -0.02976909652352333, -0.0673305094242096, -0.01600063592195511, -0.0191256795078516, -0.018019739538431168, 0.015077326446771622, -0.025527963414788246, 0.024066904559731483, 0.03192010149359703, 0.000028100355848437175, 0.029545878991484642, 0.033644963055849075, -0.013413341715931892, 0.03295501694083214, 0.019095242023468018, -0.05487091839313507, 0.03873838111758232, 0.002421148819848895, 0.01745154894888401, -0.002416075672954321, -0.008299631997942924, -0.018374858424067497, -0.005920336581766605, 0.06213563308119774, -0.053937461227178574, 0.038535457104444504, 0.03139249607920647, -0.034476954489946365, -0.024290122091770172, 0.024574216455221176, 0.03323911502957344, -0.009217867627739906, 0.07796378433704376, 0.04480583593249321, -0.09561825543642044, 0.04460291191935539, -0.0058442396111786366, 0.042614247649908066, 0.027942771092057228, 0.0092584528028965, 0.0058036549016833305, 0.059457022696733475, 0.04172137752175331, 0.011434823274612427, -0.08149467408657074, 0.02437129057943821, 0.049635451287031174, 0.05271991342306137, 0.05016305670142174, 0.020272206515073776, 0.05186762660741806, 0.04078792408108711, 0.01924743503332138, -0.013088662177324295, 0.019663430750370026, 0.03145337477326393, -0.08096706867218018, -0.02187531441450119, -0.03421315178275108, -0.07613745331764221, 0.03492338955402374, -0.053369272500276566, 0.05673782527446747, -0.023965440690517426, -0.01627458445727825, -0.00430708285421133, 0.0193590447306633, -0.05852356553077698, 0.006387064233422279, -0.017126869410276413, -0.03536982461810112, -0.046063970774412155, -0.03545099496841431, 0.0743517130613327, 0.01972430944442749, -0.018587928265333176, -0.07402703911066055, -0.030540211126208305, 0.017238477244973183, -0.00380738009698689, -0.05243581905961037, -0.06956268846988678, 0.042248982936143875, 0.08750125765800476, 0.08498498797416687, 0.07694915682077408, -0.0015054497634992003, -0.004532836843281984, -0.02690785378217697, -0.012966906651854515, 0.017522573471069336, 0.08007419854402542, 0.03536982461810112, 0.01494542509317398, 0.006843645125627518, -0.059091757982969284, -0.0325491689145565, 0.0022258334793150425, 0.0153614217415452, 0.010501367971301079, -0.0540592186152935, -0.03390876576304436, -0.0307228434830904, -0.04724093899130821, -0.010897072032094002, 0.0540592186152935, 0.023863978683948517, -0.02282906137406826, 0.0064124297350645065, -0.0669652447104454, -0.006706670857965946, 0.07755792886018753, 0.0724848061800003, -0.011384092271327972, -0.024188658222556114, -0.009775911457836628, -0.041072018444538116, -0.053937461227178574, -0.015239667147397995, 0.004438984207808971, 0.028734179213643074, 0.009674448519945145, -0.026806391775608063, 0.06919742375612259, -0.015036741271615028, 0.00380738009698689, 0.04898609220981598, -0.06059340015053749, 0.021469464525580406, -0.0368511788547039, -0.035065438598394394, 0.04480583593249321, 0.03492338955402374, -0.023823393508791924, -0.003624747507274151, -0.04338536411523819, 0.010207126848399639, 0.02690785378217697, -0.029667632654309273, -0.050365980714559555, -0.014986010268330574, -0.039489202201366425, -0.03490309789776802, 0.0605122335255146, 0.007706076372414827, 0.018709683790802956, -0.008340217173099518, 0.03735848888754845, 0.028774764388799667, 0.02319432608783245, 0.04768737405538559, 0.010202053934335709, 0.00240466115064919, 0.03415227681398392, 0.04586104676127434, 0.015209227800369263, 0.02571059577167034, -0.048823751509189606, -0.019156118854880333, -0.034476954489946365, -0.06384020298719406, 0.03060108795762062, 0.040808215737342834, -0.016081806272268295, -0.0011249653762206435, 0.004832151345908642, 0.013748168013989925, -0.04005739465355873, 0.027699261903762817, 0.0356336273252964, -0.011485554277896881, 0.047281522303819656, -0.010592684149742126, -0.013037930242717266, 0.004192937631160021, -0.0013164759147912264, 0.006635647267103195, -0.03573508933186531, 0.05008188635110855, -0.021307123824954033, -0.01686306670308113, 0.0168326273560524, -0.008862748742103577, -0.04529285803437233, -0.007594467606395483, -0.043020099401474, 0.0041523524560034275, 0.037825219333171844, 0.05953819304704666, -0.014986010268330574, 0.0020736397709697485, 0.004258888307958841, 0.031859222799539566, -0.014813524670898914, -0.010491222143173218, 0.006589989177882671, 0.045698706060647964, -0.013464072719216347, 0.005808727815747261, 0.015057033859193325, 0.03171717748045921, -0.01003971416503191, -0.04338536411523819, -0.04671333357691765, 0.02964734099805355, 0.03851516172289848, -0.0025023187045007944, 0.07102374732494354, 0.017268916592001915, -0.09302081167697906, -0.005839166697114706, 0.02544679306447506, 0.028734179213643074, -0.0054688286036252975, -0.03549158200621605, 0.019054656848311424, -0.034578416496515274, -0.0221188236027956, -0.03536982461810112, 0.0580771304666996, -0.008051048964262009, -0.05304459109902382, -0.00340660335496068, 0.012713250704109669, 0.05138060823082924, -0.010354247875511646, -0.0017984227742999792, 0.013666997663676739, 0.006767548620700836, -0.0070516434498131275, -0.018496612086892128, -0.022544967010617256, -0.0036906981840729713, -0.012672665528953075, 0.02520328387618065, 0.01627458445727825, 0.03354350104928017, -0.024350998923182487, -0.03618152439594269, 0.03192010149359703, 0.007396616041660309, -0.03147366642951965, 0.0017755936132743955, 0.08506615459918976, -0.022991402074694633, -0.040442951023578644, 0.00896928459405899, -0.035187192261219025, 0.021936191245913506, -0.018313979730010033, 0.035430703312158585, 0.024919189512729645, 0.02520328387618065, 0.04407530650496483, -0.046794503927230835, 0.0051035634241998196, 0.05207055062055588, -0.010947803035378456, -0.028145695105195045, 0.015473030507564545, -0.034842219203710556, -0.04529285803437233, 0.011627601459622383, -0.005090880673378706, -0.0178168136626482, 0.009314256720244884, 0.03429432213306427, -0.054180972278118134, -0.03171717748045921, -0.0268875602632761, -0.0382513590157032, -0.013048077002167702, -0.017826959490776062, -0.06692466139793396, 0.01344378013163805, -0.04030090197920799, 0.014955571852624416, -0.018009593710303307, -0.0071226670406758785, -0.04245190694928169, -0.019156118854880333, -0.03082430548965931, -0.012906028889119625, 0.04460291191935539, 0.023945149034261703, -0.006001506466418505, 0.024817725643515587, 0.06850747764110565, -0.010937657207250595, 0.019805479794740677, 0.058280058205127716, 0.053125761449337006, -0.02605556882917881, -0.006843645125627518, -0.011140582151710987, -0.04371004179120064, -0.026096154004335403, -0.001407792093232274, -0.00854821503162384, -0.031859222799539566, 0.01673116534948349, -0.011485554277896881, -0.003376164473593235, 0.05198938399553299, 0.025730889290571213, -0.0014800841454416513, -0.0030007532332092524, -0.0580771304666996, 0.0319809764623642, 0.018943047150969505, 0.015117911621928215, 0.08254988491535187, -0.024797433987259865, 0.0026151956990361214, -0.10308589786291122, -0.01863866113126278, 0.00424113217741251, 0.010470929555594921, 0.01415401790291071, 0.01936919055879116, 0.03378701210021973, -0.08474147319793701, 0.010907217860221863, 0.02893710322678089, 0.013230709359049797, 0.002035591285675764, 0.07694915682077408, 0.05211113765835762, 0.0034598710481077433, -0.03774404898285866, 0.032914433628320694, 0.03409139811992645, 0.0073560308665037155, 0.02128683216869831, -0.02463509328663349, 0.052841667085886, 0.00861416570842266, -0.06879156827926636, -0.01995767280459404, -0.004586104769259691, -0.04902667924761772, 0.024919189512729645, 0.017786376178264618, 0.004471959546208382, -0.01356553565710783, 0.0802365392446518, 0.04480583593249321, -0.0504065677523613, 0.030885184183716774, 0.042127229273319244, 0.004086401779204607, -0.01852705143392086, -0.0025124649982899427, -0.05235464870929718, 0.042614247649908066, -0.020262060686945915, 0.021428879350423813, 0.009674448519945145, -0.012378424406051636, -0.014082994312047958, -0.01307851541787386, 0.032346244901418686, -0.004862590227276087, 0.0034471882972866297, -0.004804248921573162, 0.007462566252797842, 0.04683508723974228, 0.023762516677379608, 0.022565258666872978, -0.01875026896595955, 0.02725282683968544, -0.0011921842815354466, 0.013707582838833332, 0.006934961304068565, -0.018922755494713783, 0.00028536326135508716, -0.026096154004335403, -0.02700931578874588, -0.012236377224326134, 0.048093222081661224, -0.002199199516326189, -0.02867330051958561, 0.027333995327353477, 0.001691887155175209, 0.004058499820530415, -0.028977688401937485, -0.0427360013127327, -0.016436923295259476, 0.022159408777952194, 0.025061236694455147, -0.03275209292769432, 0.0642460510134697, -0.0020508107263594866, 0.07199778407812119, 0.005296342074871063, -0.03601918742060661, -0.02341754361987114, 0.010440491139888763, -0.04007768630981445, -0.011363799683749676, 0.026096154004335403, 0.012347985990345478, -0.05434331297874451, 0.04145757481455803, 0.02938353829085827, 0.03524807095527649, -0.012743689119815826, 0.010947803035378456, -0.06566652655601501, -0.0035461140796542168, -0.007990171201527119, 0.021712973713874817, 0.00453537330031395, -0.020038843154907227, -0.029586464166641235, 0.01589917205274105, -0.016913797706365585, 0.06347493827342987, -0.00006943839252926409, -0.04829614609479904, -0.10584567487239838, 0.012966906651854515, -0.059457022696733475, -0.024188658222556114, 0.04614514112472534, -0.04399413615465164, 0.07289065420627594, -0.07102374732494354, 0.045617539435625076, 0.017989300191402435, 0.06586945056915283, -0.005478974897414446, 0.0068893032148480415, 0.014925132505595684, 0.023275496438145638, -0.05629139021039009, -0.01494542509317398, -0.038778964430093765, -0.00962879043072462, 0.06132393330335617, -0.03323911502957344, -0.004951369948685169, -0.02534533105790615, 0.03334057703614235, 0.0005488487076945603, 0.03094606101512909, 0.0059457020834088326, -0.07082082331180573, 0.027151362970471382, 0.0790189877152443, -0.0315142497420311, -0.01635575480759144, -0.007244422100484371, 0.022199993953108788, 0.02713107131421566, -0.02020118199288845, -0.04862082749605179, 0.02209853194653988, 0.007036423776298761, 0.07159193605184555, -0.007295153569430113, 0.01889231614768505, 0.028389206156134605, -0.023742223158478737, 0.05698133632540703, -0.000577067956328392, -0.022301455959677696, -0.0006192383007146418, 0.008629385381937027, 0.05811771750450134, 0.09375134855508804, -0.008954064920544624, 0.03715556487441063, -0.03094606101512909, -0.013890215195715427, 0.01284515205770731, 0.02136800065636635, -0.02187531441450119, -0.06343435496091843, 0.04862082749605179, 0.06680290400981903, -0.0045176176354289055, -0.04310126602649689, 0.005661607254296541, 0.00036748446291312575, 0.020586740225553513, 0.0743517130613327, -0.0611615926027298, 0.03802814334630966, 0.0142148956656456, 0.011363799683749676, 0.008756212890148163, -0.01698482222855091, -0.020109865814447403, -0.026359956711530685, -0.004261424764990807, -0.009151916950941086, 0.020962150767445564, 0.0387180894613266 ]
374
mohawk.base
_make_header
null
def _make_header(self, resource, mac, additional_keys=None): keys = additional_keys if not keys: # These are the default header keys that you'd send with a # request header. Response headers are odd because they # exclude a bunch of keys. keys = ('id', 'ts', 'nonce', 'ext', 'app', 'dlg') header = u'Hawk mac="{mac}"'.format(mac=prepare_header_val(mac)) if resource.content_hash: header = u'{header}, hash="{hash}"'.format( header=header, hash=prepare_header_val(resource.content_hash)) if 'id' in keys: header = u'{header}, id="{id}"'.format( header=header, id=prepare_header_val(resource.credentials['id'])) if 'ts' in keys: header = u'{header}, ts="{ts}"'.format( header=header, ts=prepare_header_val(resource.timestamp)) if 'nonce' in keys: header = u'{header}, nonce="{nonce}"'.format( header=header, nonce=prepare_header_val(resource.nonce)) # These are optional so we need to check if they have values first. if 'ext' in keys and resource.ext: header = u'{header}, ext="{ext}"'.format( header=header, ext=prepare_header_val(resource.ext)) if 'app' in keys and resource.app: header = u'{header}, app="{app}"'.format( header=header, app=prepare_header_val(resource.app)) if 'dlg' in keys and resource.dlg: header = u'{header}, dlg="{dlg}"'.format( header=header, dlg=prepare_header_val(resource.dlg)) log.debug('Hawk header for URL={url} method={method}: {header}' .format(url=resource.url, method=resource.method, header=header)) return header
(self, resource, mac, additional_keys=None)
[ -0.037206750363111496, -0.00041873459122143686, -0.05269143357872963, -0.02340834029018879, -0.008698800578713417, -0.03358036279678345, 0.001681737951003015, 0.09972570091485977, -0.03479520231485367, -0.027469897642731667, 0.059980474412441254, 0.03862104192376137, 0.04775954410433769, 0.01051652804017067, 0.00016177094948943704, -0.0012239062925800681, 0.0031844228506088257, 0.05631782114505768, 0.010162955150008202, -0.05747826397418976, 0.02719791792333126, -0.0103261424228549, -0.040941931307315826, 0.02670835517346859, 0.008916383609175682, 0.06092333421111107, -0.01020828541368246, 0.009365149773657322, 0.050298016518354416, -0.030189689248800278, 0.01732507348060608, -0.047723278403282166, 0.03445069491863251, -0.006015272811055183, -0.009192896075546741, 0.013626156374812126, 0.039382584393024445, -0.06404203176498413, -0.021885257214307785, 0.011105815880000591, 0.0019401181489229202, -0.014822864904999733, 0.006890139076858759, -0.06201125308871269, -0.01403412502259016, 0.02589241787791252, -0.014523687772452831, 0.05834859982132912, 0.015530010685324669, -0.03825840353965759, -0.011921754106879234, -0.016545400023460388, 0.012220931239426136, -0.02569296583533287, -0.04206611216068268, -0.023861639201641083, 0.01648193784058094, -0.011749500408768654, -0.054649680852890015, 0.04148589074611664, 0.003132293466478586, 0.04652656987309456, -0.0007451096316799521, -0.011250872164964676, -0.001762198400683701, -0.019328653812408447, -0.00014038091467227787, -0.03595564514398575, 0.004147682338953018, -0.00098309142049402, 0.051748570054769516, 0.0508057102560997, 0.024895161390304565, -0.04141336306929588, 0.03334464505314827, -0.045837558805942535, -0.08268167078495026, -0.07031568139791489, -0.012647031806409359, -0.05987168103456497, 0.05610023811459541, -0.006160328164696693, -0.034051794558763504, -0.010271746665239334, 0.03300014138221741, 0.017397601157426834, -0.007493026088923216, -0.02190339006483555, -0.013671486638486385, 0.025003952905535698, -0.03519410640001297, -0.04086940363049507, -0.0003847372136078775, 0.02114184759557247, 0.0522562637925148, -0.031966619193553925, 0.015466549433767796, 0.010380538180470467, 0.011414059437811375, -0.016092101112008095, -0.030896835029125214, -0.0030212353449314833, -0.04072434827685356, 0.041522152721881866, -0.0059110140427947044, -0.04217490553855896, -0.0008505015284754336, -0.004145415965467691, -0.0038145079743117094, -0.027107257395982742, 0.0021463690791279078, -0.07992561161518097, -0.05211120843887329, -0.04119578003883362, 0.0706057921051979, -0.050769444555044174, 0.039781488478183746, -0.0384034588932991, 0.010761309415102005, -0.04126830771565437, -0.0020126458257436752, -0.06810358911752701, 0.02884792536497116, -0.02549351379275322, -0.0074431635439395905, 0.021413827314972878, -0.006232856307178736, -0.001916319946758449, 0.007642614655196667, 0.030642986297607422, -0.0446045845746994, 0.06364312767982483, -0.01958250068128109, -0.04242875054478645, -0.0384034588932991, -0.038077086210250854, 0.0013791610253974795, 0.0745585560798645, 0.035647403448820114, 0.0446045845746994, -0.006477637216448784, -0.016663257032632828, -0.033380910754203796, -0.005090543534606695, -0.035556744784116745, 0.014650611206889153, 0.02132316678762436, -0.004498988855630159, 0.0012012413935735822, -0.013218187727034092, 0.008784927427768707, 0.0016171428142115474, -0.018376726657152176, 0.027125390246510506, 0.04496722295880318, -0.00478683365508914, -0.035647403448820114, -0.03646334260702133, 0.0011921754339709878, 0.047433167695999146, 0.050044167786836624, -0.060560695827007294, 0.014623413793742657, -0.011142080649733543, 0.01836766116321087, 0.010634385980665684, -0.005090543534606695, -0.025221535935997963, 0.04862987622618675, -0.014895392581820488, -0.02224789746105671, -0.03709796071052551, -0.040107861161231995, -0.016527267172932625, -0.026780882850289345, -0.006980798672884703, -0.021268771961331367, -0.0206522848457098, -0.02676274999976158, -0.040397971868515015, 0.026236925274133682, -0.0332539863884449, -0.002454612171277404, 0.03154958412051201, -0.013952531851828098, -0.012973406352102757, 0.040071599185466766, 0.02132316678762436, 0.044423263520002365, 0.0180140882730484, -0.00012954424892086536, 0.004240608774125576, -0.021014925092458725, 0.06146729364991188, -0.0030937630217522383, -0.051023293286561966, 0.02772374451160431, -0.03717048838734627, 0.05929145961999893, 0.007461295463144779, -0.05472220852971077, 0.0650574192404747, -0.05856618285179138, 0.04028918221592903, 0.03370728716254234, -0.028721000999212265, 0.021577013656497, 0.005992607679218054, -0.09254544973373413, 0.03428750857710838, 0.009945372119545937, -0.03901994600892067, -0.03548421710729599, 0.01657259836792946, -0.030479799956083298, 0.003474534023553133, -0.022664930671453476, 0.031585849821567535, -0.007202915381640196, -0.04808591678738594, -0.005552907940000296, 0.04870240390300751, 0.006024338770657778, -0.04286391660571098, 0.03771444410085678, -0.03432377055287361, 0.004804965574294329, 0.004430993925780058, -0.07833000272512436, -0.047723278403282166, 0.034922126680612564, 0.008984378539025784, 0.008304431103169918, 0.02931935526430607, -0.08565530925989151, 0.0213775634765625, -0.002308423165231943, 0.008018853142857552, -0.012157469056546688, -0.015258031897246838, 0.015910781919956207, 0.018966015428304672, 0.034341905266046524, -0.023136362433433533, 0.002016045618802309, -0.02114184759557247, -0.036771584302186966, 0.06121344491839409, -0.03494025766849518, -0.03912873566150665, -0.06433214247226715, 0.019401181489229202, 0.010634385980665684, -0.03974522277712822, -0.013299781829118729, 0.0694090873003006, -0.03858477994799614, -0.021051188930869102, 0.03573806211352348, -0.035411689430475235, -0.011160212568938732, 0.009782183915376663, 0.032601237297058105, -0.038802362978458405, 0.014768469147384167, 0.008218304254114628, -0.008535613305866718, 0.07905527949333191, -0.04406062513589859, -0.00044536590576171875, -0.012148403562605381, 0.017660515382885933, -0.041812263429164886, -0.050334278494119644, 0.03524849936366081, -0.017859965562820435, 0.01231159083545208, 0.005797689314931631, -0.02554791048169136, 0.01891161873936653, 0.03727927803993225, -0.05287275090813637, 0.038512252271175385, 0.02389790304005146, -0.012656097300350666, 0.02030777931213379, -0.015303361229598522, 0.012103073298931122, -0.004576049745082855, -0.013608024455606937, -0.02917429991066456, 0.017968757078051567, -0.0365540012717247, 0.020489098504185677, 0.04028918221592903, 0.028340229764580727, -0.011359663680195808, -0.04609140381217003, 0.05367055907845497, 0.00847215112298727, 0.013154726475477219, 0.05827607214450836, 0.019981402903795242, -0.08667069673538208, -0.03702543303370476, -0.02056162618100643, 0.013363243080675602, 0.02172207087278366, -0.025185272097587585, -0.029827049002051353, 0.009800315834581852, 0.04663536325097084, 0.03912873566150665, -0.03876609727740288, 0.017334138974547386, 0.03009902872145176, 0.017044028267264366, 0.04141336306929588, 0.031060021370649338, 0.06542006134986877, 0.017125621438026428, -0.01987261138856411, -0.06951788067817688, 0.03872983530163765, 0.06618160009384155, -0.11016970127820969, -0.013825608417391777, -0.023535264655947685, -0.011223673820495605, 0.060850806534290314, -0.05715189129114151, 0.0456562377512455, -0.0014528221217915416, -0.014795667491853237, 0.000057051882322411984, 0.03711609169840813, -0.009374215267598629, -0.005530243273824453, -0.08652564138174057, -0.010870100930333138, -0.028630340471863747, -0.007905527949333191, 0.012610767967998981, 0.027524292469024658, -0.034686412662267685, -0.10197405517101288, -0.028031986206769943, 0.042102377861738205, -0.04221116751432419, -0.031821563839912415, -0.04536612704396248, -0.011531917378306389, 0.09254544973373413, 0.035556744784116745, 0.11241805553436279, -0.045837558805942535, -0.09479381144046783, -0.0036649194080382586, 0.003032567910850048, 0.05367055907845497, 0.08297178149223328, 0.03577432781457901, -0.007180250249803066, 0.05066065490245819, -0.03319958969950676, -0.04746943339705467, -0.015910781919956207, 0.07143986225128174, 0.006550165358930826, -0.048303499817848206, -0.022211631760001183, -0.036572132259607315, 0.01929238997399807, 0.0009955570567399263, 0.024858897551894188, 0.04126830771565437, -0.006962666753679514, -0.004410595633089542, -0.05316286161541939, -0.07956297695636749, 0.05251011252403259, 0.026635827496647835, -0.022991307079792023, -0.0017440664814785123, -0.033525966107845306, -0.056789252907037735, -0.005820354446768761, -0.01686270907521248, 0.02899298071861267, 0.04366172477602959, 0.01758798584342003, 0.004143149591982365, 0.08725091814994812, 0.02563857100903988, -0.022556139156222343, 0.00669975345954299, -0.023734716698527336, 0.0015060846926644444, -0.02088800072669983, -0.023571528494358063, 0.07241898775100708, -0.043117765337228775, -0.019600631669163704, 0.032492443919181824, 0.003832639893516898, -0.00775593938305974, 0.004999883938580751, -0.03301827237010002, 0.018984146416187286, -0.02326328493654728, -0.017198149114847183, -0.05008043348789215, -0.020489098504185677, 0.017415734007954597, 0.009918173775076866, 0.016835510730743408, 0.03125947341322899, 0.030316611751914024, 0.011269004084169865, 0.035502348095178604, -0.03421498090028763, -0.007615416776388884, 0.005747826769948006, 0.06806731969118118, -0.005425984505563974, 0.007706076838076115, -0.04833976551890373, -0.020724812522530556, -0.0035833255387842655, -0.045293599367141724, 0.026744619011878967, 0.04913756996393204, -0.006105932407081127, 0.01403412502259016, 0.014161049388349056, 0.03341717645525932, 0.012248128652572632, 0.010625319555401802, 0.026019340381026268, -0.034777071326971054, 0.01541215367615223, -0.05156725272536278, -0.04304523766040802, 0.014868195168673992, -0.062120042741298676, 0.0351034440100193, -0.03319958969950676, -0.031821563839912415, -0.025149008259177208, -0.01865777187049389, 0.07209261506795883, -0.001063551870174706, -0.02763308398425579, -0.019981402903795242, 0.033235855400562286, -0.05816727876663208, 0.031676508486270905, 0.00401849253103137, -0.0013088998384773731, -0.0028920453041791916, 0.01952810399234295, 0.0890641137957573, 0.03869356960058212, 0.01473220530897379, -0.007701543625444174, -0.008172973990440369, 0.031821563839912415, 0.0042610070668160915, 0.009963504038751125, 0.0017384001985192299, -0.011722302064299583, 0.017397601157426834, -0.02928309142589569, 0.07956297695636749, 0.016010507941246033, -0.009501139633357525, 0.03058859147131443, 0.03200288116931915, -0.10509275645017624, -0.008803059346973896, 0.042972709983587265, -0.0002994604001287371, -0.014088521711528301, -0.04576502740383148, 0.00727090984582901, 0.030570458620786667, -0.002073841169476509, -0.012030545622110367, -0.012084941379725933, -0.00484576215967536, -0.0052355993539094925, 0.02369845286011696, -0.05849365517497063, 0.05211120843887329, 0.021975917741656303, -0.0001271360961254686, 0.037932030856609344, 0.025457249954342842, -0.011250872164964676, 0.002880712738260627, -0.002527139848098159, -0.08877400308847427, 0.011033288203179836, 0.029337486252188683, -0.007012529764324427, -0.016409410163760185, 0.00036008909228257835, -0.0020228452049195766, 0.038802362978458405, 0.004659909754991531, -0.012384118512272835, -0.009283555671572685, 0.003945964388549328, -0.0027424567379057407, -0.02146822214126587, 0.007148519158363342, -0.07013436406850815, 0.046889208257198334, 0.04290018230676651, 0.01564786769449711, 0.002731124171987176, 0.07593658566474915, 0.03403365984559059, -0.07840252667665482, -0.011695104651153088, 0.0493551529943943, -0.0037533126305788755, 0.0017089358298107982, -0.003236552234739065, 0.029301222413778305, -0.08376958966255188, 0.012909945100545883, 0.004460458643734455, 0.0130640659481287, -0.002461411524564028, 0.07347064465284348, -0.06966293603181839, 0.037061695009469986, -0.046163931488990784, -0.07593658566474915, 0.046127669513225555, 0.005561974365264177, -0.04652656987309456, -0.053888142108917236, -0.011667906306684017, 0.01674485206604004, 0.04366172477602959, -0.02007206343114376, -0.022610535845160484, -0.03847598657011986, -0.07499372214078903, -0.011550049297511578, -0.0008221704047173262, 0.044423263520002365, -0.07038821280002594, 0.029827049002051353, 0.03479520231485367, -0.03426937758922577, 0.021703938022255898, 0.027379237115383148, 0.023625925183296204, -0.018530847504734993, -0.00533079169690609, 0.007402366492897272, -0.042827654629945755, 0.014868195168673992, -0.02143195830285549, 0.022266028448939323, -0.04134083539247513, -0.014251708984375, -0.04126830771565437, 0.0679585263133049, 0.0011202142341062427, 0.04435073584318161, -0.02980891801416874, -0.03356223180890083, 0.026454508304595947, 0.06774094700813293, 0.046889208257198334, 0.029827049002051353, 0.05153098702430725, 0.028195174410939217, 0.017488261684775352, -0.08855641633272171, 0.012402250431478024, -0.009537403471767902, 0.031912222504615784, 0.007792203221470118, -0.008209237828850746, -0.0049545541405677795, -0.09508392214775085, -0.03869356960058212, -0.0004552818136289716, -0.019256126135587692, 0.00043573329458013177, 0.04877493157982826, 0.036136966198682785, -0.023208890110254288, -0.04826723784208298, 0.033272117376327515, 0.025566043332219124, 0.019183598458766937, 0.001650006975978613, 0.020198985934257507, 0.0921102836728096, 0.027796272188425064, -0.03486772999167442, -0.02070668153464794, -0.05773211270570755, -0.07629922777414322, -0.011332465335726738, -0.005058812443166971, -0.025239666923880577, 0.03635454922914505, 0.03348970413208008, 0.014995118603110313, 0.0014301571063697338, -0.06204751506447792, 0.03358036279678345, -0.0047188387252390385, -0.041232042014598846, -0.022991307079792023, -0.041086986660957336, 0.05653540417551994, 0.012447580695152283, 0.03129573538899422, 0.009564600884914398, 0.02792319469153881, -0.007928192615509033, -0.019709425047039986, 0.026944071054458618, 0.010634385980665684, 0.019600631669163704, 0.017243480309844017, 0.010289878584444523, 0.08275419473648071, 0.013290715403854847, 0.06512994319200516, 0.009201962500810623, 0.016273420304059982, -0.00710318936035037, 0.030661119148135185, -0.01551187876611948, -0.032637499272823334, 0.033090800046920776, 0.013390441425144672, -0.03165837749838829, -0.048448558896780014, -0.023063834756612778, -0.04957273602485657, -0.019310520961880684, 0.006332581862807274, -0.012293458916246891, -0.0027379237581044436, 0.01905667409300804, -0.012656097300350666, -0.011432191357016563, -0.01003603171557188, 0.00026687956415116787, -0.020869867876172066, 0.0413045696914196, -0.04242875054478645, 0.10110372304916382, -0.029681993648409843, -0.007316239643841982, -0.00327734905295074, -0.0016069436678662896, -0.07695197314023972, -0.003945964388549328, -0.04148589074611664, 0.0065592313185334206, -0.025275930762290955, -0.014170114882290363, 0.0017939292592927814, 0.0063960435800254345, -0.01277395524084568, 0.016880840063095093, -0.040107861161231995, 0.02763308398425579, -0.029391882941126823, 0.0834069475531578, -0.010162955150008202, -0.025275930762290955, -0.0028557812329381704, 0.04453205689787865, -0.02108745276927948, 0.06487610191106796, 0.018358593806624413, -0.05675298720598221, -0.045148544013500214, 0.02103305608034134, -0.04652656987309456, -0.016355015337467194, 0.07615417242050171, -0.045728765428066254, 0.023335812613368034, -0.019129201769828796, -0.025656701996922493, 0.034251242876052856, -0.007080524694174528, -0.0007723075104877353, -0.0015298828948289156, 0.02277372218668461, 0.03771444410085678, -0.05497605726122856, -0.03164024278521538, 0.02070668153464794, -0.021395694464445114, 0.03920126333832741, -0.02456878498196602, 0.014278906397521496, 0.04155841842293739, 0.04076061397790909, 0.00803698506206274, 0.03387047350406647, -0.045583710074424744, -0.031096285209059715, 0.0012375052319839597, 0.011622576974332333, -0.0007451096316799521, 0.046417780220508575, 0.030425403267145157, 0.05113208666443825, 0.024061091244220734, -0.029410013929009438, -0.02690780721604824, 0.026436375454068184, -0.0011491120094433427, 0.00250900792889297, 0.010344274342060089, 0.004814031533896923, 0.04014412686228752, -0.05918266996741295, 0.04246501624584198, 0.058820027858018875, -0.017733043059706688, -0.0014902192633599043, 0.03843972459435463, 0.03452322259545326, 0.0892091691493988, -0.04083314165472984, 0.06233762577176094, -0.0037986424285918474, 0.007175717037171125, 0.05207494646310806, 0.024804500862956047, 0.05171230807900429, -0.03544795140624046, 0.02389790304005146, 0.05878376588225365, -0.0052174669690430164, -0.03559300675988197, -0.002946441061794758, 0.02326328493654728, 0.06937282532453537, 0.029264958575367928, -0.05312659963965416, 0.06462225317955017, 0.03307266905903816, -0.005262797232717276, -0.02821330726146698, -0.003458668477833271, -0.018059417605400085, 0.011368729174137115, 0.007873796857893467, 0.0226286668330431, 0.04950020834803581, 0.03024408407509327 ]
375
mohawk.receiver
respond
Respond to the request. This generates the :attr:`mohawk.Receiver.response_header` attribute. :param content=EmptyValue: Byte string of response body that will be sent. :type content=EmptyValue: str :param content_type=EmptyValue: content-type header value for response. :type content_type=EmptyValue: str :param always_hash_content=True: When True, ``content`` and ``content_type`` must be provided. Read :ref:`skipping-content-checks` to learn more. :type always_hash_content=True: bool :param ext=None: An external `Hawk`_ string. If not None, this value will be signed so that the sender can trust it. :type ext=None: str .. _`Hawk`: https://github.com/hueniverse/hawk
def respond(self, content=EmptyValue, content_type=EmptyValue, always_hash_content=True, ext=None): """ Respond to the request. This generates the :attr:`mohawk.Receiver.response_header` attribute. :param content=EmptyValue: Byte string of response body that will be sent. :type content=EmptyValue: str :param content_type=EmptyValue: content-type header value for response. :type content_type=EmptyValue: str :param always_hash_content=True: When True, ``content`` and ``content_type`` must be provided. Read :ref:`skipping-content-checks` to learn more. :type always_hash_content=True: bool :param ext=None: An external `Hawk`_ string. If not None, this value will be signed so that the sender can trust it. :type ext=None: str .. _`Hawk`: https://github.com/hueniverse/hawk """ log.debug('generating response header') resource = Resource(url=self.resource.url, credentials=self.resource.credentials, ext=ext, app=self.parsed_header.get('app', None), dlg=self.parsed_header.get('dlg', None), method=self.resource.method, content=content, content_type=content_type, always_hash_content=always_hash_content, nonce=self.parsed_header['nonce'], timestamp=self.parsed_header['ts']) mac = calculate_mac('response', resource, resource.gen_content_hash()) self.response_header = self._make_header(resource, mac, additional_keys=['ext']) return self.response_header
(self, content=EmptyValue, content_type=EmptyValue, always_hash_content=True, ext=None)
[ 0.06603545695543289, -0.031462013721466064, -0.0351957269012928, -0.026666756719350815, 0.05161307752132416, 0.005481601692736149, -0.04151009023189545, 0.0594465509057045, -0.04571966826915741, 0.002962718717753887, 0.09985849261283875, 0.03316414728760719, 0.07101373374462128, 0.009508153423666954, -0.0016266355523839593, -0.04923374950885773, 0.016463106498122215, 0.0003105707000941038, 0.01698472909629345, -0.040228914469480515, 0.05856803059577942, 0.014513890258967876, 0.009590514935553074, 0.036037642508745193, -0.027343949303030968, 0.01881497912108898, -0.025239160284399986, -0.02575163170695305, 0.016014695167541504, 0.02432403527200222, -0.018284207209944725, -0.05358974635601044, 0.0042713480070233345, 0.023537026718258858, 0.015703553333878517, 0.022091129794716835, 0.01864110678434372, -0.029467040672898293, -0.05703061819076538, 0.011365857906639576, -0.028753241524100304, 0.016792552545666695, 0.04103422537446022, -0.05124702677130699, -0.006932075601071119, 0.03473816439509392, -0.0375201441347599, 0.09539268165826797, -0.008858414366841316, -0.03429890424013138, 0.0397164449095726, 0.004070020746439695, -0.007719083223491907, -0.05509055405855179, -0.024507060647010803, 0.009302250109612942, 0.006721596699208021, 0.03854508325457573, -0.022768322378396988, -0.0068176849745213985, 0.0028185865376144648, 0.014623705297708511, 0.021194305270910263, -0.014193596318364143, -0.003655926324427128, 0.03795940428972244, 0.012409101240336895, -0.026611849665641785, -0.03144371137022972, -0.004996585194021463, 0.023683447390794754, 0.0023953409399837255, -0.010679514147341251, -0.025623513385653496, 0.07211188971996307, -0.04048515111207962, -0.06039828062057495, -0.004600793123245239, -0.030016114935278893, -0.03766656294465065, 0.06021525710821152, 0.024012891575694084, -0.0026927567087113857, -0.0728439912199974, -0.011274346150457859, -0.028094351291656494, 0.022859834134578705, -0.014623705297708511, -0.02708771452307701, 0.006863440852612257, -0.013251016847789288, -0.07397874444723129, 0.01649971306324005, -0.00927022099494934, -0.0013921345816925168, -0.027106016874313354, 0.012335891835391521, -0.002990172477439046, 0.024635177105665207, 0.009091771207749844, -0.0717824399471283, 0.05388258770108223, -0.03010762855410576, 0.03259677067399025, 0.010734422132372856, -0.01892479509115219, -0.04418225958943367, 0.002882645232602954, -0.015181931667029858, -0.024141009896993637, -0.03060179576277733, 0.004616808146238327, -0.018888190388679504, -0.06222853064537048, 0.03087633289396763, -0.007577239070087671, -0.02117600291967392, -0.0006972112460061908, -0.020645231008529663, -0.026319008320569992, -0.013736032880842686, -0.008327641524374485, 0.05267462134361267, -0.053406722843647, 0.00013448054960463196, 0.03495779260993004, -0.013644521124660969, -0.021798288449645042, 0.0016312111401930451, 0.0178083423525095, -0.019345752894878387, 0.053260304033756256, -0.014120385982096195, -0.00030427920864894986, -0.020370693877339363, 0.017826644703745842, -0.039350394159555435, 0.004388026427477598, 0.009064317680895329, 0.07119676470756531, 0.022823229432106018, -0.008396276272833347, 0.002859767060726881, -0.014138688333332539, -0.020883163437247276, -0.01243655476719141, 0.04967300966382027, -0.025348976254463196, -0.017405686900019646, 0.05728685483336449, -0.030125930905342102, -0.0033173297997564077, 0.01692982204258442, 0.007975318469107151, -0.010853388346731663, 0.021468844264745712, -0.03056519106030464, 0.008373398333787918, -0.009865052998065948, -0.009256494231522083, 0.006396727170795202, -0.036257270723581314, 0.04165651276707649, -0.015465620905160904, 0.018320811912417412, -0.006533995736390352, -0.022530389949679375, 0.031022753566503525, 0.03060179576277733, -0.0272524356842041, -0.06775589287281036, -0.0069549535401165485, -0.04879448935389519, -0.07921326160430908, 0.024671783670783043, 0.01914442516863346, 0.01555713266134262, 0.003054231172427535, -0.03481137380003929, -0.03784959018230438, 0.046305347234010696, -0.04063156992197037, -0.03673313558101654, 0.06588903069496155, -0.0090414397418499, 0.007920411415398121, 0.033951155841350555, 0.023756656795740128, 0.02630070596933365, -0.002532609738409519, -0.014495587907731533, -0.00370168243534863, -0.0026584395673125982, 0.01439492404460907, -0.000049938684242079034, -0.04198595508933067, 0.017945609986782074, -0.019876524806022644, 0.050222087651491165, -0.019437264651060104, -0.031956180930137634, -0.014202747493982315, -0.04323052614927292, 0.03623896837234497, 0.024525362998247147, 0.002903235610574484, 0.04550004005432129, -0.015694402158260345, -0.07796868681907654, -0.0017627604538574815, -0.06076433137059212, -0.05831179395318031, -0.049856036901474, -0.013388285413384438, -0.006103886757045984, -0.04462151974439621, -0.01737823337316513, 0.001651801518164575, -0.006076433230191469, -0.04582948237657547, -0.006382999941706657, 0.0471106581389904, -0.05124702677130699, 0.0321941152215004, -0.007293549831956625, -0.009517304599285126, 0.0037474387791007757, 0.0039899470284581184, -0.027618486434221268, -0.020498810335993767, 0.014321713708341122, 0.0367148332297802, 0.029155896976590157, -0.03072991408407688, -0.05058813467621803, 0.05853142589330673, 0.04048515111207962, 0.07679732888936996, -0.05036850646138191, 0.02657524310052395, 0.029650066047906876, 0.07774905860424042, 0.06072772666811943, -0.022914741188287735, -0.0397164449095726, -0.0397164449095726, 0.014111234806478024, 0.062082111835479736, -0.035763103514909744, -0.032450348138809204, -0.04886769875884056, -0.050331901758909225, 0.029906300827860832, -0.06735323369503021, 0.009302250109612942, 0.043596576899290085, -0.026941293850541115, -0.029430435970425606, 0.04623213782906532, -0.00471747200936079, 0.02079164981842041, 0.031150871887803078, 0.01876007206737995, -0.025495395064353943, -0.02084655873477459, 0.016582073643803596, -0.03235883638262749, 0.07350287586450577, -0.04714726284146309, 0.034610044211149216, 0.0618990883231163, -0.0021368179004639387, -0.0010146453278139234, -0.0577993243932724, 0.004891345743089914, 0.05739666894078255, 0.042608242481946945, -0.043267130851745605, -0.006753625813871622, 0.022804927080869675, -0.01558458711951971, -0.04165651276707649, 0.0805310383439064, -0.004731198772788048, 0.01914442516863346, 0.011155379936099052, -0.006584327667951584, 0.08580216765403748, -0.0016620965907350183, -0.005257396027445793, 0.022530389949679375, 0.05842161178588867, -0.013662823475897312, -0.011384161189198494, 0.04802578315138817, 0.013671974651515484, 0.009581363759934902, -0.00838254950940609, 0.05483431741595268, 0.011823421344161034, -0.0031503194477409124, 0.059483155608177185, 0.021194305270910263, -0.05984920635819435, -0.04235200583934784, -0.018238451331853867, 0.039899472147226334, -0.0038801319897174835, 0.022329062223434448, -0.0005954034859314561, 0.018073728308081627, 0.06497390568256378, 0.024012891575694084, -0.05908050015568733, -0.024397244676947594, 0.08514327555894852, 0.07006200402975082, 0.06563279777765274, 0.03321905434131622, 0.044475097209215164, 0.014541343785822392, 0.01343404222279787, -0.032395441085100174, 0.05117381736636162, 0.04253503307700157, -0.04992924630641937, -0.025568606331944466, 0.02188980206847191, 0.01830250956118107, 0.0029535675421357155, -0.026154285296797752, 0.026996200904250145, -0.05563962832093239, -0.05794574320316315, 0.021102793514728546, -0.010734422132372856, 0.019730105996131897, -0.02265850640833378, -0.031352199614048004, -0.009279372170567513, -0.014156990684568882, -0.059702787548303604, -0.007929562591016293, -0.021688474342226982, 0.027947932481765747, -0.034994397312402725, 0.016087906435132027, 0.04557324945926666, -0.020645231008529663, -0.006511117797344923, -0.037318818271160126, -0.008117162622511387, 0.08155598491430283, 0.0100663797929883, 0.04791596904397011, -0.07921326160430908, -0.08309338986873627, -0.011960689909756184, -0.019510475918650627, 0.08360586315393448, 0.02128581888973713, 0.06127680093050003, -0.042059168219566345, 0.02763678878545761, -0.06830496340990067, -0.03435381129384041, -0.05585926026105881, 0.03682464733719826, 0.049343567341566086, -0.04341355338692665, 0.0064196051098406315, -0.010999808087944984, -0.06515693664550781, -0.011228589341044426, 0.06479088217020035, 0.02293304353952408, -0.053699564188718796, -0.010789329186081886, -0.04582948237657547, -0.004298801999539137, 0.06017865240573883, 0.009306825697422028, -0.03883792459964752, -0.04143688082695007, -0.03508590906858444, -0.04645176976919174, 0.034555137157440186, 0.0020567444153130054, -0.05373616889119148, 0.039167370647192, 0.08280055224895477, -0.012354194186627865, 0.017231812700629234, 0.017826644703745842, -0.05183270573616028, -0.01392820943146944, -0.05908050015568733, 0.046195533126592636, -0.035433657467365265, -0.05527357757091522, 0.05951976031064987, 0.015758460387587547, -0.008410003036260605, 0.0184214748442173, -0.011832572519779205, 0.02553199976682663, 0.029412133619189262, -0.02679487317800522, -0.005499904043972492, 0.0033813887275755405, -0.013671974651515484, -0.0361657589673996, -0.022512085735797882, 0.020370693877339363, 0.014047175645828247, 0.03887452930212021, 0.012226075865328312, 0.035323843359947205, 0.03210259974002838, 0.040448546409606934, 0.0011850874871015549, -0.013864151202142239, 0.07438139617443085, 0.055676233023405075, 0.005138429347425699, 0.05399240180850029, -0.04612232372164726, -0.025348976254463196, -0.027893023565411568, -0.0692932978272438, 0.02895456925034523, 0.02564181573688984, -0.04590269550681114, -0.03380473330616951, 0.014523041434586048, -0.01194238755851984, -0.015795065090060234, -0.052088942378759384, -0.0201327595859766, -0.03788619488477707, -0.013113748282194138, 0.0019183317199349403, -0.030931241810321808, 0.0013898467877879739, 0.009114650078117847, 0.029906300827860832, -0.011576336808502674, -0.019162727519869804, -0.04604911431670189, -0.014211898669600487, 0.01991312950849533, 0.01395566388964653, 0.024452151730656624, 0.014340016059577465, -0.008593028411269188, -0.054578084498643875, 0.029650066047906876, -0.023683447390794754, -0.03021744266152382, -0.03762995824217796, 0.041619908064603806, 0.007568087428808212, 0.010853388346731663, -0.045646458864212036, -0.03010762855410576, 0.046964239329099655, 0.019107820466160774, 0.004923374857753515, 0.014166141860187054, -0.014724369160830975, -0.0402655191719532, -0.023866472765803337, -0.025715025141835213, 0.017607014626264572, 0.051869310438632965, 0.005984920542687178, 0.02249378338456154, -0.0059208618476986885, -0.06943972408771515, -0.03060179576277733, 0.007824323140084743, 0.02983308956027031, -0.005165883339941502, -0.019510475918650627, 0.036440297961235046, -0.02602616883814335, 0.021871499717235565, -0.04220558702945709, -0.022329062223434448, -0.026941293850541115, 0.014989755116403103, 0.048611465841531754, -0.031407106667757034, -0.00992911122739315, -0.017570409923791885, 0.0065248445607721806, 0.010780178010463715, 0.007215764373540878, -0.04513398930430412, -0.04385281354188919, 0.0011885191779583693, -0.076138436794281, 0.005266547203063965, 0.0254770927131176, -0.03016253560781479, -0.01830250956118107, -0.012262681499123573, -0.006881743669509888, 0.0067398990504443645, 0.012665336951613426, -0.05922691896557808, 0.03784959018230438, 0.007375911343842745, -0.014541343785822392, -0.03021744266152382, 0.042608242481946945, -0.0217799860984087, 0.03188297152519226, 0.03784959018230438, -0.02741715870797634, -0.020608626306056976, 0.024141009896993637, 0.022457178682088852, 0.0063692731782794, -0.005957467015832663, 0.023042859509587288, -0.01974840834736824, -0.03259677067399025, 0.028551915660500526, 0.014358318410813808, -0.015703553333878517, 0.014962301589548588, -0.020992977544665337, 0.017460593953728676, 0.0134889492765069, 0.055346786975860596, -0.05875105410814285, 0.0419127456843853, -0.07247793674468994, -0.021542053669691086, 0.01736908219754696, 0.029412133619189262, -0.07804190367460251, -0.08155598491430283, -0.04615892842411995, -0.00678565539419651, 0.04963640496134758, -0.019217634573578835, 0.045975904911756516, -0.07383232563734055, -0.07738301157951355, -0.049563195556402206, 0.046634793281555176, -0.013671974651515484, -0.08741278201341629, 0.05465129390358925, 0.05629852041602135, -0.039350394159555435, 0.03589121997356415, -0.04487775266170502, 0.011960689909756184, 0.013964815065264702, -0.012052202597260475, -0.00863420870155096, -0.025403883308172226, 0.04809899628162384, 0.03817903622984886, 0.006666689179837704, -0.060032229870557785, -0.047513313591480255, -0.013031386770308018, 0.1016155332326889, 0.0020281467586755753, 0.030016114935278893, 0.031022753566503525, 0.04257163777947426, 0.05212554708123207, 0.0288996621966362, 0.028332283720374107, 0.05629852041602135, 0.03305433318018913, -0.003738287603482604, -0.019382357597351074, -0.08287376165390015, -0.007339306175708771, -0.012125412933528423, 0.006332668475806713, 0.008327641524374485, -0.020315784960985184, -0.02311606891453266, -0.06083754077553749, 0.04769634082913399, -0.012949025258421898, -0.036092549562454224, 0.03514081984758377, 0.07229491323232651, -0.0007715651881881058, 0.0017456018831580877, -0.030071023851633072, 0.017460593953728676, 0.03898434340953827, 0.02597126178443432, -0.010048077441751957, -0.04396262764930725, 0.059812601655721664, -0.0017238676082342863, -0.006881743669509888, 0.017277568578720093, -0.014825033023953438, -0.050551529973745346, -0.03953342139720917, -0.0375201441347599, -0.03810582309961319, -0.025330673903226852, 0.0052070640958845615, -0.025440488010644913, -0.017561258748173714, -0.011457370594143867, 0.029046082869172096, -0.0031503194477409124, -0.01821099780499935, 0.007897532545030117, -0.013772638514637947, 0.03865490108728409, -0.005742412526160479, 0.07906684279441833, -0.008593028411269188, 0.051320236176252365, 0.011018110439181328, 0.001288039144128561, 0.0435599721968174, 0.0629972368478775, 0.01541986409574747, 0.008075982332229614, 0.05911710485816002, -0.012482311576604843, -0.020260877907276154, 0.014879940077662468, 0.009663725271821022, 0.013388285413384438, 0.040741387754678726, -0.00015399845142383128, 0.007407940924167633, -0.05549320951104164, -0.04941677674651146, 0.04033873230218887, 0.015181931667029858, -0.021468844264745712, -0.020443903282284737, -0.06643810868263245, 0.015035511925816536, -0.01809203065931797, -0.018604500219225883, -0.013827545568346977, 0.03290791064500809, 0.0008516386151313782, 0.022017918527126312, -0.020224273204803467, -0.0047403499484062195, 0.029979510232806206, 0.009160405956208706, -0.039899472147226334, 0.08016499131917953, -0.06017865240573883, 0.002076190896332264, -0.025403883308172226, 0.02284153178334236, -0.07225830852985382, 0.003832087852060795, -0.016179418191313744, 0.04077799245715141, -0.0016803991748020053, -0.015044663101434708, 0.03290791064500809, -0.007293549831956625, 0.01510872133076191, -0.041400276124477386, -0.0003829228226095438, 0.03539705276489258, 0.0032418319024145603, 0.08909661322832108, 0.005083521828055382, -0.020992977544665337, 0.0308214258402586, 0.053516536951065063, -0.0504051111638546, 0.1041046753525734, -0.001431027427315712, -0.07482066005468369, -0.10908295959234238, 0.00764129776507616, -0.04352336749434471, 0.01466946117579937, 0.007174583617597818, -0.033017728477716446, 0.05245499312877655, -0.03191957622766495, -0.04967300966382027, -0.016408199444413185, 0.02128581888973713, 0.021981313824653625, 0.014294260181486607, 0.0021425376180559397, 0.06175266578793526, -0.05161307752132416, -0.0023564479779452085, -0.023793261498212814, -0.007856352254748344, 0.014303411357104778, 0.0003471757227089256, 0.004042566753923893, 0.06669434159994125, 0.024012891575694084, -0.01565779745578766, 0.013452344574034214, -0.044035837054252625, -0.01819269359111786, 0.030016114935278893, 0.06266779452562332, 0.063290074467659, -0.034170784056186676, -0.007879230193793774, 0.05867784470319748, -0.0134889492765069, -0.02051711268723011, -0.0132144121453166, 0.007741961628198624, 0.04008249565958977, 0.023152673617005348, -0.0163715947419405, -0.009517304599285126, -0.0009517304715700448, -0.05768951028585434, 0.0624481625854969, 0.019620290026068687, -0.052418388426303864, -5.18332797128096e-7, 0.0012926147319376469, 0.06167945638298988, 0.02646542899310589, -0.04019230976700783, 0.02311606891453266, -0.011686151847243309, -0.027160923928022385, 0.05549320951104164, 0.011365857906639576, 0.01045073289424181, 0.014468133449554443, 0.04019230976700783, 0.06252137571573257, 0.0014962301356717944, -0.07262435555458069, 0.02134072594344616, 0.03691616281867027, 0.05629852041602135, 0.03371322154998779, -0.07657770067453384, 0.05549320951104164, 0.021139398217201233, 0.038252245634794235, -0.00921073742210865, 0.013882453553378582, -0.014358318410813808, -0.0025875172577798367, -0.040668174624443054, 0.03623896837234497, 0.02382986806333065, 0.017140300944447517 ]
376
mohawk.sender
Sender
A Hawk authority that will emit requests and verify responses. :param credentials: Dict of credentials with keys ``id``, ``key``, and ``algorithm``. See :ref:`usage` for an example. :type credentials: dict :param url: Absolute URL of the request. :type url: str :param method: Method of the request. E.G. POST, GET :type method: str :param content=EmptyValue: Byte string of request body or a file-like object. :type content=EmptyValue: str or file-like object :param content_type=EmptyValue: content-type header value for request. :type content_type=EmptyValue: str :param always_hash_content=True: When True, ``content`` and ``content_type`` must be provided. Read :ref:`skipping-content-checks` to learn more. :type always_hash_content=True: bool :param nonce=None: A string that when coupled with the timestamp will uniquely identify this request to prevent replays. If None, a nonce will be generated for you. :type nonce=None: str :param ext=None: An external `Hawk`_ string. If not None, this value will be signed so that the receiver can trust it. :type ext=None: str :param app=None: A `Hawk`_ application string. If not None, this value will be signed so that the receiver can trust it. :type app=None: str :param dlg=None: A `Hawk`_ delegation string. If not None, this value will be signed so that the receiver can trust it. :type dlg=None: str :param seen_nonce=None: A callable that returns True if a nonce has been seen. See :ref:`nonce` for details. :type seen_nonce=None: callable .. _`Hawk`: https://github.com/hueniverse/hawk
class Sender(HawkAuthority): """ A Hawk authority that will emit requests and verify responses. :param credentials: Dict of credentials with keys ``id``, ``key``, and ``algorithm``. See :ref:`usage` for an example. :type credentials: dict :param url: Absolute URL of the request. :type url: str :param method: Method of the request. E.G. POST, GET :type method: str :param content=EmptyValue: Byte string of request body or a file-like object. :type content=EmptyValue: str or file-like object :param content_type=EmptyValue: content-type header value for request. :type content_type=EmptyValue: str :param always_hash_content=True: When True, ``content`` and ``content_type`` must be provided. Read :ref:`skipping-content-checks` to learn more. :type always_hash_content=True: bool :param nonce=None: A string that when coupled with the timestamp will uniquely identify this request to prevent replays. If None, a nonce will be generated for you. :type nonce=None: str :param ext=None: An external `Hawk`_ string. If not None, this value will be signed so that the receiver can trust it. :type ext=None: str :param app=None: A `Hawk`_ application string. If not None, this value will be signed so that the receiver can trust it. :type app=None: str :param dlg=None: A `Hawk`_ delegation string. If not None, this value will be signed so that the receiver can trust it. :type dlg=None: str :param seen_nonce=None: A callable that returns True if a nonce has been seen. See :ref:`nonce` for details. :type seen_nonce=None: callable .. _`Hawk`: https://github.com/hueniverse/hawk """ #: Value suitable for an ``Authorization`` header. request_header = None def __init__(self, credentials, url, method, content=EmptyValue, content_type=EmptyValue, always_hash_content=True, nonce=None, ext=None, app=None, dlg=None, seen_nonce=None, # For easier testing: _timestamp=None): self.reconfigure(credentials) self.request_header = None self.seen_nonce = seen_nonce log.debug('generating request header') self.req_resource = Resource(url=url, credentials=self.credentials, ext=ext, app=app, dlg=dlg, nonce=nonce, method=method, content=content, always_hash_content=always_hash_content, timestamp=_timestamp, content_type=content_type) mac = calculate_mac('header', self.req_resource, self.req_resource.gen_content_hash()) self.request_header = self._make_header(self.req_resource, mac) def accept_response(self, response_header, content=EmptyValue, content_type=EmptyValue, accept_untrusted_content=False, localtime_offset_in_seconds=0, timestamp_skew_in_seconds=default_ts_skew_in_seconds, **auth_kw): """ Accept a response to this request. :param response_header: A `Hawk`_ ``Server-Authorization`` header such as one created by :class:`mohawk.Receiver`. :type response_header: str :param content=EmptyValue: Byte string of the response body received. :type content=EmptyValue: str :param content_type=EmptyValue: Content-Type header value of the response received. :type content_type=EmptyValue: str :param accept_untrusted_content=False: When True, allow responses that do not hash their content. Read :ref:`skipping-content-checks` to learn more. :type accept_untrusted_content=False: bool :param localtime_offset_in_seconds=0: Seconds to add to local time in case it's out of sync. :type localtime_offset_in_seconds=0: float :param timestamp_skew_in_seconds=60: Max seconds until a message expires. Upon expiry, :class:`mohawk.exc.TokenExpired` is raised. :type timestamp_skew_in_seconds=60: float .. _`Hawk`: https://github.com/hueniverse/hawk """ log.debug('accepting response {header}' .format(header=response_header)) parsed_header = parse_authorization_header(response_header) resource = Resource(ext=parsed_header.get('ext', None), content=content, content_type=content_type, # The following response attributes are # in reference to the original request, # not to the reponse header: timestamp=self.req_resource.timestamp, nonce=self.req_resource.nonce, url=self.req_resource.url, method=self.req_resource.method, app=self.req_resource.app, dlg=self.req_resource.dlg, credentials=self.credentials, seen_nonce=self.seen_nonce) self._authorize( 'response', parsed_header, resource, # Per Node lib, a responder macs the *sender's* timestamp. # It does not create its own timestamp. # I suppose a slow response could time out here. Maybe only check # mac failures, not timeouts? their_timestamp=resource.timestamp, timestamp_skew_in_seconds=timestamp_skew_in_seconds, localtime_offset_in_seconds=localtime_offset_in_seconds, accept_untrusted_content=accept_untrusted_content, **auth_kw) def reconfigure(self, credentials): validate_credentials(credentials) self.credentials = credentials
(credentials, url, method, content=EmptyValue, content_type=EmptyValue, always_hash_content=True, nonce=None, ext=None, app=None, dlg=None, seen_nonce=None, _timestamp=None)
[ 0.002098454162478447, -0.017567094415426254, -0.07272367924451828, -0.014673346653580666, 0.01695326901972294, -0.01691429689526558, -0.026716014370322227, 0.07514000684022903, -0.07291854172945023, -0.013737994246184826, 0.04509180039167404, 0.03591364994645119, 0.05074289068579674, 0.04107757657766342, -0.01508256420493126, -0.04111655056476593, 0.03519264981150627, 0.0448969341814518, -0.0010279137641191483, -0.09252198040485382, 0.015511266887187958, -0.01602765917778015, -0.009582494385540485, 0.0540555976331234, -0.03316605091094971, 0.009241480380296707, -0.022565385326743126, -0.04029811546206474, 0.020850572735071182, 0.016544053331017494, -0.00898328423500061, -0.020207516849040985, 0.03425729647278786, 0.017216337844729424, 0.007940755225718021, -0.05873236060142517, 0.010561691597104073, -0.02307203598320484, -0.05845955014228821, 0.02022700384259224, -0.030749723315238953, 0.01081501692533493, 0.03414037823677063, -0.04762504622340202, 0.012247275561094284, 0.08223310112953186, -0.019749583676457405, 0.12159586697816849, -0.025040173903107643, -0.03657619282603264, -0.01192574854940176, 0.005261359270662069, 0.016047146171331406, -0.003488086396828294, 0.0054805828258395195, 0.025585796684026718, 0.017187107354402542, 0.0030691262800246477, -0.011916005052626133, -0.02053878828883171, 0.0044039529748260975, 0.058927226811647415, 0.025098633021116257, 0.03753102943301201, -0.008427918888628483, -0.005120082292705774, -0.02476736344397068, -0.006776436232030392, -0.006031076889485121, -0.0010516629554331303, 0.024299686774611473, -0.027885206043720245, -0.00842304714024067, -0.028216475620865822, 0.08036239445209503, -0.041311416774988174, -0.06161636486649513, 0.012900074012577534, -0.03242556378245354, -0.015228712931275368, 0.047975804656744, -0.01859988085925579, -0.005563400685787201, -0.045325636863708496, 0.013689277693629265, -0.006133381277322769, 0.034198835492134094, -0.03225018456578255, -0.046027153730392456, -0.016017917543649673, -0.029853343963623047, -0.035114701837301254, -0.003100791946053505, 0.00022911881387699395, 0.02053878828883171, -0.017342999577522278, -0.01564767211675644, -0.023598171770572662, -0.010259650647640228, -0.031626615673303604, -0.05810879170894623, 0.08184336870908737, -0.026053473353385925, 0.06165533885359764, -0.0018146818038076162, -0.03252299502491951, -0.040570925921201706, -0.008993027731776237, 0.019710611552000046, -0.0005657179281115532, -0.02135722152888775, -0.0005005599232390523, -0.017917852848768234, -0.004620740190148354, 0.005139568820595741, -0.05031418427824974, -0.02786571905016899, 0.0011911133769899607, -0.027826745063066483, -0.02170797996222973, 0.013328777626156807, -0.024143794551491737, 0.03034050576388836, -0.02227308787405491, 0.0006454908871091902, 0.038914572447538376, -0.03225018456578255, -0.03628389537334442, 0.02424122579395771, -0.04357185214757919, -0.034335240721702576, 0.04848245158791542, -0.003804742358624935, 0.026540635153651237, -0.01488769892603159, 0.0010516629554331303, 0.0021861435379832983, 0.02907388284802437, -0.007994343526661396, 0.07646509259939194, 0.04049298167228699, -0.016154322773218155, 0.008155107498168945, -0.0531981885433197, -0.012373938225209713, -0.024436092004179955, -0.0105714350938797, -0.05686165392398834, 0.0013823247281834483, -0.01578407920897007, 0.015969200059771538, -0.043493904173374176, 0.04516974464058876, 0.04778093844652176, -0.0023907520808279514, 0.025741688907146454, -0.045364610850811005, -0.03186045587062836, -0.008700729347765446, -0.009041743353009224, -0.007677687332034111, -0.07155448943376541, 0.02494274079799652, -0.014273873530328274, 0.0014468738809227943, 0.00010177138028666377, 0.003924097400158644, -0.011993951164186, -0.0071418085135519505, 0.0068933553993701935, -0.06925507634878159, 0.018794745206832886, -0.07895936816930771, -0.025235038250684738, -0.011243719607591629, 0.030145641416311264, 0.027826745063066483, -0.014819496311247349, -0.018453732132911682, -0.03850535675883293, -0.027008311823010445, -0.049339860677719116, -0.04341595992445946, 0.017352743074297905, 0.013543128967285156, 0.03464702516794205, 0.03550443425774574, 0.02371509000658989, 0.0736590325832367, 0.017927594482898712, -0.03805716708302498, -0.014098494313657284, 0.002910798415541649, 0.036907464265823364, 0.005519555881619453, -0.023383820429444313, -0.025235038250684738, -0.0001061862931237556, 0.05506889522075653, -0.02733958326280117, -0.044974878430366516, 0.014702577143907547, -0.02607295848429203, 0.0027061901055276394, 0.017800932750105858, 0.024689417332410812, 0.029970262199640274, 0.004306520335376263, -0.06352604180574417, 0.034549593925476074, -0.025741688907146454, -0.03339989110827446, -0.03347783535718918, 0.01290981750935316, -0.009835818782448769, -0.02040238305926323, 0.04415644705295563, 0.002333510434255004, 0.028937477618455887, -0.004657277371734381, 0.05327613651752472, 0.047196343541145325, -0.05062596872448921, -0.028586719185113907, -0.01220830250531435, -0.012763668783009052, 0.02437763288617134, 0.007716660387814045, -0.03647875785827637, -0.05865441635251045, 0.06383782625198364, 0.024533525109291077, 0.024085333570837975, 0.024650443345308304, -0.0540555976331234, 0.039616089314222336, 0.03065229021012783, 0.049028076231479645, -0.03977198153734207, 0.019038327038288116, 0.007843323051929474, 0.013854913413524628, 0.047897856682538986, -0.029716936871409416, -0.027670852839946747, -0.02110389806330204, 0.0066254157572984695, 0.06605929136276245, -0.001521166181191802, -0.03258145600557327, -0.06212301552295685, -0.03016512840986252, -0.023598171770572662, -0.0645003691315651, -0.02519606612622738, -0.0013993754982948303, -0.0031154067255556583, -0.02205873653292656, 0.06621517986059189, -0.027982637286186218, 0.013757480308413506, 0.01648559235036373, -0.033770132809877396, 0.0026915750931948423, -0.009290196932852268, 0.020519301295280457, -0.010892963036894798, 0.02106492407619953, -0.02480633556842804, -0.021961303427815437, 0.03353629633784294, 0.019613178446888924, -0.04481898993253708, -0.023987902328372, -0.025975527241826057, 0.010756556876003742, 0.04006427899003029, 0.010347340255975723, -0.01831732504069805, 0.04255855083465576, 0.03262042999267578, -0.03304913267493248, 0.04181806370615959, 0.012987763620913029, -0.007663072552531958, 0.030535371974110603, -0.050859808921813965, 0.057524196803569794, 0.003653721883893013, -0.02490376867353916, -0.016368674114346504, 0.012042666785418987, 0.022390007972717285, -0.05284743383526802, 0.04875526577234268, 0.02254590019583702, -0.06430550664663315, -0.014361563138663769, 0.03322451189160347, -0.029892316088080406, 0.005100595764815807, 0.06457831710577011, 0.016972756013274193, -0.05651089921593666, -0.008354843594133854, -0.027359068393707275, 0.047547101974487305, 0.03696592152118683, 0.012110870331525803, 0.0005340523202903569, 0.026793960481882095, 0.02110389806330204, 0.013942603021860123, -0.058264683932065964, 0.01009401585906744, 0.04727428779006004, 0.07167141139507294, 0.0462220162153244, 0.029405154287815094, 0.07073605805635452, -0.012890330515801907, 0.044935908168554306, -0.0006241775117814541, 0.03225018456578255, 0.020382896065711975, -0.08558478206396103, 0.0063087595626711845, 0.011916005052626133, -0.03347783535718918, 0.007784863468259573, -0.09275581687688828, 0.026189878582954407, -0.029288234189152718, -0.024163279682397842, -0.017352743074297905, 0.0011436149943619967, 0.0007745890179648995, -0.02079211361706257, -0.02860620617866516, -0.04766402021050453, -0.02057776227593422, -0.021045437082648277, -0.0073318020440638065, 0.03375064581632614, -0.004503821022808552, -0.055380679666996, -0.013289804570376873, 0.021688492968678474, 0.008944311179220676, -0.01888243481516838, -0.02018803171813488, 0.014069264754652977, 0.07330827414989471, 0.0719442218542099, 0.10585075616836548, -0.06298042088747025, -0.05128851160407066, -0.023987902328372, -0.032542482018470764, 0.016855837777256966, 0.01804451458156109, 0.027105744928121567, -0.04649483039975166, 0.033594753593206406, -0.08293461799621582, -0.047547101974487305, -0.015287172049283981, -0.00782383605837822, 0.05779700726270676, -0.03544597327709198, -0.005397764965891838, -0.05545862764120102, -0.05241873115301132, -0.006781307980418205, 0.023344846442341805, 0.025312984362244606, -0.02564425580203533, 0.004537922330200672, -0.08729959279298782, 0.0012495728442445397, 0.07907628268003464, 0.07221703231334686, -0.040220171213150024, -0.024299686774611473, -0.03579673171043396, -0.05249667540192604, -0.011370382271707058, 0.009977096691727638, 0.020831085741519928, 0.04891115799546242, 0.07615330815315247, -0.03191891312599182, 0.06375988572835922, 0.025449391454458237, -0.026754986494779587, 0.0071028354577720165, -0.058225709944963455, 0.03540699928998947, -0.019856760278344154, -0.06641004979610443, 0.07167141139507294, -0.007784863468259573, 0.008237924426794052, 0.04076579213142395, -0.004956882447004318, 0.010152474977076054, 0.08800110965967178, -0.003310272004455328, 0.018794745206832886, 0.020909031853079796, -0.024397118017077446, -0.04454617574810982, 0.007058990653604269, 0.019398827105760574, -0.005198028404265642, -0.0008062546257860959, 0.0068738688714802265, 0.0388171412050724, 0.023754063993692398, 0.05425046384334564, 0.00022379047004505992, -0.02057776227593422, 0.032289158552885056, 0.05701754614710808, 0.023832010105252266, 0.04509180039167404, -0.06165533885359764, -0.018736286088824272, -0.038174085319042206, -0.06395474821329117, 0.023052548989653587, 0.039791468530893326, -0.01666097156703472, -0.026189878582954407, -0.0019571769516915083, 0.02907388284802437, -0.03449113294482231, 0.02437763288617134, 0.031373292207717896, -0.020421870052814484, 0.0001112101599574089, -0.011779598891735077, 0.004864321555942297, -0.023617658764123917, 0.03850535675883293, 0.03316605091094971, -0.041701145470142365, 0.028274934738874435, 0.022312061861157417, 0.0017525686416774988, 0.03825203329324722, 0.0020326871890574694, -0.04177908971905708, 0.022253602743148804, -0.06874842941761017, -0.02127927541732788, 0.06543572247028351, 0.026131419464945793, -0.019194219261407852, -0.043104175478219986, 0.018823975697159767, 0.01621278189122677, 0.017489148303866386, -0.0012087729992344975, -0.012939047068357468, 0.05810879170894623, 0.04189601168036461, 0.006635158788412809, -0.021181844174861908, -0.02127927541732788, 0.00035684683825820684, 0.008569195866584778, -0.04509180039167404, 0.04107757657766342, 0.029327208176255226, 0.0010230421321466565, 0.07638714462518692, -0.015686646103858948, -0.11793240159749985, -0.0270277988165617, 0.017810676246881485, -0.0011844148393720388, 0.025176579132676125, -0.014741550199687481, 0.008257411420345306, -0.059277985244989395, 0.047157369554042816, -0.060057442635297775, 0.015969200059771538, -0.027398042380809784, -0.004311391618102789, 0.015443064272403717, -0.00760948471724987, -0.0011089046020060778, -0.008535094559192657, 0.01358210202306509, 0.030282046645879745, 0.019223447889089584, -0.03388705104589462, -0.043922606855630875, -0.025449391454458237, -0.034374214708805084, 0.0030910486821085215, 0.004886243958026171, 0.018726542592048645, 0.006503624841570854, -0.04002530500292778, -0.011954978108406067, 0.016086120158433914, 0.03831049054861069, -0.025605283677577972, 0.0005514075164683163, 0.032464537769556046, -0.025878094136714935, -0.025312984362244606, 0.05062596872448921, -0.03850535675883293, 0.033458348363637924, -0.028196988627314568, -0.0147123197093606, 0.013065709732472897, 0.07182729989290237, 0.04945677891373634, -0.008301256224513054, -0.016573281958699226, 0.010892963036894798, 0.0004174377245362848, -0.033205024898052216, 0.023344846442341805, 0.026228850707411766, -0.03258145600557327, -0.0018219893099740148, -0.0197300985455513, -0.010659124702215195, 0.015881510451436043, 0.06298042088747025, -0.07825785130262375, -0.019467029720544815, -0.052340783178806305, -0.046066123992204666, 0.014361563138663769, 0.010776043869554996, -0.08527299761772156, -0.07272367924451828, -0.059316955506801605, -0.0075315386056900024, 0.0008744574151933193, 0.012675979174673557, 0.004389337729662657, -0.06995659321546555, -0.05335408076643944, -0.027398042380809784, 0.07112578302621841, -0.0012593161081895232, -0.057134468108415604, 0.0007825054344721138, 0.0645003691315651, -0.04879423603415489, 0.004657277371734381, 0.01722608134150505, 0.0388171412050724, -0.0188532043248415, -0.047975804656744, -0.02420225366950035, 0.013406723737716675, -0.0006186969112604856, 0.03922635689377785, 0.025839120149612427, -0.06461729109287262, -0.025585796684026718, -0.049028076231479645, 0.057758037000894547, 0.01425438653677702, 0.06679978221654892, -0.03166558966040611, 0.02163003385066986, -0.00021389496396295726, 0.0281190425157547, 0.05873236060142517, 0.010230421088635921, 0.0985238254070282, -0.008345101028680801, -0.027183691039681435, -0.1050712987780571, -0.01673891767859459, 0.03182148188352585, 0.03928481787443161, 0.040609899908304214, -0.009558136574923992, 0.016115348786115646, -0.06828075647354126, 0.010590922087430954, -0.01571587473154068, -0.017323512583971024, 0.02127927541732788, 0.07623125612735748, 0.014137467369437218, -0.007687430828809738, 0.03308810666203499, 0.03262042999267578, -0.003290785476565361, 0.03347783535718918, 0.013621075078845024, -0.05577041208744049, 0.06765718758106232, -0.012286248616874218, -0.04287033528089523, -0.019710611552000046, -0.021162357181310654, -0.04692353308200836, -0.0194085706025362, -0.024358145892620087, -0.0025332472287118435, 0.001132044824771583, 0.02367611788213253, 0.009913764894008636, -0.024046361446380615, 0.0038169214967638254, 0.04080476611852646, 0.008700729347765446, 0.013640562072396278, -0.006610800977796316, -0.046806611120700836, 0.04649483039975166, -0.008452276699244976, 0.029716936871409416, 0.01153601799160242, 0.010717583820223808, -0.05514684319496155, 0.02227308787405491, 0.009714028798043728, 0.02371509000658989, -0.0028036225121468306, 0.01906755566596985, 0.056316033005714417, 0.03523162379860878, 0.005373407155275345, 0.011458071880042553, 0.010951422154903412, 0.0023128059692680836, -0.01449796836823225, -0.026871906593441963, -0.009811460971832275, -0.03731667995452881, -0.042753417044878006, 0.009105075150728226, 0.0010614062193781137, -0.03994736075401306, 0.010132988914847374, -0.0388171412050724, 0.009377886541187763, 0.04778093844652176, -0.027320096269249916, -0.00896866898983717, -0.022253602743148804, -0.007672816049307585, -0.03636183962225914, 0.03262042999267578, 0.017323512583971024, -0.001229477347806096, 0.04637790843844414, -0.007224625907838345, 0.11910159140825272, -0.015589212998747826, -0.0036659010220319033, 0.020285462960600853, 0.016924040392041206, -0.048287589102983475, 0.028411341831088066, 0.06142149865627289, 0.012637006118893623, -0.044195421040058136, 0.0038973032496869564, 0.04345493018627167, -0.02554682269692421, -0.026092445477843285, 0.0370633527636528, -0.04626099020242691, 0.01175036933273077, 0.0018000670243054628, 0.03470548614859581, 0.02289665676653385, -0.0036220562178641558, 0.00824766792356968, 0.051561322063207626, -0.023013576865196228, 0.11309973895549774, -0.011438584886491299, -0.05682268366217613, -0.12432397902011871, 0.015657415613532066, -0.03862227499485016, 0.0003735930658876896, 0.042792391031980515, -0.04520871862769127, 0.03811562806367874, -0.03905097767710686, -0.052262838929891586, 0.004306520335376263, -0.00014888917212374508, 0.037686921656131744, -0.003030153224244714, 0.012559060007333755, 0.03819357231259346, -0.04696250334382057, -0.0008872454636730254, -0.017381973564624786, -0.024786848574876785, 0.042753417044878006, -0.04442925751209259, -0.005202900152653456, 0.050080347806215286, 0.06434448063373566, -0.010532462038099766, 0.05464019253849983, -0.002275050850585103, -0.06239582598209381, 0.019544975832104683, 0.04813169687986374, 0.021785926073789597, -0.011000138707458973, -0.003022845834493637, 0.054484300315380096, 0.009329169988632202, 0.002827980788424611, -0.049028076231479645, -0.0029181058052927256, 0.006279530003666878, 0.04326006770133972, 0.0027670853305608034, 0.015072820708155632, 0.011613964103162289, -0.08231104910373688, 0.07241189479827881, 0.02846980094909668, -0.06485112756490707, 0.017986055463552475, 0.004805861972272396, 0.042363688349723816, 0.08597451448440552, -0.028917990624904633, -0.013270317576825619, -0.04400055482983589, -0.030574344098567963, 0.08184336870908737, 0.014800009317696095, 0.01768401451408863, -0.010883219540119171, 0.040960658341646194, 0.042090874165296555, 0.024475064128637314, -0.03790127485990524, -0.006742334924638271, 0.022428980097174644, 0.0009785884758457541, 0.004878936801105738, -0.04376671463251114, 0.057485222816467285, 0.008442533202469349, 0.005475711077451706, -0.020733654499053955, 0.008008958771824837, 0.002342035761103034, -0.017557350918650627, 0.004435618408024311, 0.020382896065711975, 0.048248615115880966, 0.028235962614417076 ]
377
mohawk.sender
__init__
null
def __init__(self, credentials, url, method, content=EmptyValue, content_type=EmptyValue, always_hash_content=True, nonce=None, ext=None, app=None, dlg=None, seen_nonce=None, # For easier testing: _timestamp=None): self.reconfigure(credentials) self.request_header = None self.seen_nonce = seen_nonce log.debug('generating request header') self.req_resource = Resource(url=url, credentials=self.credentials, ext=ext, app=app, dlg=dlg, nonce=nonce, method=method, content=content, always_hash_content=always_hash_content, timestamp=_timestamp, content_type=content_type) mac = calculate_mac('header', self.req_resource, self.req_resource.gen_content_hash()) self.request_header = self._make_header(self.req_resource, mac)
(self, credentials, url, method, content=EmptyValue, content_type=EmptyValue, always_hash_content=True, nonce=None, ext=None, app=None, dlg=None, seen_nonce=None, _timestamp=None)
[ -0.004960676655173302, -0.04577956348657608, -0.04075005277991295, -0.012307616882026196, 0.007714058272540569, 0.014868262223899364, 0.010316004045307636, 0.04460478574037552, -0.04596312344074249, 0.014620457775890827, 0.07246901094913483, 0.10741860419511795, 0.01529962569475174, 0.029975151643157005, -0.029497899115085602, -0.03179238364100456, 0.04904691129922867, 0.017933694645762444, -0.01717192493379116, -0.11270510405302048, 0.04203496500849724, 0.013528283685445786, -0.02043009363114834, 0.06483297049999237, 0.015795234590768814, 0.02773573435842991, -0.04934060573577881, -0.031425267457962036, 0.008902601897716522, 0.03271017596125603, 0.02345881424844265, 0.04133744165301323, -0.0038662070874124765, 0.03680353984236717, 0.03401344642043114, -0.04937731474637985, 0.03516986593604088, 0.020283246412873268, -0.08135326206684113, -0.0177226010710001, -0.041851405054330826, -0.016703849658370018, 0.017107680439949036, -0.055287908762693405, 0.010802434757351875, 0.060023725032806396, 0.0018516493728384376, 0.05984016880393028, -0.03650984540581703, -0.06564062833786011, -0.002556056249886751, 0.05132304131984711, 0.03762955218553543, -0.03935500606894493, -0.008530895225703716, 0.04750501736998558, 0.028873799368739128, 0.05051537975668907, -0.0345824770629406, 0.04834938794374466, -0.010563808493316174, 0.04038293659687042, 0.01799793913960457, -0.0269097201526165, -0.04236536845564842, 0.04218181222677231, -0.033132363110780716, -0.021513091400265694, 0.006713662762194872, 0.032122790813446045, 0.06233656778931618, 0.009636837057769299, -0.03293044865131378, -0.0028979345224797726, 0.09412895143032074, -0.03902459889650345, -0.01890655606985092, -0.014354297891259193, -0.009691904298961163, -0.018484370782971382, 0.029846660792827606, -0.040125951170921326, -0.01918189413845539, -0.057160209864377975, -0.020485160872340202, -0.016621248796582222, 0.04405410960316658, -0.052277546375989914, 0.02404620312154293, 0.06597103178501129, -0.05231425538659096, -0.035096440464258194, -0.06703567504882812, -0.09170597791671753, 0.01745644211769104, 0.007590156048536301, 0.00011106741294497624, -0.009985598735511303, -0.010829969309270382, 0.011041061952710152, -0.027258481830358505, -0.029112424701452255, -0.05782102048397064, 0.002475749235600233, -0.009434922598302364, -0.03722572326660156, -0.0046486263163387775, -0.006966056302189827, -0.05033182352781296, -0.032398127019405365, 0.01804382912814617, 0.015666743740439415, -0.01704343408346176, 0.03632628545165062, 0.016942476853728294, -0.03003021888434887, -0.021054193377494812, -0.02903900109231472, -0.009967242367565632, -0.04376041889190674, -0.010453673079609871, -0.0008810822037048638, 0.007828782312572002, 0.033554546535015106, 0.027937648817896843, 0.025955213233828545, -0.018346700817346573, -0.0804721787571907, -0.028708595782518387, -0.03408686816692352, -0.026542602106928825, 0.025367826223373413, 0.01672220602631569, 0.03203101083636284, -0.005066222976893187, -0.040713340044021606, -0.0644291341304779, 0.02973652444779873, -0.03594081103801727, 0.11630285531282425, 0.025276046246290207, 0.02604699321091175, -0.004010759759694338, -0.02402784675359726, 0.001660059904679656, -0.018998336046934128, 0.01165598351508379, -0.03920815885066986, -0.012638023123145103, 0.04232865944504738, 0.0049377316609025, -0.026983143761754036, 0.02415633760392666, 0.0012034573592245579, 0.02832312136888504, -0.0006831829086877406, -0.010673943907022476, -0.011142019182443619, -0.005635255016386509, -0.05022168532013893, 0.03588574379682541, 0.013262122869491577, 0.02615712769329548, -0.051873717457056046, 0.02030160278081894, 0.0015843418659642339, -0.00629606656730175, -0.04243879392743111, 0.00037113294820301235, -0.04016266390681267, -0.06685211509466171, -0.030397336930036545, -0.018778065219521523, -0.025936858728528023, 0.0032765245996415615, -0.024266472086310387, 0.017851093783974648, -0.025386180728673935, -0.01307856384664774, -0.025074131786823273, 0.012215837836265564, -0.03673011437058449, 0.0061308639124035835, 0.051286328583955765, 0.015281270258128643, 0.00039694589213468134, 0.04188811779022217, 0.0038685016334056854, 0.03030555695295334, 0.019567368552088737, -0.05594871938228607, 0.007819605059921741, -0.013390614651143551, 0.0024367431178689003, -0.008769521489739418, -0.035977523773908615, -0.041814692318439484, -0.03928158059716225, 0.05932620167732239, 0.057160209864377975, -0.014317586086690426, 0.00011199955042684451, 0.001859680050984025, -0.009866285137832165, 0.03366468474268913, 0.045999836176633835, 0.005759157240390778, -0.03384824097156525, -0.025679875165224075, 0.03766626492142677, 0.01188543252646923, -0.033976733684539795, -0.025936858728528023, -0.0021292821038514376, -0.05194713920354843, -0.018704641610383987, 0.041851405054330826, -0.007915972732007504, -0.01945723220705986, -0.020228179171681404, 0.04647708684206009, 0.09669877588748932, -0.06593432277441025, -0.045008618384599686, 0.013785265386104584, 0.003345359116792679, 0.027864225208759308, -0.031663890928030014, -0.0784897431731224, -0.033701393753290176, 0.003831789828836918, 0.028708595782518387, 0.027937648817896843, 0.02758888714015484, -0.03421536087989807, -0.010628053918480873, 0.02503741905093193, 0.045559294521808624, -0.07217531651258469, -0.011610093526542187, 0.01947558857500553, 0.07107396423816681, 0.02101748250424862, 0.009563413448631763, -0.03577560931444168, -0.038400501012802124, -0.04721132293343544, 0.05892237275838852, -0.041961539536714554, -0.050441958010196686, -0.006314422469586134, -0.030929656699299812, -0.05194713920354843, -0.09868121147155762, -0.006787086371332407, 0.0007405450451187789, 0.01731877215206623, -0.01901669055223465, 0.03718901053071022, -0.02430318482220173, 0.043723706156015396, -0.03293044865131378, 0.03403180092573166, -0.008976025506854057, 0.006273122038692236, -0.0009091896354220808, 0.0024367431178689003, 0.02788258157670498, -0.01686905324459076, 0.011197086423635483, 0.04159442335367203, 0.0122250160202384, 0.02204541116952896, 0.012766513973474503, 0.008195900358259678, -0.02287142537534237, 0.014280874282121658, -0.030250489711761475, -0.01115119643509388, -0.029663100838661194, 0.05135975033044815, -0.03329756483435631, 0.0678800418972969, 0.01730959489941597, 0.014290052466094494, 0.014198272489011288, -0.035426847636699677, 0.0703764408826828, -0.0013583351392298937, 0.005942716263234615, 0.007236805744469166, 0.10081049054861069, 0.02377086505293846, -0.042989470064640045, 0.0320860780775547, -0.01309692021459341, -0.014436899684369564, 0.03746435046195984, 0.022210614755749702, 0.04049307107925415, -0.013785265386104584, 0.01604303903877735, 0.0014019303489476442, -0.06017057225108147, -0.010260936804115772, -0.0629606693983078, 0.02204541116952896, 0.022853070870041847, 0.00216255197301507, 0.003622991731390357, 0.0815001055598259, 0.0735703632235527, -0.015969615429639816, -0.03491288423538208, -0.029130781069397926, 0.0666685551404953, 0.044127535074949265, -0.008622674271464348, 0.022963205352425575, 0.02545960433781147, 0.0052727265283465385, 0.008668564260005951, -0.03344441205263138, 0.00007872951391618699, -0.000038360918551916257, -0.01273898035287857, -0.010453673079609871, 0.011876254342496395, -0.0815001055598259, 0.02830476686358452, -0.04309960454702377, 0.0953037291765213, -0.021366244181990623, -0.015262913890182972, -0.03116828389465809, 0.007278106175363064, -0.022394172847270966, -0.040823474526405334, -0.008402403444051743, -0.033719751983881, -0.012729802168905735, -0.054847367107868195, -0.022394172847270966, -0.028726952150464058, -0.005676555912941694, -0.08105956763029099, 0.03449069708585739, 0.0008575637475587428, 0.0271667018532753, -0.09111858904361725, -0.03581232205033302, -0.02630397491157055, 0.029130781069397926, 0.02377086505293846, 0.04453136399388313, -0.031223351135849953, -0.038290366530418396, -0.05132304131984711, -0.01044449582695961, 0.01173858530819416, 0.05624241381883621, 0.047578439116477966, -0.024266472086310387, 0.048129115253686905, -0.0270382110029459, -0.0392448715865612, 0.02318347617983818, -0.004478834569454193, 0.0035472738090902567, -0.05220412090420723, 0.019989553838968277, -0.031425267457962036, -0.03891446441411972, 0.0021694356109946966, 0.022265681996941566, -0.047578439116477966, -0.03177402913570404, -0.033260852098464966, -0.023220187053084373, -0.014647992327809334, 0.029534609988331795, 0.01674973964691162, 0.005112112499773502, -0.019677503034472466, -0.06020728498697281, -0.0446782112121582, 0.0686509907245636, 0.023513881489634514, 0.026065349578857422, 0.03408686816692352, 0.05293835699558258, -0.01238104049116373, 0.0320860780775547, 0.03724408149719238, 0.011600916273891926, -0.018410947173833847, -0.028837086632847786, 0.0017552810022607446, 0.005135057494044304, -0.011610093526542187, 0.05690322816371918, 0.01351910550147295, 0.01152749266475439, 0.022394172847270966, -0.006149219814687967, 0.001993907382711768, 0.03302222862839699, -0.0025606451090425253, 0.03004857525229454, -0.025110842660069466, -0.0025606451090425253, -0.03392166644334793, 0.005061633884906769, 0.00276944343931973, 0.03616108372807503, -0.035536982119083405, -0.007938917726278305, 0.00230939919129014, 0.016621248796582222, 0.0018069068901240826, 0.006424557883292437, 0.0021453434601426125, 0.023385390639305115, 0.003152622375637293, -0.019677503034472466, 0.04005252942442894, -0.012298439629375935, -0.02116432972252369, 0.009765327908098698, -0.06354805827140808, -0.0001538739015813917, 0.11872582882642746, -0.026248907670378685, -0.03348112478852272, 0.0045545524917542934, 0.014804016798734665, -0.06593432277441025, -0.01086668111383915, -0.007961862720549107, 0.019053403288125992, -0.05323205143213272, -0.044861771166324615, -0.021770073100924492, 0.01115119643509388, 0.012142414227128029, 0.0016130228759720922, -0.020521873608231544, 0.025551384314894676, 0.012665556743741035, 0.0017082440899685025, -0.012417752295732498, 0.044274382293224335, 0.025184266269207, -0.006360312458127737, -0.09493660926818848, -0.009921353310346603, 0.05550818145275116, 0.01875053159892559, -0.0071955048479139805, 0.0007508702110499144, 0.040419645607471466, -0.013087742030620575, 0.01123379822820425, -0.07393748313188553, -0.049120333045721054, 0.01600632630288601, 0.012573777697980404, 0.024082913994789124, 0.029424475505948067, -0.031572114676237106, -0.026267264038324356, 0.02905735746026039, -0.0031847450882196426, 0.03449069708585739, 0.014620457775890827, 0.007131259422749281, 0.0471746101975441, -0.002959885634481907, -0.05510434880852699, -0.04750501736998558, 0.0686509907245636, 0.006277710665017366, 0.03204936534166336, -0.007856316864490509, -0.008686919696629047, -0.026230551302433014, -0.02331196703016758, -0.015262913890182972, 0.06369490176439285, 0.01309692021459341, 0.016648782417178154, 0.048826638609170914, -0.04489848017692566, 0.04361357167363167, -0.022375816479325294, 0.051873717457056046, -0.0145103232935071, 0.0400158166885376, -0.021494735032320023, -0.0023426690604537725, 0.007769125979393721, -0.043870553374290466, 0.03445398434996605, 0.009425744414329529, -0.032398127019405365, 0.02744203992187977, -0.04166784510016441, 0.004545374773442745, 0.043576858937740326, -0.011711050756275654, 0.01345486007630825, -0.011564204469323158, 0.0010491532739251852, -0.02545960433781147, -0.0034876172430813313, 0.022669510915875435, -0.06406202167272568, 0.03315071761608124, 0.0002829386794473976, -0.02362401783466339, 0.004623387008905411, 0.0595097616314888, 0.07044986635446548, -0.0014030775055289268, -0.03731750324368477, 0.038253653794527054, -0.009600125253200531, -0.011472424492239952, 0.019347097724676132, 0.05297506973147392, 0.0380333811044693, 0.0026317741721868515, -0.00586929265409708, -0.016272487118840218, 0.024064557626843452, 0.07738839089870453, -0.062006160616874695, -0.018979979678988457, -0.022137191146612167, -0.001956048421561718, 0.022816358134150505, 0.036528199911117554, -0.04052978381514549, -0.013363080099225044, -0.062153007835149765, -0.03601423650979996, 0.05231425538659096, 0.012830760329961777, -0.028506681323051453, -0.06861428171396255, -0.017649177461862564, -0.025441249832510948, -0.0035908690188080072, -0.068137027323246, -0.04236536845564842, 0.01760328933596611, 0.047725286334753036, -0.06248341500759125, 0.026377398520708084, -0.018264099955558777, 0.027956005185842514, -0.015519896522164345, -0.06288724392652512, 0.015180312097072601, -0.03935500606894493, 0.012895005755126476, 0.06354805827140808, -0.03201265260577202, -0.021090906113386154, -0.06075796112418175, 0.024835504591464996, 0.04680749401450157, -0.013739376328885555, 0.05594871938228607, 0.05646268650889397, 0.029516253620386124, -0.004795473534613848, 0.0059518939815461636, 0.04849623516201973, 0.04052978381514549, 0.057453904300928116, -0.03610601648688316, -0.021568158641457558, -0.12415917217731476, -0.03986896947026253, 0.018401769921183586, -0.0011156933614984155, 0.018649574369192123, 0.0351882204413414, -0.03348112478852272, -0.0028107441030442715, 0.012968429364264011, -0.025000708177685738, -0.009847929701209068, -0.025643164291977882, 0.0676964819431305, -0.010517919436097145, -0.03647313266992569, -0.0683940052986145, 0.027643954381346703, -0.003235223703086376, 0.0434667244553566, -0.013418148271739483, 0.009976420551538467, 0.03006693162024021, -0.026010282337665558, -0.07665415108203888, 0.028396544978022575, -0.021990343928337097, -0.01986106112599373, 0.04908362030982971, -0.02758888714015484, 0.006819209083914757, 0.0028910511173307896, 0.024248117581009865, 0.012940894812345505, -0.07841631770133972, 0.019787637516856194, 0.0069752344861626625, -0.038253653794527054, -0.034527409821748734, -0.02377086505293846, -0.001871152431704104, 0.06152890995144844, -0.04530230909585953, 0.0889158844947815, 0.005442518275231123, 0.029626389965415, -0.04431109502911568, 0.019677503034472466, 0.02689136378467083, 0.006438324693590403, -0.01859450526535511, 0.0464036650955677, 0.038694195449352264, 0.015850301831960678, 0.05892237275838852, 0.04100703448057175, 0.031517043709754944, 0.01699754409492016, 0.003320119809359312, -0.01875053159892559, 0.009054037742316723, -0.021494735032320023, -0.05180029198527336, 0.03573889657855034, 0.01351910550147295, -0.052864931523799896, -0.002583590103313327, -0.04945074021816254, 0.0012264022370800376, -0.005970249883830547, 0.01861286163330078, -0.027662310749292374, 0.0020397971384227276, -0.01358335092663765, -0.04262235388159752, 0.008930135518312454, 0.04130072891712189, 0.008283090777695179, 0.03478439152240753, -0.009847929701209068, 0.11138347536325455, -0.009912175126373768, -0.018631218001246452, 0.0017770786071196198, 0.01788780465722084, -0.0518370047211647, 0.02145802415907383, 0.03909802436828613, 0.012931717559695244, 0.025349469855427742, 0.023715795949101448, 0.05921606719493866, 0.007548855617642403, 0.013849510811269283, -0.00586929265409708, -0.03434384986758232, -0.018337523564696312, 0.0451921746134758, 0.038290366530418396, 0.005713267717510462, 0.006259354762732983, 0.0029277626890689135, 0.010618876665830612, -0.009297252632677555, 0.06960549205541611, 0.016979189589619637, -0.08172037452459335, -0.07922397553920746, -0.00038432623841799796, -0.010059022344648838, 0.0026363632641732693, 0.00780124869197607, -0.04845952242612839, 0.06501652300357819, -0.03171895816922188, -0.08561182022094727, 0.05246110260486603, 0.02287142537534237, 0.0037652498576790094, 0.0031801562290638685, 0.011426535435020924, 0.05892237275838852, -0.053011778742074966, -0.028121206909418106, 0.009994776919484138, 0.011628449894487858, 0.00958176888525486, 0.027074921876192093, 0.01429923065006733, 0.03105814754962921, 0.009967242367565632, 0.007957274094223976, 0.0024550987873226404, 0.04625681787729263, -0.004104833584278822, -0.015850301831960678, -0.007328584790229797, 0.01717192493379116, -0.001222960534505546, -0.050992634147405624, 0.03917144611477852, -0.02490892820060253, 0.020099688321352005, -0.004203496500849724, 0.0026203019078820944, 0.035133153200149536, 0.05561831593513489, -0.06435571610927582, 0.004132367204874754, 0.026414111256599426, -0.036840248852968216, 0.07547938078641891, 0.025129199028015137, -0.06879783421754837, 0.02646917849779129, 0.016052216291427612, 0.048129115253686905, 0.07096382975578308, -0.08524470776319504, 0.012050635181367397, -0.01715357042849064, 0.013041852042078972, -0.022063767537474632, 0.011812008917331696, 0.0071955048479139805, -0.027699021622538567, 0.032985515892505646, 0.05425998196005821, -0.0343254953622818, -0.033114008605480194, 0.04049307107925415, 0.00761769013479352, 0.021347887814044952, -0.023789219558238983, -0.042255233973264694, 0.04093361273407936, 0.029681457206606865, -0.0036918262485414743, -0.04163113608956337, -0.04276920109987259, 0.008636441081762314, -0.025276046246290207, -0.011270510032773018, 0.05763746052980423, 0.05275479704141617, -0.00022414249542634934 ]
380
mohawk.sender
accept_response
Accept a response to this request. :param response_header: A `Hawk`_ ``Server-Authorization`` header such as one created by :class:`mohawk.Receiver`. :type response_header: str :param content=EmptyValue: Byte string of the response body received. :type content=EmptyValue: str :param content_type=EmptyValue: Content-Type header value of the response received. :type content_type=EmptyValue: str :param accept_untrusted_content=False: When True, allow responses that do not hash their content. Read :ref:`skipping-content-checks` to learn more. :type accept_untrusted_content=False: bool :param localtime_offset_in_seconds=0: Seconds to add to local time in case it's out of sync. :type localtime_offset_in_seconds=0: float :param timestamp_skew_in_seconds=60: Max seconds until a message expires. Upon expiry, :class:`mohawk.exc.TokenExpired` is raised. :type timestamp_skew_in_seconds=60: float .. _`Hawk`: https://github.com/hueniverse/hawk
def accept_response(self, response_header, content=EmptyValue, content_type=EmptyValue, accept_untrusted_content=False, localtime_offset_in_seconds=0, timestamp_skew_in_seconds=default_ts_skew_in_seconds, **auth_kw): """ Accept a response to this request. :param response_header: A `Hawk`_ ``Server-Authorization`` header such as one created by :class:`mohawk.Receiver`. :type response_header: str :param content=EmptyValue: Byte string of the response body received. :type content=EmptyValue: str :param content_type=EmptyValue: Content-Type header value of the response received. :type content_type=EmptyValue: str :param accept_untrusted_content=False: When True, allow responses that do not hash their content. Read :ref:`skipping-content-checks` to learn more. :type accept_untrusted_content=False: bool :param localtime_offset_in_seconds=0: Seconds to add to local time in case it's out of sync. :type localtime_offset_in_seconds=0: float :param timestamp_skew_in_seconds=60: Max seconds until a message expires. Upon expiry, :class:`mohawk.exc.TokenExpired` is raised. :type timestamp_skew_in_seconds=60: float .. _`Hawk`: https://github.com/hueniverse/hawk """ log.debug('accepting response {header}' .format(header=response_header)) parsed_header = parse_authorization_header(response_header) resource = Resource(ext=parsed_header.get('ext', None), content=content, content_type=content_type, # The following response attributes are # in reference to the original request, # not to the reponse header: timestamp=self.req_resource.timestamp, nonce=self.req_resource.nonce, url=self.req_resource.url, method=self.req_resource.method, app=self.req_resource.app, dlg=self.req_resource.dlg, credentials=self.credentials, seen_nonce=self.seen_nonce) self._authorize( 'response', parsed_header, resource, # Per Node lib, a responder macs the *sender's* timestamp. # It does not create its own timestamp. # I suppose a slow response could time out here. Maybe only check # mac failures, not timeouts? their_timestamp=resource.timestamp, timestamp_skew_in_seconds=timestamp_skew_in_seconds, localtime_offset_in_seconds=localtime_offset_in_seconds, accept_untrusted_content=accept_untrusted_content, **auth_kw)
(self, response_header, content=EmptyValue, content_type=EmptyValue, accept_untrusted_content=False, localtime_offset_in_seconds=0, timestamp_skew_in_seconds=60, **auth_kw)
[ 0.02192823961377144, -0.0278137419372797, -0.03658503666520119, -0.004257495980709791, 0.03732547163963318, 0.0252127293497324, -0.00566242216154933, 0.08383992314338684, -0.05824748054146767, 0.011799481697380543, 0.07677731662988663, 0.04260343685746193, 0.08619412034749985, -0.0012257506605237722, -0.015729477629065514, -0.030680550262331963, 0.03174373880028725, 0.023485051468014717, -0.009881947189569473, -0.08019471168518066, 0.012929118238389492, -0.028706060722470284, 0.018852591514587402, 0.04431213438510895, -0.061095304787158966, -0.02025751769542694, -0.06629732996225357, -0.03183866664767265, -0.012103249318897724, 0.01667875237762928, -0.003457732265815139, -0.05046343058347702, -0.0028525697998702526, 0.01767549104988575, -0.021719399839639664, 0.013641074299812317, -0.008258688263595104, -0.039983440190553665, -0.0031682036351412535, 0.026712583377957344, -0.0398695282638073, 0.02323823980987072, 0.020599255338311195, -0.01125839538872242, -0.009843976236879826, 0.05760197713971138, -0.004684669431298971, 0.0836120992898941, -0.025896208360791206, -0.019479112699627876, -0.002375559415668249, -0.011562163010239601, 0.011922887526452541, -0.022706646472215652, 0.03162982687354088, 0.0016422448679804802, 0.011941872537136078, 0.04719792678952217, -0.0026698345318436623, -0.0314209870994091, 0.00351231568492949, 0.06906921416521072, -0.0018938025459647179, 0.0166692603379488, 0.011666582897305489, 0.024016644805669785, -0.0014274715213105083, -0.025459541007876396, -0.021871283650398254, -0.025896208360791206, -0.013270856812596321, 0.00983448326587677, 0.01347969751805067, -0.004577876068651676, 0.08049847930669785, -0.03911010921001434, -0.06713268905878067, 0.015216870233416557, -0.07506862282752991, 0.0075182537548244, 0.037970978766679764, -0.0031848158687353134, 0.01783686690032482, -0.03817981854081154, 0.019441140815615654, -0.04564111679792404, 0.020637227222323418, -0.04533734917640686, -0.02608606219291687, 0.022725630551576614, -0.012615857645869255, -0.07647354900836945, 0.010176222771406174, 0.005913979839533567, -0.012577886693179607, 0.00562919769436121, 0.01810266450047493, -0.003220413578674197, 0.026883453130722046, -0.006782566197216511, -0.06789211183786392, 0.07799239456653595, -0.0008727392414584756, 0.07487877458333969, 0.03447764739394188, -0.0020955235231667757, -0.03350938856601715, 0.001963811693713069, 0.007651152089238167, -0.018415924161672592, -0.01966896653175354, -0.01680215820670128, 0.005728871561586857, -0.020903024822473526, -0.003215667326003313, -0.03780011087656021, -0.04465387016534805, -0.009692092426121235, -0.052817631512880325, -0.0237888190895319, 0.030016059055924416, -0.016859114170074463, 0.08543470501899719, -0.015634549781680107, -0.0450715534389019, 0.012948104180395603, -0.02680751122534275, -0.03140199929475784, -0.014229624532163143, 0.06189269572496414, -0.0319146066904068, 0.05429850146174431, -0.015900347381830215, 0.03282591328024864, -0.04218575730919838, 0.03550286591053009, -0.03077547810971737, 0.020010706037282944, -0.006175030488520861, 0.01211274228990078, 0.0479193739593029, -0.006084849592298269, 0.0094879986718297, -0.027870697900652885, -0.01779889687895775, -0.009426295757293701, -0.011372308246791363, -0.047121986746788025, 0.0011978656984865665, 0.01683063618838787, -0.055513571947813034, -0.03694576397538185, 0.04245155304670334, 0.011733032763004303, -0.014020783826708794, 0.013773973099887371, -0.0153307830914855, -0.0009664800600148737, -0.004983691032975912, 0.0005639283917844296, 0.030016059055924416, -0.07134746760129929, 0.02678852528333664, -0.002498965011909604, 0.001549690612591803, -0.004684669431298971, 0.018928533419966698, -0.006388617213815451, 0.015568101778626442, -0.0046989088878035545, -0.02407360076904297, -0.005671915132552385, -0.0837639793753624, -0.02825040929019451, -0.01839694008231163, 0.02109287865459919, 0.06185472384095192, 0.0019305869936943054, -0.009412056766450405, -0.04514749348163605, 0.0650063157081604, -0.052551835775375366, -0.04621068015694618, 0.03945184871554375, -0.045982856303453445, 0.023712877184152603, 0.04772952198982239, 0.011315351352095604, 0.036850836127996445, 0.05319734290242195, -0.022061139345169067, 0.0014369642594829202, 0.014628320001065731, -0.002819345099851489, 0.0025654141791164875, -0.05748806148767471, -0.046248652040958405, 0.008951658383011818, 0.05031154677271843, -0.05953849479556084, -0.02183331362903118, -0.02950345166027546, -0.028117509558796883, 0.024415340274572372, 0.014011291787028313, 0.027301134541630745, 0.0005897367955185473, -0.009587672539055347, -0.0876370221376419, -0.0012577887391671538, -0.021586501970887184, -0.045679088681936264, -0.03227533400058746, 0.01582440547645092, -0.03631924092769623, 0.011172960512340069, -0.02919968217611313, -0.03259808570146561, 0.0058522773906588554, -0.04017329588532448, 0.030889391899108887, 0.07294224947690964, -0.07601790130138397, 0.024889977648854256, 0.03850257396697998, -0.019137373194098473, -0.0211118645966053, 0.014106218703091145, -0.017343245446681976, -0.028041567653417587, 0.0032726237550377846, 0.04108459874987602, 0.02766185812652111, -0.02952243573963642, -0.06641124188899994, 0.04321097582578659, 0.06595559418201447, 0.05418458580970764, -0.04632459580898285, 0.02849721908569336, 0.028857944533228874, 0.028022583574056625, 0.041008658707141876, -0.06071559712290764, -0.05961443856358528, -0.0031658303923904896, -0.04647647961974144, 0.0661834180355072, -0.02225099317729473, -0.010574917308986187, -0.08270078897476196, -0.05889298766851425, 0.012720278464257717, -0.07658746838569641, 0.018909547477960587, 0.0168401300907135, -0.038388658314943314, -0.039565760642290115, 0.030167942866683006, -0.01839694008231163, 0.04537532106041908, 0.041008658707141876, -0.014039769768714905, -0.002404037630185485, -0.023295195773243904, 0.013783465139567852, -0.0024443818256258965, 0.010745787061750889, -0.018577301874756813, -0.034154895693063736, 0.006863254588097334, 0.012274119071662426, -0.040856774896383286, -0.03802793473005295, -0.025478526949882507, 0.02082708291709423, 0.04970401152968407, -0.038825325667858124, -0.026560699567198753, 0.036414168775081635, 0.006502530071884394, -0.024301426485180855, 0.05653878673911095, 0.030433740466833115, 0.005686154123395681, 0.04332488775253296, -0.029484465718269348, 0.1112549677491188, 0.01640346273779869, -0.029712291434407234, 0.0036974241957068443, 0.008643143810331821, 0.0738915279507637, -0.008287166245281696, 0.008514991961419582, 0.032161418348550797, -0.042983148247003555, -0.020580271258950233, 0.00005662273906636983, 0.002482352778315544, -0.014172667637467384, 0.05786777287721634, 0.03254112973809242, -0.03548388183116913, 0.002992587862536311, -0.010081294924020767, 0.05099502578377724, 0.015387739054858685, 0.006692385300993919, -0.014875130727887154, 0.0484129972755909, 0.0376102551817894, -0.002688820008188486, -0.09006716310977936, -0.010356584563851357, 0.056956470012664795, 0.05798168480396271, 0.028725046664476395, 0.004584995564073324, 0.02479504980146885, 0.005311190616339445, 0.008382094092667103, -0.01310948096215725, 0.030338812619447708, 0.011913394555449486, -0.03573068976402283, -0.025991134345531464, 0.007062602322548628, 0.014514407142996788, 0.005092857405543327, -0.05304545909166336, 0.022991428151726723, -0.06436081230640411, -0.02251679077744484, 0.017751432955265045, 0.0021406139712780714, -0.011524192057549953, 0.008111550472676754, -0.007750825956463814, -0.00998636707663536, -0.053387198597192764, -0.008382094092667103, -0.010356584563851357, 0.01581491343677044, 0.012160206213593483, -0.036717936396598816, -0.03631924092769623, 0.04594488441944122, 0.019441140815615654, 0.008581440895795822, -0.06155095621943474, 0.0073141600005328655, 0.06253819912672043, 0.0604877695441246, 0.039679672569036484, -0.023029398173093796, -0.0262189619243145, 0.002992587862536311, -0.052551835775375366, 0.026446787640452385, 0.010745787061750889, 0.041388366371393204, -0.026978380978107452, 0.005121335852891207, -0.09705382585525513, -0.02126374840736389, -0.03238924592733383, 0.009967382065951824, 0.02549751289188862, -0.01769447699189186, -0.0007469603442586958, -0.04024923965334892, -0.04343879967927933, -0.001769210328347981, 0.04921038821339607, 0.008671622723340988, -0.06914515048265457, -0.002999707357957959, -0.0787518098950386, 0.018045708537101746, 0.07392949610948563, 0.07324601709842682, -0.041122570633888245, -0.055551543831825256, -0.018795635551214218, -0.045413292944431305, -0.01980186626315117, 0.004551771096885204, -0.025440556928515434, 0.01062238123267889, 0.04678024724125862, 0.005159306805580854, 0.06007008999586105, 0.023485051468014717, -0.016726216301321983, -0.013346799649298191, -0.051260821521282196, 0.05061531439423561, -0.01725780963897705, -0.042565468698740005, 0.09188976883888245, 0.0418819896876812, -0.060677625238895416, 0.004509053658694029, -0.04165416583418846, 0.04002141207456589, 0.03221837431192398, -0.004376155324280262, -0.02682649716734886, -0.0052257562056183815, -0.0020836575422436, -0.055665455758571625, 0.035711705684661865, 0.03645214065909386, -0.01404926273971796, 0.06295588612556458, -0.0314209870994091, 0.05198226869106293, 0.027168234810233116, -0.0030970079824328423, 0.0330917090177536, -0.01613766700029373, 0.020314473658800125, 0.06436081230640411, 0.03297779709100723, 0.052551835775375366, -0.03259808570146561, -0.022459834814071655, -0.020903024822473526, -0.06671500951051712, 0.02380780316889286, -0.01274875644594431, -0.019137373194098473, -0.02880098856985569, 0.03432576358318329, 0.011780496686697006, -0.022858530282974243, 0.013441726565361023, -0.018719693645834923, -0.025858236476778984, 0.0072002471424639225, 0.04476778581738472, 0.01476121786981821, -0.02380780316889286, 0.05536168813705444, 0.024757077917456627, -0.03164881095290184, 0.028288379311561584, -0.017931794747710228, -0.04275532439351082, 0.04233764111995697, 0.009008615277707577, -0.029256640002131462, 0.03888228163123131, -0.05775386095046997, -0.010736294090747833, 0.04837502911686897, 0.019412662833929062, -0.024984903633594513, -0.007670137565582991, 0.023333165794610977, 0.0020409401040524244, 0.021187806501984596, -0.048526912927627563, -0.02039041556417942, 0.05798168480396271, 0.020314473658800125, -0.023579977452754974, 0.00003604276571422815, -0.016868608072400093, -0.0398695282638073, -0.012948104180395603, -0.046970102936029434, 0.0333385206758976, 0.07692920416593552, -0.020276503637433052, 0.03817981854081154, -0.019279764965176582, -0.10077498108148575, -0.0024420085828751326, 0.00983448326587677, 0.05832342430949211, 0.019061431288719177, -0.03518011048436165, 0.035825617611408234, -0.05824748054146767, 0.02737707644701004, -0.04461590200662613, -0.01012875884771347, -0.03508518636226654, 0.024852005764842033, 0.03723054379224777, -0.006754087749868631, -0.03895822539925575, -0.023883745074272156, -0.015492159873247147, 0.02724417671561241, -0.013660059310495853, 0.008514991961419582, -0.04974198341369629, -0.016213608905673027, -0.0495900996029377, 0.002733910456299782, 0.017020491883158684, 0.0168401300907135, 0.011182453483343124, -0.014068247750401497, -0.004390394315123558, 0.010812235996127129, 0.028155481442809105, -0.046400535851716995, 0.03320562094449997, 0.035123154520988464, -0.022706646472215652, -0.008230209350585938, 0.07446108758449554, -0.01982085034251213, 0.06401906907558441, -0.0116855688393116, 0.016887592151761055, -0.014789696782827377, 0.06003211811184883, 0.05107096582651138, -0.025269687175750732, 0.0013906870735809207, 0.022213023155927658, -0.03339547663927078, -0.03964170068502426, 0.02724417671561241, -0.0211118645966053, -0.04321097582578659, 0.002310296753421426, -0.03817981854081154, -0.0010821728501468897, 0.01982085034251213, 0.03550286591053009, -0.07822021842002869, 0.014580856077373028, -0.05232400819659233, -0.042717352509498596, 0.011116004548966885, 0.03254112973809242, -0.057677917182445526, -0.04252749681472778, -0.039148081094026566, -0.013726509176194668, -0.0007315346738323569, -0.027111278846859932, 0.04089474305510521, -0.049134448170661926, -0.0626521185040474, -0.0681958794593811, 0.07951123267412186, 0.025326643139123917, -0.0772329717874527, 0.02667461335659027, 0.04408430680632591, -0.022782588377594948, 0.013641074299812317, -0.008562455885112286, 0.021605487912893295, -0.023883745074272156, 0.023864760994911194, -0.008984883315861225, -0.0008110363851301372, 0.00855296291410923, 0.018292518332600594, 0.0014393373858183622, -0.049552127718925476, -0.017609041184186935, 0.0028383308090269566, 0.05915878713130951, -0.009293396957218647, 0.04457793012261391, -0.02906678430736065, 0.041388366371393204, 0.027604902163147926, 0.027434032410383224, 0.06090544909238815, 0.05953849479556084, 0.0259721502661705, -0.009193723089993, -0.00891368743032217, -0.10631874203681946, -0.04491966962814331, 0.03147794306278229, 0.04419821873307228, 0.029484465718269348, 0.004039162769913673, 0.023447079584002495, -0.05202024057507515, 0.013071510009467602, 0.013707523234188557, -0.020637227222323418, 0.04237561300396919, 0.04089474305510521, -0.003016319591552019, 0.020181575790047646, 0.03210446238517761, -0.00019118981435894966, 0.027339104562997818, 0.032446201890707016, 0.006279450841248035, -0.0759039893746376, 0.05760197713971138, -0.012207670137286186, -0.025687366724014282, -0.02251679077744484, -0.03292083740234375, -0.051526617258787155, -0.03945184871554375, -0.013650567270815372, -0.013251871801912785, -0.023750847205519676, 0.039565760642290115, 0.028326351195573807, -0.0237888190895319, 0.02380780316889286, 0.01669773831963539, 0.009155752137303352, -0.0009196096798405051, 0.005705139599740505, -0.01810266450047493, 0.041274454444646835, -0.019308242946863174, 0.03174373880028725, 0.026921425014734268, 0.037287499755620956, -0.01712491177022457, -0.0034885837230831385, 0.005520031321793795, 0.045830972492694855, -0.0006544060888700187, 0.013593610376119614, 0.03888228163123131, 0.023333165794610977, -0.017134403809905052, -0.018852591514587402, 0.020713169127702713, 0.007608435116708279, 0.020997950807213783, -0.011932380497455597, 0.002596265636384487, -0.03576866164803505, -0.036129385232925415, 0.022592732682824135, 0.000944528088439256, 0.025440556928515434, -0.002610504860058427, -0.03658503666520119, 0.014770710840821266, 0.03502822667360306, -0.044122278690338135, -0.004274108447134495, -0.020181575790047646, -0.01403027679771185, -0.014466943219304085, 0.053842850029468536, 0.009236440993845463, 0.02652272954583168, 0.05012169107794762, -0.01982085034251213, 0.08201731741428375, -0.023314181715250015, 0.005178292281925678, 0.0052874586544930935, -0.005083364900201559, -0.03705967590212822, -0.010726802051067352, 0.026143020018935204, 0.02323823980987072, -0.041008658707141876, -0.005434596445411444, 0.05577936768531799, -0.005121335852891207, -0.027168234810233116, -0.030680550262331963, -0.020618241280317307, 0.011495714075863361, 0.014875130727887154, 0.02768084406852722, 0.016859114170074463, -0.008728578686714172, -0.0003972120466642082, 0.05900690332055092, -0.04905850440263748, 0.07734688371419907, 0.015928825363516808, -0.07165123522281647, -0.11938075721263885, 0.02509881742298603, -0.062386319041252136, -0.003770992858335376, 0.008367854170501232, -0.04286923632025719, 0.05183038488030434, -0.04279329255223274, -0.029180698096752167, 0.005420357454568148, 0.043097060173749924, 0.024586208164691925, 0.020352445542812347, -0.026769541203975677, 0.07476485520601273, -0.06291791051626205, -0.017770418897271156, -0.017722954973578453, -0.010755280032753944, 0.06379124522209167, -0.02834533527493477, -0.03709764778614044, 0.03248417377471924, 0.04146431013941765, -0.030281856656074524, 0.008078325539827347, 0.01653636060655117, -0.012881654314696789, 0.045565176755189896, 0.10267353057861328, 0.003839815268293023, -0.03062359429895878, -0.014913101680576801, 0.03846460208296776, 0.03345243260264397, -0.04343879967927933, -0.033300548791885376, 0.02065621316432953, 0.038122862577438354, 0.052096184343099594, -0.03945184871554375, 0.011134989559650421, 0.019725924357771873, -0.06941094994544983, 0.05748806148767471, -0.02549751289188862, -0.027016350999474525, -0.00505488645285368, 0.0104704974219203, 0.06538602709770203, 0.06086748093366623, -0.029427509754896164, 0.028554176911711693, -0.012416509911417961, -0.06356342136859894, 0.0547921247780323, 0.012340568006038666, -0.017191361635923386, -0.026598671451210976, 0.0495900996029377, 0.07055007666349411, -0.003412641817703843, -0.04047706350684166, -0.00398695282638073, 0.05520980432629585, 0.03379417210817337, 0.06007008999586105, -0.050691258162260056, 0.04715995490550995, 0.0029213922098279, 0.03280692547559738, -0.006616442929953337, 0.039679672569036484, -0.005857023410499096, -0.04932430014014244, -0.019630996510386467, 0.016916071996092796, 0.01710592582821846, 0.0189759973436594 ]
381
mohawk.sender
reconfigure
null
def reconfigure(self, credentials): validate_credentials(credentials) self.credentials = credentials
(self, credentials)
[ 0.0029081963002681732, -0.018602319061756134, -0.005149007309228182, -0.025242384523153305, -0.03069974109530449, -0.023299362510442734, 0.018078548833727837, 0.026982655748724937, 0.03233863785862923, 0.049471016973257065, -0.003298912663012743, 0.017292892560362816, 0.0025998472701758146, 0.0394686795771122, -0.023552799597382545, -0.040245890617370605, 0.05203918740153313, 0.034805428236722946, -0.02365417592227459, -0.07035427540540695, 0.004870225675404072, -0.0478828102350235, 0.0192105695605278, 0.0497075617313385, -0.00675833597779274, 0.014657140709459782, -0.004506965167820454, 0.08373577892780304, 0.01660861074924469, -0.007244091015309095, -0.045145682990550995, 0.04021209850907326, 0.01518935989588499, 0.08461436629295349, 0.0267461147159338, -0.08164069801568985, 0.0027434618677943945, 0.07366585731506348, 0.01205518189817667, 0.01912609115242958, -0.06075743958353996, 0.024617237970232964, 0.0375763475894928, -0.022522153332829475, -0.009047722443938255, 0.052478477358818054, 0.018078548833727837, 0.08481711149215698, -0.033115845173597336, -0.027134718373417854, -0.03299757465720177, 0.02414415404200554, -0.031544532626867294, 0.0769098624587059, 0.04294922575354576, -0.01331392116844654, 0.05237710103392601, 0.06640064716339111, -0.018771277740597725, -0.0525122694671154, -0.06775231659412384, -0.05176885426044464, -0.038387347012758255, -0.051329560577869415, -0.006141637917608023, -0.050619933754205704, -0.02852017804980278, 0.03446751460433006, 0.056026604026556015, -0.005643210373818874, -0.008853419683873653, -0.03909697383642197, -0.041023097932338715, -0.09144028276205063, 0.006868158932775259, -0.01209742110222578, -0.0243975929915905, 0.04730835184454918, -0.015231599099934101, -0.0006668576970696449, -0.00462523614987731, 0.02451586350798607, -0.00594311160966754, 0.020291903987526894, -0.044368475675582886, 0.01990329846739769, 0.020207423716783524, -0.023316258564591408, 0.012823942117393017, -0.022150445729494095, 0.01924436166882515, 0.011472275480628014, -0.02414415404200554, -0.012595848180353642, 0.005123663228005171, 0.008777388371527195, -0.004350678529590368, -0.03233863785862923, -0.024988947436213493, -0.011269524693489075, -0.04575393348932266, -0.013575807213783264, 0.04761247709393501, -0.00537710078060627, -0.007598903961479664, -0.05403289571404457, 0.0012196684256196022, -0.034974388778209686, 0.01941332034766674, -0.004228183999657631, -0.025309966877102852, 0.006116293836385012, -0.029449447989463806, 0.06917157024145126, -0.012553608976304531, -0.003197537735104561, 0.017875798046588898, -0.046632517129182816, 0.026594052091240883, -0.024549655616283417, -0.012283275835216045, 0.03585297241806984, 0.0046674758195877075, 0.04808555915951729, 0.023299362510442734, 0.08501986414194107, -0.02480309270322323, 0.025698572397232056, 0.036900512874126434, -0.03565021976828575, -0.006682304665446281, 0.011590545997023582, -0.015265391208231449, -0.0031236184295266867, 0.053965311497449875, -0.017191516235470772, 0.031713489443063736, -0.008735149167478085, -0.0020137729588896036, 0.06403522938489914, 0.011337107978761196, 0.04504430666565895, -0.0003598285838961601, -0.0017455514753237367, 0.037035681307315826, 0.019109195098280907, -0.025157904252409935, -0.008980139158666134, -0.031460054218769073, 0.009791138581931591, 0.010492316447198391, 0.015299182385206223, 0.014471286907792091, -0.010348701849579811, -0.07934286445379257, 0.02963530272245407, -0.02245457097887993, -0.006243012845516205, 0.03544747084379196, 0.007674935273826122, 0.03015907295048237, -0.030649052932858467, 0.033808574080467224, 0.017825109884142876, -0.0004794194537680596, 0.016971871256828308, -0.00900548230856657, -0.05795272812247276, -0.0022450347896665335, -0.014986610040068626, -0.005470028147101402, -0.020511548966169357, 0.019717445597052574, 0.005334861576557159, 0.003284128848463297, 0.014716275967657566, 0.032541386783123016, -0.10022611916065216, 0.011151254177093506, -0.007163836155086756, -0.06102777272462845, -0.0166508499532938, 0.030023906379938126, 0.050957851111888885, 0.10374045372009277, 0.021998383104801178, -0.025090321898460388, 0.06383248418569565, 0.008587310090661049, -0.01089781615883112, 0.03222036734223366, 0.023434529080986977, -0.005288397893309593, 0.0017117597162723541, 0.04369264096021652, -0.042509932070970535, -0.014817651361227036, -0.03598813712596893, -0.00003775164077524096, 0.05501285195350647, -0.040043141692876816, -0.027506425976753235, 0.004942032974213362, -0.05031580850481987, 0.10049645602703094, 0.04710559919476509, -0.0000031968445455277106, -0.07150319218635559, 0.03977280482649803, -0.0017423834651708603, -0.009647523984313011, 0.012950660660862923, -0.0009926306083798409, -0.0065302420407533646, -0.003400287823751569, -0.02356969565153122, 0.11577029526233673, -0.03696809709072113, 0.03260897099971771, 0.06261598318815231, 0.07765328139066696, 0.03565021976828575, -0.02328246645629406, -0.06322423368692398, -0.001877550152130425, 0.021339446306228638, -0.024380696937441826, -0.09076444804668427, -0.023603487759828568, 0.0025829514488577843, 0.014859890565276146, -0.003117282409220934, -0.06068985536694527, 0.04453743249177933, 0.03663017973303795, -0.004124696832150221, 0.011506066657602787, -0.03581918030977249, -0.057175520807504654, 0.03326790779829025, -0.04058380797505379, 0.022758696228265762, -0.004443605896085501, -0.0096052847802639, -0.020291903987526894, -0.025005843490362167, -0.041969265788793564, 0.036866720765829086, -0.005081423558294773, 0.010517660528421402, -0.024617237970232964, -0.006281028501689434, -0.008232497610151768, 0.006948414258658886, -0.038184598088264465, -0.04480776563286781, -0.012654983438551426, -0.005453132092952728, 0.04433468356728554, -0.03507576137781143, 0.06139948219060898, -0.05778377130627632, 0.0014245305210351944, -0.0063401637598872185, 0.07981594651937485, 0.008980139158666134, -0.0019219017121940851, 0.0010940056527033448, 0.02394140511751175, 0.0051616788841784, 0.0469028502702713, 0.046260807663202286, -0.007391929626464844, 0.0469028502702713, 0.016752224415540695, 0.0021647794637829065, 0.039502471685409546, 0.04014451429247856, 0.006703424267470837, 0.00807621143758297, 0.07393619418144226, -0.03384236618876457, 0.003001123433932662, 0.08522261679172516, 0.01607639156281948, 0.006568257696926594, -0.006800575647503138, 0.004435157869011164, -0.008211378008127213, 0.005858632270246744, -0.01116815023124218, 0.009875617921352386, 0.056938979774713516, -0.04893035069108009, 0.0054108924232423306, -0.03571780398488045, -0.04582151770591736, 0.007552440278232098, -0.029787365347146988, 0.01809544488787651, -0.03619088977575302, -0.028047094121575356, -0.0788021981716156, -0.012731014750897884, 0.09664420038461685, -0.05896648019552231, 0.01912609115242958, 0.02311350777745247, 0.049639977514743805, 0.012038285844027996, 0.039130765944719315, 0.03157832473516464, -0.07914011180400848, 0.017191516235470772, 0.06346077471971512, -0.044233307242393494, 0.04713939130306244, -0.02196459099650383, 0.028587760403752327, 0.0063570598140358925, -0.032456908375024796, -0.028756719082593918, -0.07177352905273438, -0.023181091994047165, -0.007780534215271473, 0.040651388466358185, -0.005626314785331488, 0.04372643306851387, -0.055249396711587906, -0.017402714118361473, -0.09617111831903458, 0.0083254249766469, 0.027050239965319633, 0.018230611458420753, -0.014775412157177925, -0.09164303541183472, -0.022843174636363983, -0.01990329846739769, 0.019058506935834885, -0.037441179156303406, -0.008350769057869911, -0.056567270308732986, 0.0034995507448911667, -0.03298068046569824, 0.01252826489508152, -0.011117462068796158, 0.021660465747117996, -0.020612923428416252, 0.007375034037977457, -0.006416195072233677, -0.06292010843753815, 0.02311350777745247, 0.017977172508835793, 0.03980659693479538, 0.056938979774713516, -0.03656259551644325, -0.029618406668305397, 0.028334323316812515, -0.018484048545360565, -0.10238878428936005, -0.03267655521631241, -0.005347533151507378, 0.01924436166882515, -0.008878763765096664, -0.03720463812351227, 0.022809382528066635, -0.05589143559336662, -0.04305059835314751, 0.06643444299697876, -0.04352368414402008, 0.04693664237856865, -0.03906318172812462, 0.0037023008335381746, 0.013280129991471767, 0.014124921523034573, 0.033572033047676086, -0.06498140096664429, 0.006868158932775259, -0.03255828469991684, 0.010221983306109905, 0.03494059666991234, -0.013575807213783264, 0.06548827141523361, 0.027878135442733765, -0.0258337389677763, -0.02505652979016304, 0.0161608699709177, -0.027641594409942627, 0.053965311497449875, 0.033352386206388474, -0.044773973524570465, -0.0031595220789313316, 0.048896558582782745, 0.031882449984550476, 0.0042218477465212345, 0.0563645213842392, -0.03029423952102661, -0.00494625698775053, 0.0074595133773982525, 0.000812584301456809, -0.019649861380457878, -0.04335472360253334, 0.05386393517255783, 0.007391929626464844, 0.014234744943678379, 0.010652827098965645, 0.015958121046423912, 0.07224661111831665, 0.01598346419632435, -0.011539858765900135, -0.008726701140403748, -0.007054013200104237, 0.059811271727085114, 0.019937090575695038, 0.0043168868869543076, 0.010086815804243088, -0.0065133459866046906, -0.041023097932338715, 0.039502471685409546, 0.06815781444311142, -0.012274827808141708, -0.0031236184295266867, -0.0066104973666369915, 0.016270693391561508, 0.0008822796517051756, 0.05974368751049042, 0.018247507512569427, -0.020258111879229546, -0.00043453986290842295, -0.06437315046787262, -0.05007926747202873, 0.07657194137573242, -0.007176507730036974, 0.0038966028951108456, 0.002088748151436448, -0.0243975929915905, -0.020173631608486176, 0.02797950990498066, -0.05991264805197716, -0.02786123938858509, 0.02242077887058258, -0.06825919449329376, 0.01116815023124218, -0.04372643306851387, 0.05193781107664108, 0.0021447157487273216, -0.02242077887058258, 0.041225846856832504, 0.0073539139702916145, 0.004891345743089914, -0.015586411580443382, 0.007552440278232098, -0.04335472360253334, -0.052613645792007446, -0.016338277608156204, 0.045314643532037735, 0.019379528239369392, 0.0187881737947464, 0.07778844237327576, -0.015104880556464195, 0.011979150585830212, -0.06346077471971512, -0.03411269932985306, 0.02311350777745247, 0.015138672664761543, 0.001899725990369916, 0.03902938961982727, 0.0017434394685551524, -0.013009796850383282, 0.00361148570664227, 0.018433360382914543, -0.07657194137573242, 0.045889101922512054, 0.027759864926338196, -0.020714299753308296, 0.02311350777745247, 0.056938979774713516, 0.0563645213842392, -0.054337020963430405, -0.002589287469163537, -0.045720141381025314, 0.026610948145389557, 0.017943382263183594, 0.002234474755823612, 0.016617057844996452, -0.05126197636127472, -0.01192846242338419, -0.054168060421943665, 0.003584030084311962, 0.035413678735494614, -0.029736677184700966, -0.03350444883108139, -0.03642743080854416, 0.022657321766018867, -0.03548126295208931, -0.033808574080467224, 0.006002246867865324, 0.016093287616968155, 0.010314909741282463, -0.022657321766018867, 0.0258337389677763, -0.04784901812672615, 0.01895713247358799, -0.003001123433932662, 0.030885593965649605, 0.005562955047935247, -0.0291284266859293, 0.015772266313433647, 0.010492316447198391, 0.03683292865753174, -0.0014467062428593636, 0.029804261401295662, 0.03919834643602371, -0.019092299044132233, 0.039164554327726364, -0.0025850634556263685, -0.06893502920866013, 0.0060951742343604565, -0.03886043280363083, -0.007594679947942495, -0.03404511511325836, 0.013795453123748302, 0.033808574080467224, 0.025478925555944443, -0.013482879847288132, -0.024819988757371902, 0.03292999044060707, -0.03740738704800606, 0.02451586350798607, 0.02485378086566925, 0.017174620181322098, 0.005668553989380598, 0.010053024627268314, -0.027269884943962097, 0.04058380797505379, 0.0062599084340035915, -0.0394010990858078, -0.06558965146541595, -0.04876139387488365, -0.005068751983344555, 0.017858901992440224, -0.012249483726918697, -0.028790511190891266, -0.03524472191929817, -0.09988820552825928, -0.006462658755481243, -0.041969265788793564, -0.025309966877102852, -0.05852718651294708, -0.0750851109623909, -0.0007027613464742899, 0.009588388726115227, 0.022555945441126823, -0.00327568082138896, -0.07596369832754135, -0.08096486330032349, 0.007075132802128792, -0.03676534816622734, 0.01817992329597473, 0.04348989203572273, 0.03299757465720177, -0.030446302145719528, -0.002299946267157793, 0.04034726321697235, 0.050214435905218124, -0.05595901980996132, -0.004095129203051329, 0.010804889723658562, -0.05643210560083389, -0.004958929028362036, 0.01866990327835083, -0.026779904961586, 0.025783050805330276, 0.05859477072954178, -0.01426008902490139, -0.021339446306228638, 0.03646122291684151, -0.020917048677802086, -0.0001055329994414933, 0.03161211684346199, 0.02757401019334793, -0.009503909386694431, -0.04240855574607849, -0.05683760344982147, -0.01821371540427208, 0.017090141773223877, -0.005051855929195881, 0.04142859950661659, 0.010433181189000607, -0.0031067226082086563, -0.04298301413655281, 0.023789342492818832, -0.03416338935494423, -0.03700188919901848, -0.05143093690276146, 0.019092299044132233, 0.015569516457617283, -0.06285252422094345, 0.0022598186042159796, 0.04632839187979698, -0.04528085142374039, 0.0440981425344944, 0.023029029369354248, 0.008257841691374779, -0.036697763949632645, -0.045517392456531525, -0.04467260092496872, 0.021863216534256935, 0.004532308783382177, 0.004376022610813379, 0.028942573815584183, -0.002485800301656127, 0.05369497835636139, 0.01073730643838644, 0.02921290695667267, 0.044233307242393494, -0.03184865787625313, 0.0021214839071035385, -0.017335131764411926, 0.029854947701096535, -0.02015673741698265, 0.025107217952609062, -0.034636471420526505, 0.024211738258600235, -0.07474719732999802, 0.020410174503922462, -0.000020278306692489423, -0.011430035345256329, -0.07941044867038727, 0.0319669283926487, -0.005858632270246744, -0.030564574524760246, 0.0018669902347028255, -0.002760357689112425, -0.02955082431435585, -0.0016695201629772782, 0.02966909483075142, 0.005364429205656052, 0.0572768971323967, -0.06839435547590256, 0.06670477241277695, -0.04413193464279175, 0.05393151938915253, 0.0012439561542123556, -0.00970666017383337, -0.0019197898218408227, -0.013187202624976635, -0.06237943843007088, 0.0051659028977155685, 0.008625325746834278, -0.037474971264600754, 0.02052844502031803, -0.0018110227538272738, 0.01427698414772749, 0.0014023546827957034, 0.0009915746049955487, -0.009816482663154602, 0.020883258432149887, 0.07555819302797318, -0.011903119273483753, 0.010010785423219204, 0.031679701060056686, 0.0581216886639595, 0.05180264264345169, 0.03338617831468582, 0.03412959724664688, -0.01944711059331894, 0.0714356079697609, -0.0046590277925133705, 0.041597556322813034, 0.034180283546447754, -0.06967844069004059, 0.013330817222595215, 0.03639363870024681, 0.048896558582782745, -0.025157904252409935, -0.03009149059653282, -0.08380336314439774, 0.015223151072859764, -0.004735059104859829, -0.04805176705121994, 0.006652737036347389, -0.01936263218522072, -0.005740361288189888, 0.021457716822624207, 0.008481711149215698, 0.05048476904630661, 0.01705634966492653, -0.005030736327171326, -0.017005663365125656, 0.009402534924447536, -0.010205087251961231, -0.015299182385206223, 0.016287589445710182, -0.08549294620752335, 0.006568257696926594, -0.04913310334086418, -0.08508744835853577, 0.017774423584342003, 0.014538870193064213, 0.02044396661221981, 0.03889422118663788, -0.01953159086406231, 0.03272724151611328, 0.005723465699702501, -0.07535544782876968, -0.006564033683389425, -0.019007818773388863, -0.00034108475665561855, -0.0732603594660759, 0.0027561339084059, 0.013119619339704514, 0.03164590895175934, -0.001500561716966331, 0.008616878651082516, 0.02852017804980278, -0.005432012490928173, -0.06839435547590256, 0.03308205306529999, -0.002217578934505582, -0.019058506935834885, 0.004190168343484402, 0.0220828615128994, -0.004177496302872896, 0.0693405270576477, -0.02720230259001255, -0.04071897268295288, 0.007987508550286293, 0.05612798035144806, -0.0431181825697422, -0.018686799332499504, -0.03683292865753174, -0.06068985536694527, 0.11800054460763931, -0.029854947701096535, -0.015375213697552681, -0.001253460068255663, 0.05085647851228714, -0.009976993314921856, 0.07204385846853256, -0.02282627858221531, 0.015501933172345161, -0.03353824093937874, 0.022268716245889664, -0.022691112011671066, 0.02019052766263485, -0.021525299176573753, 0.015569516457617283, -0.009453222155570984, 0.019565382972359657, -0.03218657523393631, 0.032456908375024796, 0.02328246645629406, 0.0319669283926487, -0.018686799332499504, -0.03222036734223366, -0.049842726439237595, 0.028114676475524902, -0.0006182821234688163, 0.029973220080137253, 0.018602319061756134, 0.028368115425109863, -0.003400287823751569, -0.0021436596289277077, 0.02465103007853031, 0.008988586254417896, 0.04166514053940773, -0.0011330771958455443 ]
390
tufup
main
null
def main(args=None): # show version before anything else print(f'tufup {__version__}') # default to --help if args is None: args = sys.argv[1:] or ['--help'] # parse command line arguments options = cli.get_parser().parse_args(args=args) # exit if version is requested (printed above) if options.version: return # cli debugging if options.debug: logging.basicConfig(level=logging.DEBUG, stream=sys.stdout, force=True) # process command try: options.func(options) except Exception: # noqa logger.exception(f'Failed to process command: {args}')
(args=None)
[ -0.0049266330897808075, 0.015371465124189854, 0.007482381537556648, -0.03970884904265404, 0.053093019872903824, -0.038599662482738495, 0.0033113814424723387, -0.01076834462583065, 0.004305026959627867, -0.04229694604873657, 0.007075680419802666, 0.018809940665960312, -0.054645881056785583, -0.00009243214299203828, -0.041705381125211716, 0.02223917283117771, 0.0387105792760849, 0.022054309025406837, 0.024383598938584328, 0.03776777163147926, 0.027507804334163666, 0.009834779426455498, 0.012866553850471973, 0.07586830109357834, 0.013957252725958824, 0.014354711398482323, 0.021203933283686638, -0.05020913854241371, 0.02577008120715618, -0.030890820547938347, 0.0018890819046646357, -0.00862854067236185, -0.015316005796194077, 0.048286549746990204, -0.017987294122576714, -0.02020566537976265, 0.0008757945033721626, 0.0114061264321208, -0.01727556623518467, -0.013467363081872463, 0.06899134814739227, -0.06496130675077438, 0.04699249938130379, 0.009404970332980156, 0.01462276466190815, 0.020945122465491295, 0.027674183249473572, -0.028875799849629402, -0.09472445398569107, -0.07697748392820358, 0.013781632296741009, 0.014955520629882812, 0.02944887988269329, -0.008573081344366074, 0.009261700324714184, 0.04096592590212822, 0.023718087002635002, 0.009585212916135788, -0.007949164137244225, 0.005268631968647242, -0.06921318918466568, 0.047066446393728256, -0.003738880157470703, 0.01419757679104805, 0.008891971781849861, -0.03222184255719185, -0.008129406720399857, -0.020612366497516632, -0.023218953981995583, 0.017894862219691277, -0.024605436250567436, 0.006668978836387396, 0.02599191851913929, -0.027951478958129883, 0.04055922478437424, -0.032665517181158066, -0.03614096716046333, -0.012487581931054592, 0.028006939217448235, -0.005619874224066734, -0.010398616082966328, 0.011812827549874783, -0.014179090037941933, 0.032868869602680206, 0.00618370994925499, 0.05017216503620148, 0.021555176004767418, -0.018116699531674385, 0.014049685560166836, 0.022978629916906357, -0.04433045536279678, -0.03819296136498451, -0.006363952998071909, 0.06969383358955383, -0.015316005796194077, -0.03667707368731499, -0.012968229129910469, -0.006636627484112978, -0.04547661170363426, 0.05213172733783722, -0.03510572761297226, 0.0421120822429657, 0.02662045694887638, 0.018967075273394585, -0.012413636781275272, 0.02308954857289791, 0.014983249828219414, 0.0012524555204436183, -0.01664702780544758, -0.040226466953754425, -0.028487585484981537, -0.019540155306458473, 0.01637897454202175, -0.08866091072559357, -0.009067593142390251, -0.0074130576103925705, -0.04603120684623718, 0.0009150782134383917, -0.011359910480678082, -0.0011311382986605167, -0.02416176162660122, -0.03856268897652626, 0.02308954857289791, -0.03002195991575718, -0.006682843901216984, -0.03900636360049248, -0.02146274223923683, -0.02506759576499462, 0.011295207776129246, 0.054571934044361115, 0.05471982806921005, -0.02508608251810074, 0.022405549883842468, -0.02098209597170353, 0.045957259833812714, -0.036751020699739456, 0.013855577446520329, 0.029300987720489502, -0.0031265171710401773, 0.04854536056518555, 0.007685732562094927, -0.004492201842367649, 0.005966494791209698, -0.029356447979807854, -0.0430733785033226, -0.006271520629525185, -0.005042173434048891, -0.10100984573364258, 0.0395609550178051, 0.041150789707899094, 0.022849224507808685, 0.04004160314798355, -0.0073945713229477406, 0.04129868000745773, 0.028432127088308334, -0.02937493473291397, 0.013846335001289845, -0.05586598441004753, 0.01682264916598797, 0.03092779405415058, 0.0036094749812036753, 0.06618141382932663, 0.02889428660273552, -0.03815598785877228, -0.015389950945973396, -0.023902950808405876, 0.04532872140407562, 0.04506991058588028, 0.039597928524017334, 0.060783375054597855, -0.012783365324139595, -0.03261005878448486, -0.01607394963502884, 0.03667707368731499, 0.013837091624736786, 0.03159330412745476, -0.01727556623518467, 0.031260550022125244, 0.013088391162455082, -0.04529174789786339, -0.03684345260262489, -0.00423108134418726, 0.00050317746354267, -0.059082623571157455, 0.01928134448826313, -0.018135186284780502, 0.065515898168087, 0.03941306471824646, -0.004536107182502747, -0.04421953484416008, 0.02586251311004162, -0.017497403547167778, 0.0038867713883519173, 0.030779901891946793, 0.06917621195316315, -0.014696710743010044, -0.038747552782297134, -0.019651072099804878, 0.053425777703523636, -0.0706181526184082, 0.03771231323480606, 0.012589257210493088, 0.04166840761899948, -0.05734489858150482, -0.0009589834371581674, 0.044108618050813675, 0.00999191403388977, 0.014502602629363537, 0.022479496896266937, -0.031094171106815338, 0.07786483317613602, -0.05586598441004753, -0.0029786257073283195, 0.04359099641442299, -0.006853843107819557, -0.013624497689306736, 0.04514385759830475, -0.0249936506152153, -0.017913348972797394, 0.01211785338819027, 0.08244946599006653, 0.006627384573221207, 0.04159446433186531, 0.09339343756437302, -0.005148470401763916, 0.026084350422024727, 0.05331485718488693, 0.07749510556459427, 0.025270946323871613, -0.04218602925539017, -0.005093011073768139, -0.04865627735853195, -0.013402660377323627, 0.0052131726406514645, -0.08555518835783005, -0.009136917069554329, -0.0014315427979454398, 0.04865627735853195, 0.01275563519448042, -0.013402660377323627, -0.0020427503623068333, -0.00004827413067687303, 0.03296130150556564, 0.03296130150556564, -0.026158295571804047, 0.004020798020064831, -0.04118776321411133, -0.03037320077419281, -0.008697864599525928, 0.0378602035343647, -0.018366266041994095, 0.005435009952634573, 0.010500291362404823, 0.06074640154838562, -0.015981517732143402, 0.00887810718268156, -0.003930676728487015, -0.09346737712621689, -0.014752169139683247, 0.0232374407351017, -0.02105604112148285, -0.04373889043927193, 0.006345466244965792, 0.054128263145685196, -0.01572270691394806, -0.011840556748211384, -0.006539573892951012, -0.030132878571748734, 0.034588105976581573, -0.014354711398482323, 0.02811785787343979, 0.020852690562605858, -0.0152882756665349, 0.006793762091547251, -0.07882612943649292, -0.004314270336180925, 0.0025788566563278437, -0.008831891231238842, -0.014419414103031158, 0.03222184255719185, 0.016785677522420883, -0.003651069477200508, 0.008545351214706898, -0.03710225969552994, -0.00169035280123353, -0.0005303294165059924, -0.0016441367333754897, -0.020039288327097893, -0.03878452628850937, -0.0051207407377660275, 0.041076842695474625, 0.045587532222270966, -0.025659162551164627, -0.026638943701982498, 0.010389372706413269, 0.036399777978658676, -0.04399769753217697, -0.05006124824285507, 0.01868053525686264, -0.0688064843416214, -0.012099367566406727, -0.0885869637131691, -0.04429348185658455, -0.01462276466190815, -0.0009202774963341653, 0.04144657030701637, 0.06074640154838562, -0.07176431268453598, 0.04251878336071968, -0.0024910462088882923, 0.0017134607769548893, 0.008346621878445148, 0.006276142317801714, 0.07631197571754456, -0.027212021872401237, 0.009936454705893993, -0.017857888713479042, -0.015602544881403446, -0.007547084242105484, -0.029208555817604065, -0.059452351182699203, 0.0305210929363966, 0.04218602925539017, 0.04858233407139778, -0.0198359377682209, 0.019725019112229347, -0.04377586022019386, 0.036067020148038864, 0.04950665310025215, -0.008998269215226173, -0.0024032355286180973, 0.06828886270523071, 0.006225304678082466, 0.040226466953754425, -0.010028887540102005, 0.0009664935641922057, 0.01595378667116165, -0.029615256935358047, -0.0456245057284832, -0.03830387815833092, 0.05183594301342964, 0.10359793901443481, -0.02782207354903221, 0.01253379788249731, 0.02937493473291397, 0.00489428173750639, 0.014317738823592663, -0.013402660377323627, 0.05198383703827858, -0.02534489333629608, 0.012635473161935806, 0.038045067340135574, -0.007889083586633205, -0.0019272101344540715, 0.05952629819512367, -0.06052456423640251, 0.013374930247664452, -0.08415021747350693, 0.04662277176976204, -0.02776661515235901, -0.051318325102329254, -0.11779551953077316, -0.01211785338819027, -0.03900636360049248, -0.05897170677781105, -0.07483305782079697, 0.05545928329229355, -0.03721318021416664, -0.012228772044181824, 0.07172734290361404, 0.07442636042833328, 0.03647372126579285, -0.016563840210437775, -0.051688052713871, -0.034643564373254776, -0.010195265524089336, -0.040300413966178894, -0.00832351390272379, -0.07523976266384125, -0.034865401685237885, -0.038599662482738495, 0.0464748814702034, -0.0378602035343647, 0.009455807507038116, 0.00801386684179306, -0.04691855609416962, -0.030539579689502716, 0.03638128936290741, 0.008600810542702675, -0.03362681344151497, -0.058601975440979004, -0.0020138651598244905, 0.009072214365005493, -0.018098212778568268, -0.001699595944955945, -0.012265744619071484, 0.002057770499959588, 0.013911036774516106, -0.03826690465211868, 0.015038709156215191, -0.010102832689881325, -0.005763143766671419, 0.04625304415822029, 0.02861699089407921, 0.020187178626656532, -0.01317157968878746, -0.01752513460814953, 0.0021571351680904627, 0.010398616082966328, 0.043406132608652115, 0.01579665206372738, -0.011683422140777111, -0.05904565006494522, 0.01709994673728943, -0.03466205298900604, -0.009853266179561615, 0.025936458259820938, -0.007491624914109707, -0.020298097282648087, -0.00783824548125267, 0.0369543693959713, 0.023644141852855682, 0.004635471850633621, 0.0524275116622448, 0.022701334208250046, -0.014225305989384651, 0.03989371284842491, 0.018467942252755165, 0.03431081026792526, 0.007528597954660654, -0.0318521149456501, -0.01232120394706726, -0.005351820960640907, -0.005638360511511564, 0.008244946599006653, -0.004843444097787142, -0.016942812129855156, -0.01148007158190012, 0.055274419486522675, 0.02944887988269329, -0.06363028287887573, -0.0620034784078598, -0.004559215158224106, -0.03205546736717224, -0.026749860495328903, -0.00037550556589849293, -0.0026273836847394705, -0.0020855001639574766, 0.02381051890552044, -0.026731375604867935, 0.03397805616259575, 0.04266667738556862, -0.04739920049905777, -0.04747314751148224, 0.01878221146762371, -0.06788216531276703, -0.07579435408115387, 0.04887811467051506, -0.05730792507529259, 0.013458119705319405, -0.028487585484981537, 0.024328138679265976, 0.03566031903028488, 0.034495674073696136, 0.0073252469301223755, 0.0404113307595253, 0.09147084504365921, 0.033737730234861374, -0.07919585704803467, -0.019188912585377693, 0.0262692142277956, -0.028838828206062317, 0.013670713640749454, 0.06433276832103729, 0.04026344045996666, 0.013642983511090279, -0.01572270691394806, -0.04055922478437424, -0.05782554671168327, -0.08533335477113724, 0.031537845730781555, 0.07993531227111816, 0.041705381125211716, 0.09191451966762543, -0.065515898168087, -0.03150087222456932, 0.0507267601788044, -0.02549278363585472, 0.026010403409600258, -0.04854536056518555, 0.01913345232605934, -0.038599662482738495, 0.0048526874743402, -0.04366494342684746, 0.02809937112033367, -0.00722357165068388, -0.002447140868753195, 0.0369543693959713, -0.002435586880892515, -0.033238597214221954, 0.05102254077792168, -0.007376084569841623, 0.023145008832216263, -0.008457540534436703, 0.004242635332047939, 0.03948701173067093, 0.01664702780544758, 0.02296014316380024, 0.002708261599764228, -0.033238597214221954, -0.07897402346134186, -0.008891971781849861, 0.04762103781104088, 0.04895206168293953, 0.05331485718488693, 0.05264934524893761, -0.027082616463303566, -0.02599191851913929, 0.010703641921281815, 0.0064841145649552345, 0.0008526864694431424, -0.0396718755364418, -0.017867133021354675, 0.007759678177535534, 0.01017677877098322, 0.04451531916856766, 0.00489428173750639, 0.03512421250343323, 0.09879147261381149, 0.035993076860904694, -0.02146274223923683, 0.016813406720757484, 0.020076259970664978, -0.039745818823575974, -0.03970884904265404, -0.02416176162660122, -0.03730561211705208, 0.017959564924240112, 0.03693588450551033, -0.027655696496367455, 0.027951478958129883, 0.04632698744535446, -0.007514732889831066, -0.009391105733811855, 0.01948469504714012, -0.03551242873072624, 0.006627384573221207, 0.047362226992845535, 0.05398036912083626, -0.02747083269059658, -0.09132295101881027, -0.0032328141387552023, 0.016942812129855156, 0.04684460908174515, -0.013495092280209064, 0.08400233089923859, -0.02832120843231678, 0.03551242873072624, 0.0008590411744080484, -0.04266667738556862, -0.051872916519641876, -0.021166959777474403, -0.06673600524663925, 0.018874643370509148, -0.02471635490655899, 0.01860659010708332, 0.026176782324910164, -0.00701097771525383, 0.043332185596227646, -0.05727095529437065, -0.03885847330093384, -0.01620335504412651, 0.005726171191781759, -0.023329872637987137, -0.08222763240337372, 0.03728712350130081, 0.05693819746375084, 0.016582325100898743, 0.055902957916259766, 0.002876950427889824, -0.06340844929218292, -0.03248065337538719, 0.0020808784756809473, 0.034440215677022934, -0.012829581275582314, -0.01567649096250534, 0.021148473024368286, -0.04965454712510109, 0.0353645384311676, -0.025677649304270744, 0.019817451015114784, -0.07213404029607773, 0.0010335068218410015, -0.032887354493141174, 0.00006282496906351298, -0.007986136712133884, 0.017321782186627388, -0.031815141439437866, 0.05431312695145607, 0.0017458120128139853, -0.011590990237891674, 0.00634084502235055, 0.007935299538075924, -0.020538421347737312, 0.0215366892516613, 0.03066898323595524, -0.03926517441868782, -0.04266667738556862, -0.015214330516755581, 0.007108031772077084, -0.042629703879356384, -0.018042754381895065, -0.053425777703523636, 0.03647372126579285, 0.006179088726639748, -0.011507801711559296, 0.04329521581530571, -0.03593761473894119, 0.04699249938130379, 0.03660312667489052, 0.018246104940772057, 0.05523744598031044, -0.005416523199528456, -0.031131144613027573, -0.013707686215639114, 0.022350091487169266, -0.03540150821208954, -0.008993647061288357, -0.03200000524520874, 0.0515771359205246, 0.029190069064497948, -0.0893264189362526, -0.008254189975559711, 0.026953212916851044, 0.045883312821388245, -0.07830850780010223, 0.0012848067563027143, 0.013467363081872463, 0.004445985890924931, 0.019299831241369247, 0.002886193571612239, -0.010860776528716087, -0.0008584635215811431, 0.054571934044361115, 0.041779328137636185, -0.008891971781849861, -0.05619874224066734, 0.03586367145180702, 0.0688064843416214, -0.013726172968745232, 0.051170431077480316, 0.0069647617638111115, 0.01855112984776497, 0.06603351980447769, -0.029356447979807854, -0.007745813578367233, -0.001296360744163394, -0.04536569491028786, -0.0011981516145169735, -0.0020762570202350616, -0.03586367145180702, 0.006266898941248655, 0.06969383358955383, 0.00999191403388977, -0.04059619456529617, -0.05205778032541275, 0.03547545522451401, -0.0515771359205246, 0.004441364202648401, -0.019114967435598373, 0.020445989444851875, 0.004935876466333866, -0.004381283652037382, 0.02063085325062275, -0.05105951428413391, -0.0013217795640230179, 0.01076834462583065, 0.031408440321683884, -0.03455113247036934, -0.0072189499624073505, 0.055902957916259766, -0.0002489890903234482, -0.013199309818446636, -0.020242638885974884, 0.018985562026500702, -0.03220335766673088, 0.03567880764603615, -0.015981517732143402, 0.010186022147536278, -0.013032931834459305, -0.045957259833812714, -0.015528599731624126, 0.0014280765317380428, -0.05974813550710678, 0.026953212916851044, 0.021074527874588966, -0.061264023184776306, -0.03834085166454315, 0.01957712695002556, -0.041779328137636185, 0.08555518835783005, 0.01501097995787859, 0.02662045694887638, 0.06544195860624313, 0.004427499603480101, 0.0114061264321208, -0.03632583096623421, -0.018699022009968758, 0.02268284745514393, -0.0014049685560166836, 0.025104569271206856, 0.024827273562550545, 0.010389372706413269, 0.05091162398457527, -0.017358755692839622, 0.002405546372756362, -0.05771462991833687, 0.07609013468027115, -0.03547545522451401, -0.0001546794082969427, -0.023699600249528885, 0.010786830447614193, 0.016212597489356995, -0.060857322067022324, 0.06573773920536041, -0.04506991058588028, -0.05468285456299782, -0.034791458398103714, 0.0031611791346222162, -0.012940499931573868, 0.01119353249669075, -0.0956118032336235, 0.01617562398314476, -0.010019644163548946, -0.005430388264358044, -0.03159330412745476, 0.04617909714579582, -0.016915081068873405, 0.08415021747350693, -0.02416176162660122, -0.033016759902238846, -0.04026344045996666, -0.018495671451091766, -0.021703066304326057, 0.018569616600871086, -0.010675911791622639, 0.008471406064927578, 0.03688042238354683, 0.01682264916598797, -0.013162336312234402, -0.00466320151463151, 0.005809360183775425, -0.04614212363958359, 0.015694977715611458, 0.010010400786995888, -0.009044485166668892, 0.03815598785877228, 0.018772967159748077, 0.02761872299015522, -0.06592260301113129, 0.018911615014076233, 0.00506528140977025, -0.023292899131774902, -0.029430393129587173, 0.09132295101881027, 0.013513579033315182, -0.014225305989384651, 0.02479030005633831 ]
394
bitmath
Bit
Bit based types fundamentally operate on self._bit_value
class Bit(Bitmath): """Bit based types fundamentally operate on self._bit_value""" def _set_prefix_value(self): self.prefix_value = self._to_prefix_value(self._bit_value) def _setup(self): return (2, 0, 'Bit', 'Bits') def _norm(self, value): """Normalize the input value into the fundamental unit for this prefix type""" self._bit_value = value * self._unit_value self._byte_value = self._bit_value / 8.0
(value=0, bytes=None, bits=None)
[ 0.0065962281078100204, -0.03856256604194641, 0.050777118653059006, 0.03265824913978577, 0.03808283805847168, -0.027418168261647224, -0.08288183808326721, -0.021200185641646385, -0.017620693892240524, -0.07026135921478271, 0.023654166609048843, 0.09638796001672745, 0.05568508058786392, 0.051773469895124435, -0.02937397174537182, -0.0026200402062386274, 0.02352500893175602, 0.003083621384575963, -0.02481657825410366, 0.05118304118514061, 0.0014426365960389376, 0.03472475707530975, 0.06162630021572113, 0.07978206872940063, 0.008035405538976192, 0.0635083019733429, 0.009004081599414349, -0.02125553786754608, -0.03856256604194641, -0.055795785039663315, -0.06081445515155792, -0.0047788056544959545, 0.010590867139399052, -0.0263664610683918, 0.0184140857309103, -0.0849483460187912, 0.019428890198469162, 0.0760180726647377, -0.09985674172639847, 0.01922592893242836, 0.041440919041633606, -0.054799433797597885, -0.029798345640301704, 0.004594295751303434, -0.0016167678404599428, -0.01996396854519844, -0.0000065812728280434385, 0.014585506170988083, -0.06952331960201263, -0.028525227680802345, 0.020277636125683784, -0.033193327486515045, 0.01102446485310793, -0.031200619414448738, -0.024668971076607704, -0.010922985151410103, 0.02592363767325878, 0.05044500157237053, -0.015535731799900532, 0.08509595692157745, -0.041699230670928955, 0.07015065848827362, 0.00432445015758276, -0.055721983313560486, 0.012149975635111332, 0.007269689347594976, -0.03664366155862808, -0.01768527179956436, 0.0014818449271842837, 0.07970826327800751, -0.00819685123860836, 0.0324183851480484, 0.018718527629971504, 0.029890600591897964, 0.014484025537967682, -0.01565566286444664, -0.03394981846213341, 0.002952157985419035, -0.017140967771410942, -0.024650519713759422, 0.022953027859330177, 0.02214118465781212, 0.03059173747897148, -0.01011114101856947, -0.012380613014101982, -0.018266478553414345, 0.030241169035434723, 0.0004912575241178274, 0.06409873068332672, 0.018930712714791298, -0.04254797846078873, -0.02902340330183506, 0.019373537972569466, 0.05494704097509384, 0.01327548548579216, -0.011937788687646389, -0.01611693762242794, -0.03306417167186737, -0.05649692565202713, -0.023192891851067543, -0.05660763010382652, -0.008994856849312782, -0.03834115341305733, -0.00416531041264534, 0.03690197691321373, 0.03048103116452694, -0.005157051142305136, -0.03893158584833145, -0.040887389332056046, -0.07587046176195145, -0.023137537762522697, -0.02188287116587162, -0.04044456407427788, -0.01428106427192688, -0.013257035054266453, -0.002564687281847, 0.0024055475369095802, -0.0008712325943633914, 0.00007805632776580751, 0.03732634708285332, 0.03911609575152397, -0.0008291412377730012, 0.021587654948234558, 0.05612790584564209, 0.0457584485411644, 0.05730876699090004, 0.07018755376338959, 0.0048341588117182255, -0.03177260234951973, -0.030075110495090485, -0.01167024951428175, 0.025776030495762825, 0.01603390835225582, 0.06908049434423447, -0.015212839469313622, 0.02444755844771862, 0.020185381174087524, 0.020941870287060738, -0.038045935332775116, 0.08516976237297058, -0.0034157391637563705, 0.02289767563343048, 0.057271864265203476, -0.03317487612366676, 0.008432101458311081, 0.02370951883494854, 0.04915343225002289, -0.02125553786754608, -0.0022821566089987755, -0.0035748789086937904, -0.021809067577123642, -0.02983524650335312, 0.038304250687360764, 0.03096075728535652, -0.017740624025464058, 0.04073978215456009, 0.049670059233903885, -0.048009470105171204, 0.008671964518725872, 0.04919033497571945, -0.006886831019073725, 0.02507489174604416, -0.061478689312934875, -0.058268219232559204, 0.0061165024526417255, 0.04240037128329277, -0.03489081934094429, -0.046939313411712646, 0.00549378152936697, -0.005074021406471729, 0.00829371903091669, -0.06125728040933609, -0.0007495713653042912, 0.06306547671556473, 0.0583789236843586, -0.01035100407898426, -0.012076171115040779, 0.044356174767017365, 0.00888415053486824, -0.04878441244363785, 0.03911609575152397, 0.02116328291594982, -0.08347226679325104, -0.021126380190253258, 0.0251855980604887, 0.04752974584698677, 0.04428236931562424, 0.05125684291124344, 0.07719893008470535, 0.014354868791997433, 0.023672617971897125, 0.0018151159165427089, 0.004292161203920841, -0.010378680191934109, -0.009179366752505302, -0.041809938848018646, 0.036127034574747086, -0.01866317354142666, 0.053323354572057724, 0.0272890105843544, -0.0014818449271842837, -0.00006529920210596174, 0.04900582507252693, 0.03692042455077171, 0.022196538746356964, -0.03692042455077171, 0.031532738357782364, -0.0015037554549053311, -0.05586959049105644, -0.0391898974776268, -0.010498612187802792, -0.0368281714618206, 0.026218853890895844, 0.06657116115093231, 0.002398628508672118, -0.09343580156564713, -0.018552467226982117, 0.022860772907733917, -0.04767735302448273, -0.007177434395998716, 0.08221760392189026, 0.01276808325201273, 0.018838457763195038, -0.0072604636661708355, 0.03981723263859749, 0.04586915671825409, -0.007117468398064375, -0.012149975635111332, -0.0238017737865448, 0.005110923666507006, 0.055352963507175446, -0.019465792924165726, -0.027621127665042877, -0.01052628830075264, -0.011458063498139381, 0.011661023832857609, 0.08302944153547287, -0.005101697985082865, 0.026440264657139778, -0.00934081245213747, -0.011891661211848259, -0.0045043472200632095, 0.04383954778313637, 0.0037962906062602997, -0.03177260234951973, -0.04232656583189964, 0.020388340577483177, 0.02479812689125538, -0.025683775544166565, -0.01612616330385208, -0.07926544547080994, -0.028783541172742844, 0.012758857570588589, -0.016181515529751778, 0.09410003572702408, 0.01350612286478281, -0.0770513266324997, -0.01112594548612833, -0.00380090344697237, -0.004225276410579681, -0.03503842651844025, -0.009230106137692928, 0.022104283794760704, -0.01405965257436037, 0.019631851464509964, -0.01922592893242836, 0.01121820043772459, 0.04192064329981804, -0.024964185431599617, 0.01768527179956436, 0.14605802297592163, -0.00663774274289608, -0.02883889339864254, 0.004949477501213551, -0.061847709119319916, -0.0314958356320858, 0.03147738426923752, 0.030997660011053085, 0.01007423922419548, -0.0494486466050148, -0.00304210651665926, -0.04413476213812828, -0.0037270996253937483, 0.006277948617935181, -0.01905987039208412, 0.04365503787994385, -0.00804924312978983, 0.03743705525994301, 0.010747699998319149, -0.02620040252804756, 0.03450334817171097, 0.03644070029258728, 0.0030075109098106623, -0.004188374150544405, 0.04442998021841049, -0.015794046223163605, -0.05347096174955368, 0.033728405833244324, 0.057899199426174164, -0.009054821915924549, -0.017629919573664665, -0.0039093028753995895, -0.0025393171235919, 0.040223151445388794, -0.02204892970621586, -0.0182111244648695, 0.043359819799661636, 0.0018785411957651377, 0.015452702529728413, 0.052769824862480164, 0.009668317623436451, -0.019558047875761986, -0.028765089809894562, -0.0329350121319294, 0.03808283805847168, 0.007011375389993191, 0.024189244955778122, -0.024189244955778122, -0.007537228520959616, 0.07778936624526978, 0.010969112627208233, -0.013432319276034832, 0.0021299358922988176, 0.005973507184535265, -0.03276895359158516, -0.08000348508358002, -0.02509334310889244, -0.01957649737596512, -0.020904969424009323, 0.00464734248816967, -0.0470869205892086, 0.020369891077280045, 0.05074021592736244, 0.024466009810566902, -0.029503129422664642, -0.004068442620337009, 0.03204936534166336, 0.00827988050878048, -0.06258574873209, -0.041883740574121475, 0.06550100445747375, 0.02389402873814106, -0.030167365446686745, 0.007066728081554174, 0.01534199621528387, -0.010406357236206532, -0.04671790078282356, 0.0014991427306085825, 0.06671877205371857, 0.020185381174087524, 0.024410657584667206, -0.046644095331430435, 0.009073273278772831, 0.007223561871796846, 0.07413607090711594, -0.04900582507252693, -0.010406357236206532, -0.06317618489265442, 0.00910094939172268, 0.00893027801066637, 0.06686638295650482, -0.032732050865888596, 0.04889511689543724, 0.010996788740158081, -0.00017341045895591378, -0.016264544799923897, -0.03752930834889412, 0.029503129422664642, 0.013902818784117699, 0.01268505398184061, 0.028525227680802345, -0.03760311380028725, -0.09114787727594376, -0.044171664863824844, -0.010037337429821491, -0.00833984650671482, -0.030517933890223503, 0.009594514034688473, -0.057456374168395996, -0.06675567477941513, 0.08288183808326721, -0.006245659198611975, -0.028894247487187386, 0.055537473410367966, -0.020019320771098137, 0.008639674633741379, 0.040702879428863525, 0.02481657825410366, 0.0059227668680250645, 0.05682904273271561, -0.019355086609721184, 0.03760311380028725, 0.008593547157943249, -0.08981940895318985, -0.05657072737812996, -0.00517088919878006, 0.04457758739590645, 0.016633564606308937, -0.0025462363846600056, -0.022657813504338264, 0.03431883826851845, -0.002922175219282508, -0.038599465042352676, 0.024281499907374382, 0.0059688943438231945, 0.016541309654712677, 0.010553965345025063, 0.02014847844839096, -0.053507864475250244, 0.00540152657777071, -0.041145700961351395, -0.013515348546206951, 0.005613713059574366, 0.00874576810747385, -0.018700076267123222, -0.06830555945634842, 0.001484151347540319, -0.053065039217472076, 0.0024770451709628105, 0.03577646613121033, 0.02784254029393196, 0.008851861581206322, 0.022676263004541397, 0.035758014768362045, -0.004222969990223646, 0.05240080505609512, 0.03837805613875389, 0.023229792714118958, -0.07675611227750778, 0.04321221262216568, 0.00476496759802103, 0.02489038184285164, -0.05284363031387329, -0.028359167277812958, 0.045278724282979965, -0.10280890017747879, -0.037215642631053925, -0.02629265747964382, -0.019816361367702484, -0.02132934145629406, 0.02920791320502758, 0.036311544477939606, 0.029226364567875862, -0.010221847333014011, 0.026956893503665924, -0.0583789236843586, -0.00654548779129982, 0.04594295844435692, -0.00535539910197258, 0.01868162490427494, -0.016735045239329338, 0.015212839469313622, 0.0983806699514389, 0.007680223789066076, 0.029724542051553726, -0.023598812520503998, -0.060666847974061966, -0.018432537093758583, 0.0027584226336330175, -0.059190768748521805, -0.012186877429485321, 0.01075692567974329, -0.051957979798316956, -0.010655445046722889, -0.019355086609721184, 0.002449368592351675, 0.07070418447256088, -0.01640292815864086, 0.012389838695526123, 0.033267129212617874, -0.030776247382164, -0.01813732087612152, 0.014705437235534191, 0.003706342075020075, 0.029816797003149986, -0.010083464905619621, -0.07638709247112274, -0.0015510361408814788, -0.05594339594244957, -0.10539203882217407, 0.01313710305839777, -0.005646002013236284, -0.01429028995335102, -0.00792469922453165, 0.012242230586707592, -0.035462796688079834, 0.024502912536263466, 0.04963315650820732, 0.00196964293718338, -0.04273248836398125, -0.04487280175089836, 0.05347096174955368, 0.00842287577688694, 0.020812714472413063, -0.005973507184535265, 0.050666410475969315, -0.07572285085916519, 0.022104283794760704, -0.04531562700867653, 0.02992750145494938, -0.033267129212617874, -0.0026292656548321247, -0.0952070951461792, 0.020997224375605583, 0.028635932132601738, 0.01786055602133274, -0.04055527225136757, -0.028137756511569023, 0.019465792924165726, -0.030997660011053085, -0.052511509507894516, -0.025868285447359085, -0.005830511916428804, -0.033101070672273636, 0.0010828423546627164, -0.009825150482356548, -0.0161077119410038, 0.006997536867856979, -0.021643009036779404, -0.034189678728580475, 0.0096959937363863, 0.005549134686589241, -0.042252760380506516, -0.009815925732254982, 0.0030582512263208628, 0.0074080717749893665, -0.01414268184453249, -0.05605410039424896, 0.03439263999462128, 0.0178513303399086, 0.01378288771957159, -0.04900582507252693, -0.012196103110909462, 0.055242255330085754, -0.03022271767258644, 0.006757674273103476, -0.0286728348582983, 0.02810085378587246, 0.0305732861161232, 0.00553529616445303, -0.027990147471427917, 0.022399498149752617, 0.051810372620821, 0.02278696931898594, -0.01560953538864851, 0.09129548817873001, -0.0165689866989851, -0.005152438301593065, -0.002915255958214402, 0.01177173014730215, -0.038230445235967636, -0.029244815930724144, -0.00489412434399128, -0.01414268184453249, 0.06457845866680145, -0.012435965240001678, 0.026403363794088364, 0.03121907077729702, -0.012574347667396069, 0.02680928446352482, -0.02793479524552822, -0.006374816410243511, 0.005000217817723751, -0.00581206101924181, -0.06860077381134033, 0.01263892650604248, -0.00920704286545515, -0.05162586271762848, 0.016319898888468742, 0.046939313411712646, 0.01131045538932085, 0.050592608749866486, 0.03417122736573219, 0.03625619038939476, 0.0016086954856291413, 0.03634844720363617, -0.045278724282979965, 0.00489873718470335, -0.0005244116764515638, -0.010563190095126629, -0.01181785762310028, 0.04085048660635948, -0.014945300295948982, -0.014170358888804913, 0.04900582507252693, -0.02260245941579342, -0.012159201316535473, 0.00865351315587759, -0.06026092544198036, -0.018248027190566063, 0.005618325900286436, -0.023506557568907738, 0.0238017737865448, -0.021458499133586884, -0.06170010194182396, -0.03736324980854988, -0.06302857398986816, -0.05860033631324768, 0.04513111710548401, 0.010507837869226933, 0.0071912724524736404, -0.00988972932100296, -0.00860277283936739, -0.008344459347426891, -0.017611468210816383, 0.00869964063167572, 0.016993358731269836, -0.0019396600546315312, -0.010452484712004662, -0.041034996509552, 0.028765089809894562, 0.0080031156539917, -0.025942089036107063, -0.010369455441832542, -0.0583789236843586, -0.022750068455934525, -0.015388123691082, 0.03343319147825241, -0.0433967225253582, -0.04413476213812828, -0.08664584159851074, 0.020388340577483177, -0.04922723397612572, 0.037861425429582596, -0.039964839816093445, -0.02537010796368122, 0.00604269839823246, 0.02343275398015976, 0.04476209729909897, -0.02793479524552822, 0.04834158718585968, 0.02865438349545002, 0.03299036622047424, -0.036219287663698196, -0.041071899235248566, -0.04251107573509216, -0.03625619038939476, 0.02040679194033146, 0.016255320981144905, 0.08243901282548904, -0.01514826063066721, -0.00017110408225562423, -0.018155772238969803, -0.00008360603533219546, -0.011236651800572872, 0.01158722024410963, -0.03981723263859749, -0.07195885479450226, -0.02811930514872074, -0.035019975155591965, -0.04240037128329277, 0.08170097321271896, 0.023285146802663803, 0.0006653887685388327, 0.012113073840737343, -0.04310150817036629, -0.00704827718436718, 0.0198532622307539, 0.0022256504744291306, -0.03581336885690689, -0.06727229803800583, -0.054614923894405365, 0.018174223601818085, 0.019189028069376945, -0.003314258763566613, 0.0340605229139328, 0.04383954778313637, -0.018054291605949402, -0.007297365460544825, -0.006882218178361654, -0.0011410783044993877, 0.020665105432271957, -0.027325913310050964, -0.049854569137096405, -0.02370951883494854, 0.010950661264359951, 0.015895524993538857, 0.00608421303331852, -0.008086144924163818, 0.030148914083838463, 0.026255754753947258, -0.0066977087408304214, -0.010950661264359951, 0.02114483155310154, 0.04978076368570328, -0.03516758233308792, -0.017057938501238823, 0.019890164956450462, -0.04970696195960045, -0.055721983313560486, -0.04066597670316696, 0.013948946259915829, -0.005147825460880995, 0.013238583691418171, -0.007790929637849331, 0.03376530855894089, -0.007846282795071602, -0.006872992962598801, 0.061552494764328, -0.049116529524326324, 0.03725254535675049, -0.043064605444669724, -0.031145267188549042, 0.04073978215456009, 0.007468037307262421, 0.01419803500175476, -0.031458932906389236, -0.0165689866989851, 0.05889555439352989, 0.05756708234548569, 0.0209787730127573, 0.08465313166379929, -0.02902340330183506, -0.05243770778179169, 0.0013238583924248815, -0.03022271767258644, 0.0011843227548524737, 0.08170097321271896, -0.02627420611679554, 0.041551623493433, 0.0038285800255835056, -0.015950879082083702, 0.058637239038944244, 0.03138513118028641, -0.01186398509889841, 0.004269097466021776, 0.02793479524552822, 0.0177498497068882, -0.061109669506549835, 0.004691163543611765, 0.01378288771957159, 0.06572242081165314, -0.034374188631772995, 0.019521145150065422, -0.01021262165158987, 0.00037392080412246287, 0.0016848058439791203, -0.0272890105843544, 0.013330838643014431, 0.023746421560645103, 0.011199749074876308, -0.012103848159313202, 0.028045501559972763, -0.00636559072881937, -0.03413432836532593, 0.03679126873612404, 0.0023894028272479773, -0.0066331299021840096, 0.022953027859330177, 0.020166929811239243, -0.0007357331342063844, -0.018192673102021217, -0.0020572850480675697, -0.02564687281847, 0.06797343492507935, -0.012980270199477673, -0.004070749040693045, -0.032547540962696075, -0.044540684670209885, -0.052326999604701996, -0.06251194328069687, -0.046459585428237915, 0.03158809244632721, 0.006674645002931356, -0.01941043883562088, 0.0063609778881073, -0.005572198424488306, 0.041330210864543915 ]
395
bitmath
__abs__
null
def __abs__(self): return (type(self))(abs(self.prefix_value))
(self)
[ 0.036472219973802567, 0.002957490738481283, 0.05265970900654793, 0.019932102411985397, -0.000315637094900012, -0.019126087427139282, 0.019596261903643608, -0.004296652507036924, 0.02668248675763607, -0.02413010224699974, -0.011007155291736126, 0.03383587673306465, 0.05853690952062607, -0.02763962931931019, -0.02728699892759323, 0.0437263660132885, 0.00003499426384223625, 0.017665183171629906, -0.008387603797018528, 0.038151420652866364, 0.019344381988048553, -0.012216178700327873, -0.018555158749222755, 0.002045475412160158, 0.010637731291353703, 0.032593268901109695, -0.011687231250107288, -0.021057166159152985, -0.012274950742721558, -0.04493539035320282, -0.018320070579648018, -0.015910418704152107, 0.04134190082550049, -0.007867051288485527, 0.04809228330850601, -0.08644521236419678, -0.02857998199760914, 0.047487773001194, -0.09013944864273071, 0.0006003139424137771, 0.06733591854572296, -0.045573484152555466, -0.026883989572525024, -0.01065452303737402, 0.032710812985897064, 0.005360845476388931, 0.009688983671367168, -0.008219683542847633, -0.023273710161447525, -0.03224063664674759, 0.02051982283592224, 0.00404477259144187, 0.012274950742721558, -0.019982479512691498, -0.06891436129808426, 0.06972038000822067, 0.037143900990486145, 0.03321457281708717, -0.07287727296352386, 0.054708331823349, -0.026380229741334915, 0.057227130979299545, 0.03202234208583832, -0.06992188096046448, 0.017245382070541382, -0.02873110957443714, -0.03596846014261246, -0.005004015751183033, -0.021376214921474457, 0.07778053730726242, -0.037815582007169724, -0.03188800439238548, 0.0013486073585227132, 0.0036921408027410507, 0.058671243488788605, -0.06145871430635452, 0.026883989572525024, -0.006183653604239225, 0.02663210965692997, -0.04543915018439293, -0.0531298853456974, -0.004983025602996349, 0.029150910675525665, -0.015137987211346626, -0.02396218292415142, -0.04993940517306328, 0.0038726546335965395, -0.02085566334426403, 0.05182010680437088, 0.03559903800487518, -0.04859604313969612, -0.02968825399875641, -0.022669197991490364, -0.011141491122543812, 0.005965357646346092, 0.05074542015790939, -0.0219135582447052, -0.06498503684997559, 0.021393006667494774, -0.019999271258711815, 0.038520846515893936, 0.10706578195095062, -0.011166679672896862, 0.007073629647493362, 0.05981310084462166, 0.020066438242793083, -0.013635102659463882, -0.05430532246828079, -0.01015076320618391, 0.04245017468929291, -0.028193766251206398, 0.002714006695896387, -0.01936117373406887, -0.006838541477918625, -0.019932102411985397, -0.04083814099431038, 0.017463678494095802, 0.027337374165654182, 0.004407899919897318, 0.024062933400273323, 0.03704315051436424, 0.01129261963069439, -0.018723078072071075, -0.013794627040624619, -0.004252573475241661, 0.05074542015790939, 0.036707308143377304, 0.0014535574009642005, -0.01902533508837223, -0.021779222413897514, 0.03255968540906906, -0.0014776958851143718, -0.03959553316235542, 0.0655895471572876, 0.00843797903507948, 0.022215815261006355, 0.07556399703025818, 0.05981310084462166, -0.05030882731080055, 0.09759509563446045, 0.03976345434784889, 0.04056946933269501, 0.07428780198097229, -0.037815582007169724, -0.043524861335754395, 0.04671534150838852, 0.0070904213935136795, 0.09860261529684067, -0.02441556565463543, 0.018907791003584862, -0.03219026327133179, 0.0062802075408399105, 0.10034898668527603, 0.06498503684997559, 0.017018690705299377, -0.031031614169478416, -0.0011691428953781724, -0.03583412617444992, 0.010646127164363861, -0.025003286078572273, -0.031384244561195374, 0.031216325238347054, -0.007040045689791441, -0.10706578195095062, -0.004550631623715162, 0.01328247133642435, 0.0057386658154428005, -0.013433598913252354, -0.02058698982000351, -0.032660435885190964, -0.045573484152555466, -0.05269329249858856, -0.021376214921474457, 0.05776447430253029, -0.005025005433708429, 0.01781631074845791, -0.008597503416240215, 0.05514492467045784, -0.007065233308821917, 0.033147405833005905, 0.02124187909066677, 0.018723078072071075, -0.0601489394903183, -0.060887787491083145, 0.04755493998527527, 0.02235015109181404, 0.028714317828416824, 0.01245126686990261, 0.014122070744633675, -0.016649266704916954, -0.041644155979156494, 0.03133387118577957, 0.026262685656547546, -0.0012121724430471659, 0.009512667544186115, -0.027001533657312393, -0.007556399330496788, 0.0066706216894090176, 0.01580127142369747, 0.022702781483530998, -0.03704315051436424, 0.016380595043301582, -0.0030687376856803894, 0.043524861335754395, 0.03252610191702843, 0.033197782933712006, 0.015431846491992474, 0.015112798660993576, -0.08819157630205154, -0.006347375456243753, -0.01236730720847845, -0.02718624658882618, -0.009705775417387486, -0.006431335583329201, -0.012963423505425453, -0.05014090985059738, -0.028697526082396507, 0.003895743750035763, 0.011133095249533653, 0.05699204280972481, 0.03704315051436424, -0.038420092314481735, 0.04826020449399948, -0.02696795016527176, 0.026111558079719543, 0.029335621744394302, -0.010226326994597912, -0.005973753519356251, -0.00728352926671505, -0.007464043330401182, 0.049066219478845596, -0.06458202749490738, -0.03711031749844551, -0.02784113399684429, 0.011813171207904816, 0.04087172448635101, 0.03329853340983391, 0.052894797176122665, -0.026615317910909653, -0.014634227380156517, -0.043692782521247864, 0.02109074965119362, 0.055010586977005005, 0.06733591854572296, 0.005192925687879324, -0.040132876485586166, 0.03711031749844551, 0.008169307373464108, -0.015255531296133995, 0.006540483329445124, -0.0035473096650093794, 0.015381471253931522, 0.012409287504851818, 0.0015490618534386158, 0.0673694983124733, -0.023609550669789314, -0.051114846020936966, -0.0006370464689098299, 0.013080966658890247, 0.004941045772284269, -0.04708476364612579, -0.030527854338288307, 0.04466671869158745, -0.05769730731844902, -0.05682412534952164, 0.03395342081785202, -0.013937358744442463, 0.015255531296133995, -0.037580493837594986, 0.05682412534952164, 0.06270132213830948, -0.07529532164335251, -0.059443674981594086, 0.01685916632413864, -0.02884865365922451, 0.04537197947502136, 0.005033401772379875, 0.021544134244322777, -0.009915675036609173, -0.039427611976861954, -0.007686537690460682, -0.01565014198422432, -0.032643646001815796, -0.03341607749462128, -0.01885741390287876, 0.020670950412750244, 0.027421334758400917, -0.006557275541126728, 0.025439878925681114, -0.006792363710701466, 0.03925969451665878, -0.0017988429171964526, -0.0004759482108056545, -0.036707308143377304, 0.0529283806681633, 0.01478535495698452, 0.02685040608048439, -0.03217346966266632, 0.012812294997274876, 0.03754691034555435, -0.01936117373406887, -0.040300797671079636, -0.03687522932887077, 0.022047894075512886, -0.009521063417196274, 0.06209681183099747, 0.03727823868393898, 0.021006790921092033, 0.05615244433283806, 0.06256698817014694, -0.042584508657455444, -0.00024217211466748267, -0.04093889147043228, -0.0163973867893219, 0.002229137811809778, 0.05457399785518646, 0.027589254081249237, 0.010889611206948757, 0.03489377349615097, 0.08483317494392395, -0.004668175708502531, 0.04993940517306328, -0.049905821681022644, 0.051685772836208344, -0.035531871020793915, -0.03123311698436737, -0.08248230069875717, 0.009487478993833065, 0.017186610028147697, -0.02085566334426403, -0.06575746834278107, -0.012325326912105083, 0.013609915040433407, -0.005440607666969299, -0.014029715210199356, 0.012711542658507824, 0.09034095704555511, 0.050006572157144547, -0.0209732074290514, -0.03234139084815979, 0.056958459317684174, 0.015524202957749367, -0.005839417688548565, 0.021157918497920036, 0.026212310418486595, 0.04977148398756981, -0.034927356988191605, 0.027219830080866814, 0.09544572234153748, -0.006674819625914097, -0.004128732718527317, -0.04725268483161926, 0.0006003139424137771, -0.01758122257888317, 0.08946777135133743, 0.011888734996318817, -0.013274075463414192, -0.031384244561195374, 0.004592611454427242, 0.05568226799368858, 0.07260860502719879, -0.09813243895769119, 0.004760531708598137, -0.05131634697318077, 0.0034633497707545757, -0.0027056108228862286, -0.01764839142560959, -0.029604293406009674, 0.004962035454809666, -0.01606154628098011, -0.017018690705299377, -0.01649813912808895, -0.02003285475075245, -0.0820121243596077, -0.04087172448635101, 0.05813390016555786, 0.01996568590402603, 0.011771190911531448, -0.04849529266357422, -0.032643646001815796, 0.08087026327848434, 0.016917938366532326, -0.03427246958017349, 0.05326421931385994, -0.0019520698115229607, 0.006234029773622751, 0.013274075463414192, 0.019461926072835922, -0.012543623335659504, 0.06219756230711937, 0.06169380247592926, -0.07059356570243835, 0.019327590242028236, -0.06528729200363159, 0.004143425729125738, 0.007115609478205442, -0.01023472286760807, -0.03751332685351372, -0.01528911478817463, -0.008723443374037743, 0.021661678329110146, -0.02901657484471798, -0.027102285996079445, 0.046177998185157776, 0.009982842952013016, -0.029033366590738297, 0.029872965067625046, 0.03878951817750931, -0.022115062922239304, 0.04389428347349167, -0.05957801267504692, -0.024835366755723953, 0.0023403847590088844, -0.012619187124073505, 0.020167190581560135, -0.03616996482014656, -0.033197782933712006, -0.0141724469140172, -0.017430095002055168, -0.041576988995075226, 0.002621650928631425, -0.01376104261726141, 0.026497773826122284, -0.013441994786262512, 0.039024606347084045, -0.00038621597923338413, 0.0024915128014981747, 0.0006764027057215571, -0.06135796383023262, 0.06743666529655457, 0.005100569687783718, -0.03254289552569389, -0.023592758923768997, -0.07878805696964264, 0.03207271918654442, -0.013467183336615562, -0.03245893493294716, -0.012232971377670765, -0.007598379626870155, 0.004831897560507059, 0.043793532997369766, 0.01991531066596508, 0.016766810789704323, 0.03200554847717285, 0.004773125518113375, -0.039528366178274155, -0.023844638839364052, -0.0022669199388474226, 0.009663795121014118, -0.034373220056295395, -0.007900635711848736, -0.015826458111405373, 0.05715996399521828, -0.02434839867055416, 0.0035766956862062216, -0.02268598973751068, -0.08563919365406036, -0.03573337197303772, -0.023122582584619522, -0.038185004144907, -0.0022438308224081993, 0.0255742147564888, -0.026766445487737656, -0.06649631261825562, -0.07495947927236557, 0.09618456661701202, 0.04859604313969612, -0.0023193948436528444, -0.043860699981451035, -0.01656530611217022, 0.02446594275534153, -0.06555595993995667, -0.015902023762464523, -0.03373512625694275, -0.014936482533812523, 0.0438271164894104, -0.043793532997369766, -0.003528418717905879, 0.00254608690738678, -0.04127473384141922, -0.014130466617643833, -0.05937650799751282, 0.01897495798766613, 0.030645398423075676, -0.0005113688530400395, 0.021997518837451935, -0.0675710067152977, 0.012627582997083664, -0.006234029773622751, -0.02219902165234089, 0.002793768886476755, 0.08778856694698334, 0.0008233326952904463, 0.008265861310064793, 0.0038558626547455788, 0.01579287461936474, 0.030091261491179466, 0.008563918992877007, -0.0437263660132885, 0.018941374495625496, -0.03341607749462128, 0.0004347553476691246, -0.039192523807287216, 0.038252174854278564, 0.0046597798354923725, 0.010175950825214386, -0.022937869653105736, -0.02579250931739807, -0.029251661151647568, -0.02569175884127617, 0.015096006914973259, -0.00027365711866877973, -0.0017862488748505712, 0.0529283806681633, -0.02562458999454975, 0.01786668598651886, -0.011695627123117447, -0.03976345434784889, 0.012602395378053188, -0.02945316582918167, -0.00447926577180624, -0.059107836335897446, -0.06938453763723373, -0.03301306813955307, -0.035363949835300446, -0.016069943085312843, -0.03141782805323601, -0.01820252649486065, -0.015104402787983418, -0.015641747042536736, 0.027219830080866814, -0.043793532997369766, 0.018555158749222755, 0.06364167481660843, -0.014827335253357887, 0.08711688965559006, -0.06582463532686234, -0.05208878219127655, -0.02364313416182995, 0.056723371148109436, 0.006653829477727413, -0.03296269476413727, 0.005146747455000877, -0.025893261656165123, 0.05148426815867424, 0.01791706308722496, -0.0746908113360405, 0.02485215850174427, -0.00335000385530293, 0.015616558492183685, 0.005868803709745407, -0.04265167564153671, 0.014810542576014996, -0.008223881013691425, 0.03385267034173012, 0.049301307648420334, -0.007010659668594599, 0.012442870996892452, -0.0017652588430792093, 0.034490764141082764, 0.013013798743486404, -0.042685262858867645, 0.0713324099779129, 0.014382346533238888, -0.11028984934091568, 0.000013274534467200283, -0.01706906594336033, 0.03872234746813774, 0.016934730112552643, -0.0010447772219777107, -0.030225597321987152, -0.019260423257946968, 0.011712418869137764, -0.0247346144169569, -0.008160911500453949, 0.06427977234125137, -0.012182595208287239, -0.050006572157144547, 0.010721690952777863, -0.021040374413132668, 0.016917938366532326, -0.01880703866481781, -0.021124335005879402, -0.0039985948242247105, -0.00045443346607498825, 0.029150910675525665, 0.01858874224126339, 0.032761190086603165, -0.03373512625694275, -0.08530335128307343, -0.0245834868401289, 0.003142202738672495, -0.04177849367260933, -0.02817697450518608, -0.01601117104291916, -0.05077900364995003, -0.024667445570230484, -0.0347258523106575, 0.015574579127132893, 0.018051398918032646, 0.04009929299354553, 0.008458969183266163, 0.017564430832862854, 0.0457078218460083, 0.0040006935596466064, -0.005818427540361881, 0.03946119546890259, -0.01996568590402603, -0.03397021442651749, -0.026867197826504707, 0.013316054828464985, -0.001069440389983356, 0.0005355073371902108, -0.0247346144169569, 0.006406147498637438, -0.03717748448252678, 0.006569869350641966, 0.0035452106967568398, -0.06374242901802063, 0.030376726761460304, -0.07596700638532639, 0.00035761710023507476, -0.008622691035270691, 0.04520406201481819, -0.0022585238330066204, 0.02025115117430687, 0.048025116324424744, -0.013198510743677616, 0.0475885234773159, -0.0291341170668602, 0.036371469497680664, 0.04822662100195885, 0.010520187206566334, -0.053398557007312775, -0.06458202749490738, -0.007342301309108734, 0.0026699278969317675, 0.03180404752492905, -0.0145670585334301, 0.021157918497920036, -0.025423085317015648, 0.0034717456437647343, -0.05494341999292374, 0.044028621166944504, -0.04953639581799507, -0.012350515462458134, -0.019596261903643608, -0.040703803300857544, -0.05299554765224457, -0.04500255733728409, -0.015465430915355682, 0.034037381410598755, -0.03549828380346298, 0.041308317333459854, 0.020016063004732132, -0.0056756953708827496, 0.021174710243940353, 0.016355406492948532, 0.021174710243940353, -0.033533621579408646, -0.05991385132074356, -0.04641308635473251, -0.004613601602613926, 0.025036869570612907, 0.057663723826408386, 0.004074158612638712, 0.023324087262153625, -0.02728699892759323, 0.02036869525909424, -0.048394542187452316, -0.0035913886968046427, 0.01853836700320244, -0.05030882731080055, -0.03341607749462128, -0.06424618512392044, -0.0012289644218981266, 0.030746150761842728, 0.0511484295129776, 0.031652916222810745, -0.03865518048405647, 0.04698401317000389, 0.0038684566970914602, -0.016095131635665894, -0.001380092347972095, 0.03341607749462128, -0.03878951817750931, 0.024163685739040375, 0.021712053567171097, 0.013845003210008144, -0.04587573930621147, -0.014264803379774094, -0.050846170634031296, 0.013324450701475143, 0.04023363068699837, 0.013970943167805672, 0.04980506747961044, -0.036035630851984024, 0.015037234872579575, 0.040267214179039, 0.004166514612734318, 0.04332335665822029, -0.009504271671175957, -0.015633350238204002, 0.015431846491992474, 0.013307658955454826, 0.0003870030923280865, 0.03771482780575752, -0.00005762410364695825, -0.008563918992877007, 0.03549828380346298, 0.007942615076899529, 0.0696532130241394, -0.03390304744243622, -0.06592538952827454, 0.02873110957443714, 0.005772249773144722, 0.0026804227381944656, 0.056622620671987534, 0.005192925687879324, 0.04271884635090828, -0.03222384676337242, -0.026917574927210808, 0.06750383228063583, 0.01986493542790413, 0.016657663509249687, -0.002378166886046529, 0.02884865365922451, 0.006557275541126728, -0.09987881034612656, -0.024667445570230484, 0.003992297686636448, 0.03566620498895645, 0.022064685821533203, 0.013131342828273773, 0.048965469002723694, 0.038185004144907, 0.004114039707928896, 0.0009497974533587694, -0.025842886418104172, 0.029503541067242622, 0.009966051205992699, 0.012241367250680923, -0.01656530611217022, 0.010083595290780067, -0.014180842787027359, 0.03433963656425476, -0.02147696726024151, 0.05027524381875992, 0.010201139375567436, -0.02235015109181404, 0.03188800439238548, 0.017161423340439796, 0.06296999752521515, -0.021040374413132668, 0.03229101374745369, -0.052458204329013824, -0.0009854803793132305, -0.014155655167996883, -0.010587355121970177, -0.01813535951077938, -0.07039205729961395, -0.05682412534952164, -0.014231218956410885, 0.0642126053571701, -0.018941374495625496, 0.01148572750389576, -0.01125903520733118, 0.024784989655017853 ]
396
bitmath
__add__
Supported operations with result types: - bm + bm = bm - bm + num = num - num + bm = num (see radd)
def __add__(self, other): """Supported operations with result types: - bm + bm = bm - bm + num = num - num + bm = num (see radd) """ if isinstance(other, numbers.Number): # bm + num return other + self.value else: # bm + bm total_bytes = self._byte_value + other.bytes return (type(self))(bytes=total_bytes)
(self, other)
[ -0.03417810797691345, -0.0723033919930458, 0.008618306368589401, 0.10299544781446457, -0.004092427436262369, -0.03486056625843048, -0.03910285606980324, -0.00573170417919755, -0.006778443232178688, -0.04714476317167282, 0.054227545857429504, -0.012311866506934166, 0.05175594985485077, 0.03984064608812332, -0.01778995431959629, 0.03633614629507065, 0.020787226036190987, -0.007170394062995911, 0.02477128989994526, -0.014082561247050762, -0.029345586895942688, 0.058691173791885376, 0.04758743941783905, 0.05935518443584442, -0.0012830625055357814, 0.08550982922315598, 0.06629040837287903, -0.02895824797451496, -0.06433526426553726, 0.021137675270438194, -0.019864989444613457, -0.061900559812784195, 0.014460679143667221, -0.01806662604212761, 0.013353994116187096, -0.009545154869556427, -0.015050910413265228, 0.07569722831249237, -0.10019184648990631, 0.025047961622476578, 0.006100598722696304, -0.03537701815366745, 0.0192747563123703, -0.01903497613966465, 0.006534050218760967, -0.03899218887090683, -0.0287922453135252, 0.0003524675266817212, -0.009572821669280529, -0.01270842831581831, 0.0001649939949857071, -0.03932419419288635, 0.00989560503512621, 0.036004140973091125, -0.009812603704631329, 0.04338203743100166, 0.004906301852315664, 0.014027227647602558, -0.09148592501878738, 0.09819981455802917, 0.022225916385650635, 0.010670283809304237, 0.0009654670720919967, -0.05673602968454361, 0.0014871074818074703, 0.013040433637797832, -0.09126459062099457, -0.020897895097732544, 0.012754539959132671, 0.080935537815094, 0.005639480426907539, 0.01289287582039833, -0.007294896058738232, 0.025767305865883827, 0.004583518952131271, 0.014267008751630783, 0.02906891517341137, 0.030378492549061775, 0.04662831127643585, -0.0004132775356993079, 0.05312086269259453, -0.0012715344782918692, 0.020178548991680145, -0.020049436017870903, -0.023074373602867126, -0.02674487791955471, -0.061420995742082596, -0.005003136582672596, -0.024107279255986214, -0.03251808136701584, -0.029806705191731453, -0.03032315894961357, -0.0226870346814394, 0.015244580805301666, 0.051497723907232285, -0.013187991455197334, -0.026634208858013153, -0.03629925474524498, -0.030968723818659782, -0.0032670251093804836, -0.02453150972723961, 0.0624907910823822, 0.03766416758298874, -0.06994246691465378, 0.04264424741268158, -0.038733962923288345, 0.0010040857596322894, -0.04548473656177521, 0.0006357672391459346, 0.060941431671381, 0.0052060289308428764, -0.016489600762724876, -0.07175005227327347, -0.009711157530546188, -0.0111037353053689, 0.0059530409052968025, 0.003313136985525489, 0.008097242563962936, -0.012201197445392609, 0.07872216403484344, 0.04544784873723984, 0.010633395053446293, 0.046480752527713776, 0.03207540884613991, 0.0033177481964230537, 0.020049436017870903, 0.08115687221288681, -0.027611780911684036, -0.02862624265253544, -0.06614284962415695, 0.0014490651665255427, 0.005210639908909798, -0.010264500044286251, 0.08108308911323547, 0.030489161610603333, 0.03598569333553314, 0.0033961383160203695, 0.021451236680150032, 0.008705918677151203, 0.006557106506079435, 0.011989083141088486, 0.02043677493929863, 0.08934633433818817, 0.002471595536917448, -0.027556447312235832, 0.024586843326687813, 0.00967426784336567, 0.019422315061092377, -0.06820866465568542, 0.0073686749674379826, -0.0192747563123703, 0.017974402755498886, 0.05588757246732712, 0.03840195760130882, -0.001101496978662908, 0.060572538524866104, 0.07237717509269714, 0.009462153539061546, -0.05850672721862793, -0.04817767068743706, 0.008064963854849339, 0.0258595310151577, 0.021027008071541786, -0.04234912991523743, 0.027538001537322998, 0.00955437682569027, -0.013224881142377853, -0.018887417390942574, -0.036797262728214264, 0.003105633659288287, 0.016194485127925873, -0.04954257979989052, 0.04039398953318596, 0.03087650053203106, 0.037203047424554825, 0.0065109943971037865, -0.028736909851431847, -0.01016305387020111, -0.013741333968937397, -0.0015827895840629935, 0.029124250635504723, 0.01313265785574913, -0.05112883076071739, -0.031909406185150146, 0.021100787445902824, 0.01102073397487402, 0.008567583747208118, 0.020658113062381744, 0.03452856093645096, -0.01238564494997263, 0.05367420241236687, 0.04629630595445633, 0.006898334249854088, -0.011703189462423325, -0.010873176157474518, -0.03137451037764549, -0.026080867275595665, 0.004371404182165861, 0.026726434007287025, 0.10233143717050552, -0.07377897202968597, -0.016572602093219757, 0.03478678688406944, 0.01738417148590088, 0.007345619145780802, -0.08403424918651581, -0.03255497291684151, 0.06226945295929909, -0.03203852102160454, -0.014718905091285706, 0.011638632975518703, -0.011601743288338184, 0.006663163658231497, 0.07455365359783173, 0.008106464520096779, -0.04478383809328079, -0.01562269777059555, -0.037922393530607224, -0.0009406819008290768, 0.0010830522514879704, 0.05112883076071739, -0.003045688383281231, -0.0021361317485570908, -0.013261770829558372, 0.033716991543769836, -0.006580162327736616, -0.03620703145861626, -0.003338498529046774, 0.019293202087283134, 0.03183562681078911, 0.07182382792234421, 0.02794378623366356, -0.02774089388549328, 0.01988343335688114, 0.00999705120921135, 0.028404904529452324, 0.02060277946293354, -0.005685592070221901, -0.020787226036190987, -0.024623733013868332, -0.054707109928131104, 0.032794754952192307, 0.0114634083583951, 0.027316665276885033, -0.046001192182302475, -0.04895234853029251, 0.011869192123413086, 0.04268113523721695, -0.04264424741268158, 0.029345586895942688, 0.017439505085349083, -0.034344110637903214, 0.01874908246099949, -0.030378492549061775, 0.0000757243178668432, -0.011011512018740177, -0.02401505596935749, -0.03987753391265869, -0.0013683694414794445, 0.013962671160697937, 0.054153766483068466, 0.00837391335517168, 0.06263834983110428, -0.01103917881846428, -0.07152871787548065, -0.01613915152847767, -0.0011095666559413075, 0.027408888563513756, -0.00551036698743701, 0.05407998710870743, 0.1263096034526825, -0.040061984211206436, -0.008931866846978664, 0.007059725467115641, -0.0385495126247406, -0.0192747563123703, 0.02429172769188881, 0.07540211081504822, -0.03961930796504021, -0.036926377564668655, -0.0062619904056191444, -0.0003928153892047703, -0.03449166938662529, -0.06592151522636414, -0.03270253166556358, 0.04972703009843826, 0.024162614718079567, -0.012127419002354145, -0.024642176926136017, -0.04850967600941658, 0.029622258618474007, 0.009162425994873047, 0.01511546690016985, 0.011435740627348423, 0.02698465995490551, -0.002506179502233863, -0.04998525604605675, 0.002939630998298526, 0.018924307078123093, 0.0444149412214756, -0.06415081769227982, 0.018260296434164047, 0.022299695760011673, -0.006492549553513527, -0.02397816628217697, -0.04338203743100166, 0.09414196759462357, -0.001793751260265708, -0.028238901868462563, 0.04799322411417961, -0.006086765322834253, 0.031171616166830063, -0.012228865176439285, 0.025601303204894066, 0.027482667937874794, -0.00973882433027029, 0.006672386080026627, 0.06426148861646652, -0.014958687126636505, 0.03137451037764549, -0.0004354688571766019, -0.009286927990615368, -0.022023024037480354, -0.036446813493967056, 0.015014021657407284, -0.02080566994845867, -0.045632295310497284, -0.028331127017736435, 0.028810689225792885, -0.00023819657508283854, -0.06389258801937103, -0.0017718481831252575, 0.028460239991545677, 0.05762137845158577, -0.04566918686032295, -0.041906457394361496, 0.04079977422952652, 0.009932494722306728, -0.029898928478360176, 0.029087360948324203, 0.034676119685173035, -0.00556109007447958, -0.0006023361347615719, 0.005238307174295187, 0.010753285139799118, -0.032665640115737915, -0.014645126648247242, -0.007557733450084925, 0.04397226870059967, 0.0014824962709099054, -0.046554531902074814, -0.058764953166246414, -0.02169101871550083, -0.0202338844537735, 0.041943345218896866, 0.018417077139019966, -0.021414346992969513, -0.0076637910678982735, 0.03980375826358795, -0.030138710513710976, 0.027759339660406113, 0.018684525042772293, 0.007525455206632614, 0.042791806161403656, -0.05345286801457405, 0.015973147004842758, -0.04707098379731178, -0.02425483800470829, 0.009508265182375908, -0.03449166938662529, 0.004099344369024038, -0.003218607744202018, -0.029732925817370415, -0.00217417418025434, 0.0015412889188155532, 0.0143961226567626, -0.039250414818525314, 0.043714042752981186, -0.049800805747509, -0.028497129678726196, 0.010596505366265774, 0.013612220995128155, -0.05987163633108139, 0.02794378623366356, 0.04083666205406189, 0.0551866739988327, 0.0283126812428236, -0.04271802678704262, -0.013049655593931675, 0.06817176938056946, -0.013732112012803555, 0.004846356343477964, -0.00008480258838972077, -0.00437601562589407, -0.09487976133823395, -0.00347913964651525, -0.005302863661199808, -0.024383950978517532, -0.06455660611391068, -0.025287743657827377, 0.056477803736925125, 0.011398851871490479, -0.035875026136636734, 0.04592741280794144, -0.011767745949327946, 0.004364487249404192, -0.006082154344767332, -0.03589347004890442, -0.04338203743100166, 0.031743403524160385, -0.06780287623405457, -0.05858050659298897, -0.006358825135976076, -0.01313265785574913, -0.04216468334197998, -0.029659148305654526, 0.004341431427747011, -0.07673013210296631, 0.03183562681078911, 0.035118792206048965, 0.050095923244953156, 0.03259186074137688, -0.04065221548080444, 0.03781172260642052, -0.012127419002354145, -0.020529000088572502, 0.03906596824526787, 0.038733962923288345, -0.060572538524866104, 0.019772764295339584, 0.027962232008576393, -0.020289218053221703, 0.0192747563123703, -0.023701494559645653, 0.010227610357105732, -0.040098872035741806, -0.026320649310946465, -0.0721927285194397, 0.023074373602867126, 0.0285524632781744, 0.016526490449905396, 0.005750149022787809, -0.02071344666182995, 0.01947764866054058, -0.006755387410521507, -0.11716101318597794, 0.00009971689723897725, 0.00009085477358894423, -0.06197433918714523, -0.02408883534371853, 0.04002509266138077, -0.026560431346297264, 0.04087354987859726, 0.0033776937052607536, 0.05157150328159332, -0.0314851775765419, 0.01698760874569416, -0.035875026136636734, 0.0038249786011874676, -0.018564634025096893, -0.03557990863919258, 0.008941089734435081, -0.02180168777704239, 0.017937513068318367, -0.04629630595445633, 0.029732925817370415, 0.059650301933288574, -0.01637893170118332, -0.007926628924906254, 0.053305309265851974, 0.025527525693178177, -0.03932419419288635, 0.024365507066249847, -0.02517707459628582, 0.006381881423294544, 0.02899513766169548, 0.0029465476982295513, -0.0253799669444561, -0.016415821388363838, -0.06282279640436172, 0.02501107193529606, -0.01435923296958208, 0.012311866506934166, -0.011629411019384861, 0.009508265182375908, 0.0672864243388176, 0.032222967594861984, 0.03939797356724739, 0.09480597823858261, 0.016397377476096153, -0.013381661847233772, 0.05437510460615158, -0.03688948601484299, 0.002651431830599904, -0.05120260640978813, 0.025047961622476578, -0.027113772928714752, -0.02196769043803215, -0.005911540240049362, 0.03336654230952263, -0.010605727322399616, -0.019901879131793976, -0.051423944532871246, -0.02916114032268524, 0.023314155638217926, 0.033348094671964645, -0.028036009520292282, 0.02019699476659298, -0.012985099107027054, 0.04530028998851776, -0.06522061675786972, -0.0013948837295174599, -0.004576602019369602, 0.01944075897336006, 0.027777783572673798, 0.0195145383477211, 0.0036912544164806604, 0.005072304513305426, -0.045558515936136246, -0.06769220530986786, 0.015170801430940628, 0.025527525693178177, -0.049653250724077225, -0.04043087735772133, -0.010356723330914974, -0.007995796389877796, -0.10196254402399063, -0.0353216826915741, -0.010993067175149918, 0.019864989444613457, -0.03142984211444855, -0.014599014073610306, -0.010448947548866272, -0.018979640677571297, -0.0356721356511116, 0.0003181718348059803, 0.003340804250910878, 0.013464663177728653, 0.024992628023028374, -0.03646525740623474, 0.00687527796253562, -0.004832522943615913, 0.02333260141313076, -0.005284418817609549, -0.04434116184711456, 0.06326547265052795, -0.0019194061169400811, 0.009439097717404366, 0.002930408576503396, -0.04054154455661774, -0.059687189757823944, -0.02180168777704239, -0.006847611162811518, 0.09163348376750946, 0.0790172815322876, -0.009692712686955929, -0.0029142694547772408, -0.005879261996597052, -0.0030687442049384117, 0.01529991440474987, 0.043750930577516556, -0.007935850881040096, -0.002522318623960018, -0.013925781473517418, -0.07569722831249237, -0.017006052657961845, -0.03213074430823326, -0.012118196114897728, 0.014008782804012299, -0.02019699476659298, -0.01529991440474987, -0.009462153539061546, -0.03746127337217331, -0.044599391520023346, 0.0032808587420731783, 0.03548768535256386, -0.08167332410812378, 0.024992628023028374, 0.0003602489014156163, -0.021137675270438194, -0.06662241369485855, 0.032868534326553345, 0.01081784162670374, -0.05640402436256409, 0.042828693985939026, -0.016609491780400276, -0.05245685204863548, -0.015576586127281189, 0.005528811831027269, 0.006331158336251974, -0.021543459966778755, -0.027538001537322998, 0.0013211047044023871, -0.009374541230499744, -0.004122400190681219, -0.00867364089936018, -0.03910285606980324, 0.02353549189865589, -0.02124834433197975, -0.007151949219405651, 0.04755054786801338, -0.026246869936585426, 0.0385495126247406, -0.00034958551987074316, 0.012339533306658268, 0.05179284140467644, -0.06743398308753967, 0.016093038022518158, -0.01018149871379137, -0.03458389267325401, 0.05669914186000824, 0.010827064514160156, 0.02329571172595024, -0.003942564129829407, -0.004159289877861738, -0.040098872035741806, -0.05802716314792633, 0.000022569593056687154, -0.017955956980586052, 0.055666234344244, -0.04356648400425911, 0.048804789781570435, -0.037922393530607224, -0.004841745365411043, -0.04216468334197998, -0.0041200947016477585, -0.02456839755177498, 0.00023214438988361508, 0.04544784873723984, -0.025951754301786423, -0.029493145644664764, 0.021100787445902824, 0.09023168683052063, -0.004532795865088701, -0.030378492549061775, -0.042902473360300064, 0.01746717281639576, 0.07407408952713013, 0.007742180954664946, -0.003903368953615427, 0.032425858080387115, 0.015484361909329891, -0.10771730542182922, -0.019182533025741577, -0.017937513068318367, 0.009374541230499744, -0.04216468334197998, -0.06898333877325058, 0.03261030837893486, 0.029124250635504723, -0.04054154455661774, 0.022318139672279358, 0.029585368931293488, -0.012855986133217812, 0.04522651061415672, 0.011767745949327946, 0.01798362471163273, 0.019330091774463654, 0.008622917346656322, 0.018048182129859924, -0.049800805747509, -0.02718755230307579, 0.012118196114897728, -0.012376422993838787, -0.023701494559645653, 0.009969383478164673, 0.010559615679085255, -0.004721854347735643, 0.04614874720573425, -0.024826625362038612, -0.018463188782334328, 0.004048621281981468, -0.04312381148338318, -0.003273942042142153, -0.023517047986388206, 0.02449462004005909, -0.0029834371525794268, -0.006427993066608906, 0.011315850540995598, -0.001225422602146864, -0.026357538998126984, -0.009748047217726707, -0.034030552953481674, -0.0011291641276329756, -0.07252473384141922, -0.005404309835284948, -0.011887636967003345, 0.0672864243388176, -0.020824115723371506, -0.07717280834913254, 0.013261770829558372, -0.02364616096019745, 0.04703409597277641, 0.005127638578414917, -0.03275786340236664, 0.0702744722366333, -0.0329238660633564, -0.04699720814824104, -0.0256197489798069, -0.013261770829558372, -0.0011487617157399654, -0.03869707137346268, -0.0025707362219691277, -0.02309281937777996, -0.0009228136041201651, 0.0035621412098407745, -0.00967426784336567, -0.0005178938154131174, 0.04684964939951897, -0.00441751629114151, 0.002884296700358391, 0.07628745585680008, -0.021469680592417717, -0.04360337555408478, -0.022225916385650635, 0.028054455295205116, 0.04179579019546509, 0.07060647755861282, -0.0512394979596138, 0.06341303139925003, -0.06197433918714523, 0.023480158299207687, 0.12999854981899261, 0.02217058092355728, -0.010541170835494995, 0.003702782327309251, 0.04950569197535515, -0.04566918686032295, -0.007073559332638979, 0.0280728992074728, 0.03742438554763794, 0.0521986223757267, 0.03104250319302082, -0.0009089800296351314, -0.031743403524160385, 0.0012231171131134033, -0.02261325530707836, -0.02288992702960968, 0.013805890455842018, 0.014147118665277958, -0.02204146794974804, 0.024845069274306297, 0.017614729702472687, -0.006308102514594793, -0.005491922609508038, -0.031909406185150146, 0.057400040328502655, 0.06370814144611359, 0.008659807033836842, 0.009831048548221588, 0.0338829942047596, 0.010891621001064777, 0.03179873898625374, 0.03869707137346268, 0.08698540925979614, 0.028331127017736435, 0.014838796108961105, -0.0019758930429816246, 0.04526340216398239, -0.05810094252228737, -0.034196555614471436, -0.049800805747509, 0.008973367512226105, 0.01130662765353918, -0.021137675270438194, -0.0060637095011770725, -0.02156190574169159, 0.05570312589406967 ]
397
bitmath
__and__
"Bitwise and, ex: 100 & 2 bitwise and". Each bit of the output is 1 if the corresponding bit of x AND of y is 1, otherwise it's 0.
def __and__(self, other): """"Bitwise and, ex: 100 & 2 bitwise and". Each bit of the output is 1 if the corresponding bit of x AND of y is 1, otherwise it's 0.""" andd = int(self.bits) & other return type(self)(bits=andd)
(self, other)
[ -0.014325943775475025, -0.07052218168973923, 0.035423167049884796, 0.03473883867263794, -0.011417534202337265, -0.02611265704035759, -0.03295597434043884, -0.007712238002568483, -0.016459977254271507, -0.04372519254684448, 0.052981678396463394, 0.02841777354478836, 0.06209409609436989, 0.0660560131072998, -0.025356288999319077, -0.014082825742661953, -0.05092868581414223, 0.031875450164079666, -0.025086158886551857, -0.0059113651514053345, -0.02634676918387413, 0.01329044159501791, 0.05593511089682579, 0.0655517727136612, 0.050136301666498184, 0.12613312900066376, -0.009301507845520973, -0.03048877790570259, -0.04714684933423996, 0.02724720537662506, 0.015010274946689606, -0.014334947802126408, -0.011579612269997597, -0.019539469853043556, 0.03176739811897278, -0.03371233865618706, -0.009017870761454105, 0.07859008759260178, -0.08838684111833572, 0.06119365990161896, 0.01350654661655426, -0.08204776793718338, 0.01202082633972168, 0.009427569806575775, -0.05042443796992302, -0.0681450292468071, -0.02841777354478836, -0.01293927151709795, 0.022528918460011482, -0.022853076457977295, 0.014415986835956573, -0.013281437568366528, -0.011327490210533142, -0.019647521898150444, -0.004997421987354755, 0.016495995223522186, 0.02326727658510208, 0.06375090032815933, -0.028057599440217018, 0.030740899965167046, -0.028813965618610382, 0.04354510456323624, 0.021412378177046776, -0.009391551837325096, -0.017846649512648582, -0.01889115571975708, -0.10848458111286163, -0.013362476602196693, -0.009121420793235302, 0.09198858588933945, -0.025788499042391777, 0.030398733913898468, 0.014100834727287292, 0.03470281884074211, -0.033946454524993896, -0.007018901873379946, -0.003997937776148319, 0.012651131488382816, 0.01627989113330841, -0.010391036048531532, 0.025806507095694542, 0.003916898276656866, -0.038106467574834824, -0.005366601049900055, -0.03904292359948158, -0.009742721915245056, -0.029336217790842056, -0.047362957149744034, 0.016523009166121483, -0.04469766467809677, 0.016135821118950844, 0.004227548837661743, 0.011174416169524193, -0.0019393149996176362, 0.05860040336847305, 0.027175171300768852, -0.011381516233086586, 0.0035319619346410036, -0.025752481073141098, 0.03347822651267052, -0.07462817430496216, 0.02287108451128006, -0.04188830405473709, -0.023393338546156883, 0.05352194234728813, -0.02310519851744175, -0.04945196956396103, -0.06306656450033188, -0.04149211198091507, -0.01471313089132309, -0.022763032466173172, -0.03243371844291687, -0.06306656450033188, 0.024762000888586044, -0.012011822313070297, 0.002620270010083914, 0.02209671027958393, -0.019773583859205246, -0.032613806426525116, -0.01889115571975708, 0.02638278715312481, 0.021610474213957787, 0.03436065465211868, 0.04160016402602196, 0.06281444430351257, 0.07275526225566864, 0.04761507734656334, -0.0368458591401577, -0.03544117882847786, -0.0801028236746788, -0.006658727303147316, 0.03486489877104759, -0.026670927181839943, 0.06857723742723465, -0.0009358911192975938, 0.01239000540226698, 0.002379403216764331, 0.03825053945183754, -0.008621678687632084, 0.03535113483667374, -0.02240285836160183, 0.011003333143889904, 0.07549259066581726, 0.014506030827760696, -0.05824022740125656, 0.0102289579808712, -0.013065332546830177, 0.016649069264531136, 0.03650369122624397, 0.04437350854277611, 0.022709006443619728, -0.034450698643922806, 0.013974773697555065, 0.07405189424753189, -0.07138659805059433, 0.07470020651817322, 0.03491892293095589, -0.04192432016134262, 0.03248774632811546, -0.008923324756324291, -0.0020698781590908766, 0.024725984781980515, -0.005069456994533539, -0.004911880474537611, 0.014118842780590057, 0.01780162751674652, -0.0011806972324848175, -0.013254424557089806, 0.0447336807847023, -0.013578581623733044, 0.05683554708957672, -0.039871323853731155, -0.00043924414785578847, 0.01862102560698986, -0.05222531408071518, -0.005200020503252745, -0.0004794824053533375, 0.005317077040672302, -0.00689734285697341, -0.007478124462068081, 0.013596589677035809, 0.05319778248667717, -0.055250778794288635, -0.018476955592632294, 0.07070226967334747, 0.004162267316132784, 0.025536376982927322, 0.02939024567604065, 0.02985847182571888, 0.04051963984966278, -0.03698992729187012, -0.02829171158373356, 0.0029534315690398216, 0.004889369942247868, -0.037494171410799026, -0.05168505012989044, -0.03126315400004387, -0.028597861528396606, 0.022420866414904594, 0.09299707412719727, 0.002903907559812069, 0.014659104868769646, 0.0023546412121504545, 0.03517104685306549, 0.03376636654138565, -0.008536137640476227, 0.003034470835700631, 0.04624641314148903, -0.014244903810322285, -0.03889885172247887, 0.009625664912164211, -0.09004364162683487, -0.011975804343819618, 0.08694614470005035, 0.022528918460011482, 0.016261881217360497, 0.015991751104593277, -0.002171177417039871, -0.03346021845936775, 0.010427054017782211, 0.044157400727272034, -0.001782864099368453, -0.012101865373551846, -0.0005971019272692502, 0.034756846725940704, 0.027859503403306007, -0.04055565595626831, -0.010643158107995987, -0.02022380195558071, -0.011048355139791965, 0.09566236287355423, 0.048731617629528046, 0.013785681687295437, -0.01399278175085783, 0.008432586677372456, 0.04390528053045273, 0.07178279012441635, -0.04048362001776695, -0.07570869475603104, -0.009517612867057323, 0.027139153331518173, 0.01748647540807724, 0.04480571672320366, -0.06540770083665848, -0.028741931542754173, -0.058024123311042786, -0.014839191921055317, 0.013983777724206448, 0.02139437012374401, -0.02892201766371727, -0.06522761285305023, -0.014632091857492924, -0.0005411060410551727, -0.015208370983600616, 0.00020555275841616094, 0.008081416599452496, -0.033388182520866394, -0.023969616740942, 0.0023366324603557587, -0.006226517725735903, 0.028003573417663574, 0.04332900047302246, 0.013542563654482365, -0.0485515333712101, -0.011273464187979698, -0.0071899848990142345, -0.011327490210533142, 0.045381996780633926, 0.03925902768969536, -0.021340344101190567, 0.09018771350383759, -0.07084633409976959, -0.011192425154149532, 0.01756751537322998, -0.07412392646074295, -0.009652678854763508, 0.067280612885952, -0.011021342128515244, -0.01434395182877779, -0.009652678854763508, 0.0025572394952178, 0.01892717368900776, -0.04394129663705826, -0.052873626351356506, 0.0007794402772560716, -0.002658538520336151, 0.027877511456608772, 0.031515274196863174, 0.016838161274790764, -0.06583990901708603, 0.07052218168973923, 0.04520190879702568, 0.04628243297338486, -0.020349863916635513, 0.033946454524993896, 0.01616283319890499, -0.01051709707826376, -0.031515274196863174, 0.01849496364593506, -0.013632607646286488, -0.003824603743851185, -0.05453043058514595, -0.05503467470407486, 0.016216859221458435, -0.01881912164390087, -0.03879079967737198, 0.03778231143951416, 0.051504962146282196, 0.02704910933971405, 0.0549626387655735, 0.008977350778877735, -0.016559025272727013, -0.0027891017962247133, -0.015136335976421833, 0.01422689575701952, -0.04458961263298988, 0.033550262451171875, 0.024617932736873627, -0.019881635904312134, 0.0683971494436264, 0.02229480631649494, 0.020151767879724503, -0.00027153786504641175, 0.04509385675191879, -0.0247079748660326, -0.05831226333975792, -0.003237068885937333, 0.003014210844412446, 0.0005236600409261882, 0.03299199044704437, -0.07250314205884933, 0.016730109229683876, 0.0666683092713356, 0.0009910428198054433, 0.005807815119624138, -0.012606109492480755, 0.03929504379630089, 0.004799325950443745, -0.0625983402132988, -0.03488290682435036, 0.024888062849640846, 0.034450698643922806, -0.030344707891345024, -0.013002301566302776, 0.04026751592755318, 0.006960373371839523, -0.04743498936295509, 0.05694359913468361, 0.02427576668560505, 0.001923557254485786, 0.02852582558989525, -0.05885252356529236, 0.015244388952851295, -0.020746055990457535, 0.03695391118526459, 0.009058390744030476, -0.011759699322283268, 0.04059167578816414, 0.009535621851682663, -0.004520190879702568, 0.06872130930423737, -0.030038559809327126, -0.022510910406708717, 0.016027769073843956, -0.02357342466711998, 0.017243357375264168, -0.0670284852385521, 0.019647521898150444, -0.014109838753938675, -0.03223562240600586, 0.01584768109023571, -0.0060599371790885925, -0.07786974310874939, -0.012993297539651394, 0.033856410533189774, 0.0070008933544158936, -0.0637148842215538, 0.005375605542212725, -0.009958826936781406, 0.007126954384148121, 0.03491892293095589, 0.010481080040335655, -0.01584768109023571, 0.022024674341082573, -0.0068253083154559135, 0.013083341531455517, 0.029966523870825768, -0.0035117019433528185, 0.04883967339992523, 0.06213011220097542, 0.024113686755299568, -0.004758806433528662, -0.027841493487358093, -0.039799291640520096, -0.0564393550157547, 0.002198190428316593, 0.03252376243472099, -0.004713784903287888, 0.0018031239742413163, -0.04743498936295509, 0.021484412252902985, 0.024725984781980515, -0.011696669273078442, 0.022492902353405952, 0.02548235096037388, 0.04747100919485092, 0.007478124462068081, -0.015856685116887093, -0.042644668370485306, 0.019071243703365326, -0.053377870470285416, -0.005614221096038818, -0.013569576665759087, 0.021016186103224754, -0.027391275390982628, -0.06119365990161896, 0.053449906408786774, 0.023195242509245872, 0.034756846725940704, 0.046894729137420654, 0.047290921211242676, -0.022943120449781418, -0.021214282140135765, -0.02829171158373356, -0.009157438762485981, 0.02072804607450962, 0.0330280065536499, 0.07462817430496216, -0.04206838831305504, 0.009157438762485981, 0.0013393991393968463, -0.008270508609712124, -0.0027575865387916565, -0.027643397450447083, 0.03180341422557831, -0.04458961263298988, -0.0035724814515560865, -0.011543595232069492, 0.02541031502187252, -0.00802288856357336, 0.04743498936295509, -0.011291473172605038, 0.02767941541969776, -0.06187799200415611, -0.04044760391116142, -0.06364284455776215, 0.00009764107380760834, 0.05957287549972534, -0.02049393206834793, -0.012615114450454712, 0.02728322334587574, 0.020674020051956177, 0.02771543338894844, 0.01514534093439579, 0.017549505457282066, -0.02080008201301098, 0.01442499179393053, -0.006964875850826502, 0.007941849529743195, 0.03140722215175629, -0.019935661926865578, -0.014848196879029274, -0.0818316638469696, 0.02310519851744175, -0.0058843521401286125, 0.001480092410929501, 0.032181598246097565, 0.003509450936689973, 0.002894903067499399, 0.029678383842110634, 0.005209024529904127, -0.05312575027346611, 0.014433995820581913, 0.006699246820062399, 0.05842031538486481, 0.026905041188001633, -0.05211726203560829, -0.006127469707280397, 0.0018335136119276285, -0.03900690749287605, -0.006501150783151388, -0.012561088427901268, 0.03279389441013336, -0.013119358569383621, -0.020007697865366936, -0.07397985458374023, 0.01952146179974079, 0.0333341546356678, 0.0002446654543746263, -0.0037345599848777056, 0.039799291640520096, 0.0016365431947633624, -0.021106230095028877, -0.022078700363636017, -0.04977612569928169, -0.025518368929624557, -0.08082317560911179, -0.00044402771163731813, -0.0068793343380093575, 0.050172317773103714, -0.03239770233631134, 0.009535621851682663, -0.10120905190706253, 0.033244114369153976, 0.03889885172247887, 0.05449441075325012, -0.023177234455943108, -0.03329813852906227, -0.004006942268460989, 0.05607917904853821, -0.016495995223522186, -0.0780138149857521, -0.038070451468229294, 0.0027755952905863523, 0.009175446815788746, 0.00005775455429102294, 0.015055296942591667, 0.020583976060152054, -0.045490048825740814, -0.04891170561313629, 0.030920986086130142, 0.049632053822278976, -0.0298224538564682, -0.0309930220246315, -0.012678144499659538, -0.026202699169516563, -0.016775131225585938, -0.03282991051673889, -0.006874831859022379, -0.011561603285372257, -0.027373267337679863, -0.0573037751019001, -0.03535113483667374, -0.0038606212474405766, -0.060869503766298294, 0.0362875871360302, -0.08917922526597977, 0.02724720537662506, 0.012624118477106094, 0.032217614352703094, 0.019809601828455925, -0.0258785430341959, 0.05870845541357994, 0.01718032732605934, -0.016324913129210472, 0.05359397456049919, -0.054710518568754196, 0.023789530619978905, 0.02287108451128006, 0.02116025611758232, -0.045021820813417435, -0.06951369345188141, -0.022817058488726616, 0.04001539573073387, 0.08255200833082199, -0.00931051280349493, -0.0004938330966979265, 0.0036062479484826326, -0.03227164223790169, 0.058024123311042786, -0.003631009953096509, 0.012128878384828568, -0.0305608119815588, -0.047254905104637146, -0.08550544083118439, -0.056115198880434036, 0.04937993362545967, -0.0131553765386343, 0.004232051316648722, 0.01647798717021942, 0.003723304718732834, 0.074916310608387, -0.07383579015731812, 0.03463078662753105, 0.004364865366369486, 0.06616406887769699, -0.039835307747125626, -0.006811801344156265, -0.0200257059186697, 0.03915097564458847, -0.07070226967334747, -0.011966800317168236, -0.03463078662753105, -0.04509385675191879, 0.019053233787417412, -0.02865188755095005, -0.012182904407382011, 0.004315341357141733, -0.04905577749013901, 0.015424476005136967, 0.013515550643205643, -0.012696153484284878, -0.013740659691393375, -0.01079623308032751, -0.008004879578948021, -0.013416502624750137, -0.018314877524971962, -0.03581935912370682, 0.02697707526385784, -0.007653709501028061, 0.011336494237184525, -0.017351409420371056, -0.0036782827228307724, -0.04185228422284126, 0.014839191921055317, 0.033856410533189774, -0.019881635904312134, 0.015424476005136967, -0.033046018332242966, -0.04419342055916786, 0.036629755049943924, -0.02641880512237549, 0.050604525953531265, 0.02303316444158554, 0.029498297721147537, -0.023717494681477547, -0.03727806732058525, 0.021070212125778198, -0.024834036827087402, 0.02013375796377659, -0.031515274196863174, 0.045418012887239456, -0.043148912489414215, 0.04858754947781563, -0.04631844907999039, -0.08428084850311279, 0.019305357709527016, -0.03625157102942467, 0.06306656450033188, 0.021376360207796097, 0.009832765907049179, 0.028705913573503494, 0.04026751592755318, -0.040735743939876556, -0.009121420793235302, -0.04098786413669586, -0.015748633071780205, 0.04368917644023895, 0.02310519851744175, 0.04206838831305504, -0.08147148787975311, 0.04192432016134262, -0.06720857322216034, -0.04530996084213257, -0.014650100842118263, -0.031551294028759, -0.05164903402328491, -0.07214296609163284, -0.01293927151709795, -0.054746534675359726, -0.05726775527000427, 0.02674296125769615, -0.01588369905948639, 0.04350908845663071, -0.027445301413536072, -0.027661407366394997, 0.037602223455905914, 0.04008742794394493, 0.029138121753931046, -0.0089188227429986, -0.034054506570100784, -0.015253392979502678, 0.06187799200415611, -0.009364538826048374, 0.009274494834244251, 0.052873626351356506, 0.027193179354071617, -0.022763032466173172, 0.032145582139492035, -0.005740282125771046, -0.014199882745742798, 0.0033968964125961065, -0.06313860416412354, 0.007698731496930122, -0.011714678257703781, 0.00438062334433198, 0.00657768826931715, -0.006483142264187336, -0.006379592232406139, -0.0032303156331181526, -0.010679176077246666, -0.008945835754275322, -0.0043288483284413815, -0.0028476302977651358, -0.003723304718732834, -0.04811932146549225, 0.0002654880518093705, 0.0018121283501386642, -0.013029315508902073, -0.04844348132610321, -0.027859503403306007, -0.0362875871360302, 0.04203237220644951, -0.004594476893544197, 0.013227410614490509, 0.05445839464664459, -0.02641880512237549, -0.08745038509368896, 0.016802143305540085, -0.01694621331989765, 0.00445040687918663, -0.05172106996178627, -0.01818881556391716, -0.021304326131939888, -0.024365808814764023, -0.03351424261927605, 0.003853867994621396, 0.001958449138328433, 0.0728272944688797, 0.010436058044433594, -0.023951608687639236, 0.10481079667806625, -0.020277827978134155, -0.029102105647325516, 0.04232051223516464, -0.05305371433496475, 0.0024987109936773777, 0.027391275390982628, 0.0005135301616974175, 0.021250300109386444, 0.009454582817852497, -0.012182904407382011, 0.04293280839920044, -0.0039619202725589275, -0.03126315400004387, -0.023087190464138985, 0.03691789507865906, 0.0032753373961895704, -0.005488160066306591, -0.006816303823143244, 0.01845894753932953, 0.02314121648669243, -0.02838175557553768, 0.02782348543405533, -0.01088627614080906, -0.0024424337316304445, 0.010427054017782211, -0.013056328520178795, 0.031317178159952164, 0.024131696671247482, 0.03581935912370682, 0.013209402561187744, 0.06011313572525978, -0.007914836518466473, 0.028994053602218628, 0.02771543338894844, 0.06385894864797592, 0.015046292915940285, 0.012426022440195084, -0.01811678148806095, -0.0005886603030376136, 0.021214282140135765, 0.08629782497882843, -0.008387565612792969, 0.09018771350383759, 0.046930745244026184, -0.03290194645524025, -0.017927689477801323, -0.02333931252360344, -0.025050140917301178, -0.062202148139476776, -0.0064381202682852745, 0.03252376243472099, -0.017117297276854515, 0.010300992988049984, 0.0030772415921092033, 0.034018486738204956, 0.054746534675359726 ]
398
bitmath
__div__
Division: Supported operations with result types: - bm1 / bm2 = num - bm / num = bm - num / bm = num (see rdiv)
def __div__(self, other): """Division: Supported operations with result types: - bm1 / bm2 = num - bm / num = bm - num / bm = num (see rdiv) """ if isinstance(other, numbers.Number): # bm / num result = self._byte_value / other return (type(self))(bytes=result) else: # bm1 / bm2 return self._byte_value / float(other.bytes)
(self, other)
[ 0.004879444371908903, -0.06440149247646332, -0.007283288519829512, 0.07319166511297226, 0.009651253931224346, -0.02475600503385067, -0.0027491722721606493, -0.04918910562992096, -0.024791883304715157, 0.01714981161057949, 0.08732770383358002, -0.019894499331712723, 0.06425797939300537, 0.019087238237261772, -0.018871968612074852, 0.009364227764308453, 0.014907420612871647, 0.014647303149104118, 0.058230429887771606, -0.003036198439076543, -0.02524036169052124, 0.03568093851208687, 0.044668443500995636, 0.057046446949243546, -0.00142952473834157, 0.05134180188179016, 0.05417618528008461, -0.01395664643496275, -0.03821035474538803, 0.001103256712667644, 0.016495034098625183, -0.008162305690348148, 0.0006217031041160226, 0.027393057942390442, -0.006126214284449816, -0.04029129445552826, 0.010288093239068985, 0.07692300528287888, -0.16188274323940277, 0.045098982751369476, -0.0300659891217947, -0.021903682500123978, 0.00432781595736742, 0.002356753684580326, -0.022944152355194092, -0.04542188718914986, 0.01811852492392063, -0.027715962380170822, -0.01758035086095333, 0.012180672027170658, -0.0407218337059021, -0.025868231430649757, -0.027985049411654472, 0.03643438220024109, -0.01706908643245697, 0.05718996003270149, 0.00802327785640955, 0.028325892984867096, -0.073909230530262, 0.05134180188179016, -0.0030945006292313337, 0.02626289241015911, 0.01779562048614025, -0.052382271736860275, -0.013472289778292179, 0.013346715830266476, -0.04014778137207031, 0.05277693271636963, -0.0455654002726078, 0.04319743439555168, -0.03481986001133919, 0.023805230855941772, -0.014414094388484955, 0.05772813409566879, 0.012862359173595905, 0.04420202597975731, 0.016441216692328453, 0.0444890521466732, 0.07046491652727127, 0.004475813824683428, 0.06888627260923386, 0.010288093239068985, 0.01283545047044754, -0.04352033883333206, -0.03044271096587181, -0.050444845110177994, -0.025096848607063293, -0.00033187397639267147, 0.01960747316479683, -0.027195727452635765, -0.0625716969370842, -0.01853112503886223, -0.01896166428923607, 0.027303362265229225, -0.0032581952400505543, 0.030317137017846107, -0.04628296568989754, -0.02330293506383896, -0.026711370795965195, -0.006507420912384987, -0.0022939667105674744, 0.09407281875610352, 0.04646235704421997, -0.04222872108221054, 0.03438932076096535, -0.025312118232250214, 0.009148958139121532, -0.04624708741903305, -0.021096421405673027, 0.03621911257505417, -0.04355621710419655, 0.01731126382946968, -0.10799358785152435, 0.005381740164011717, 0.0013947676634415984, -0.0016571275191381574, -0.004101334605365992, 0.025043031200766563, 0.030245380476117134, 0.04524249583482742, 0.020827334374189377, 0.015768498182296753, 0.006624025292694569, 0.03133966773748398, 0.025168605148792267, 0.05604185536503792, 0.06088542193174362, -0.020073890686035156, -0.046103574335575104, 0.015714680776000023, 0.044883713126182556, 0.029617510735988617, -0.027410997077822685, 0.027985049411654472, 0.0506959930062294, 0.05848157778382301, -0.034532833844423294, 0.010404697619378567, 0.04883032292127609, -0.0020585155580192804, -0.02658579684793949, -0.01971510797739029, 0.08998269587755203, -0.016333581879734993, -0.00865563191473484, 0.08373987674713135, 0.06913742423057556, -0.0032963159028440714, -0.0412600077688694, 0.04506310448050499, 0.008139882236719131, 0.05772813409566879, 0.13461525738239288, -0.019194873049855232, -0.0190154816955328, 0.035322155803442, 0.028684675693511963, -0.01299690268933773, -0.03108851984143257, -0.001639188383705914, 0.011723224073648453, -0.01524826418608427, 0.05198761075735092, -0.03928670287132263, 0.02262124791741371, 0.005049866158515215, -0.010243245400488377, -0.05374564602971077, -0.013624772429466248, 0.032774798572063446, 0.03853325918316841, -0.019141055643558502, -0.03521452099084854, 0.014082220382988453, 0.0528486892580986, 0.012494606897234917, -0.01315835490822792, -0.01844142936170101, -0.018459368497133255, 0.0038008540868759155, 0.03573475405573845, -0.02486363984644413, -0.021204056218266487, -0.003955578897148371, 0.0035878268536180258, 0.021347569301724434, 0.021150238811969757, 0.002388147171586752, 0.019840681925415993, -0.018046768382191658, 0.034263744950294495, 0.002084303181618452, -0.029761023819446564, -0.01933838613331318, 0.026388466358184814, -0.026890762150287628, 0.01612728089094162, -0.037421032786369324, 0.04169054701924324, 0.08094137161970139, -0.07448328286409378, 0.002827655989676714, 0.0034510409459471703, 0.021204056218266487, -0.021670473739504814, -0.04387912154197693, -0.0021717564668506384, 0.08883459120988846, -0.010610997676849365, -0.0480051226913929, -0.040111903101205826, -0.002191937994211912, -0.012046128511428833, 0.06537020206451416, 0.023984622210264206, -0.04474020004272461, 0.025491509586572647, -0.013777255080640316, 0.03087325021624565, 0.02529417909681797, 0.026926640421152115, -0.017436837777495384, -0.02882818877696991, 0.008175760507583618, -0.022441856563091278, 0.012485637329518795, -0.05927089974284172, -0.008646662347018719, 0.00700523192062974, 0.00877672154456377, 0.040757711976766586, 0.020701760426163673, -0.033510301262140274, 0.01031500194221735, 0.011481045745313168, 0.0017782166833058, 0.0020652427338063717, 0.006538814399391413, -0.044560808688402176, -0.03627292811870575, 0.0033658300526440144, -0.002018152503296733, 0.003906246507540345, 0.017750773578882217, 0.003294073510915041, -0.09694308042526245, -0.0029285636264830828, 0.022531552240252495, -0.059665560722351074, 0.023338813334703445, -0.046964652836322784, -0.049547888338565826, 0.028218258172273636, -0.04603181779384613, 0.034855738282203674, 0.019535716623067856, -0.04872268810868263, -0.0073415907099843025, 0.025599144399166107, 0.024989213794469833, -0.007552375551313162, -0.051521193236112595, 0.04280277341604233, -0.0008324879454448819, -0.0358603298664093, -0.008852962404489517, -0.0017692471155896783, 0.037098128348588943, 0.016324611380696297, 0.07032140344381332, 0.07584665715694427, -0.03799508512020111, -0.003605765989050269, -0.015346929430961609, -0.02861291915178299, -0.01069172378629446, 0.02400256134569645, 0.0528486892580986, -0.004065456334501505, -0.026836944743990898, 0.029617510735988617, -0.034425199031829834, -0.058338064700365067, -0.030317137017846107, -0.006453603506088257, 0.05546780303120613, 0.04513486102223396, -0.06458088010549545, 0.0358603298664093, -0.013840042054653168, 0.016001706942915916, 0.012261398136615753, -0.04567303508520126, 0.008139882236719131, -0.023554082959890366, -0.007660010363906622, -0.03327709436416626, -0.031052641570568085, 0.0034801920410245657, 0.019481899216771126, -0.08000853657722473, -0.025114787742495537, 0.005605979356914759, 0.03542979061603546, -0.008552482351660728, 0.005278590135276318, 0.09292471408843994, 0.002437479794025421, 0.006117244716733694, 0.013696528971195221, -0.010243245400488377, 0.05579070746898651, -0.020002134144306183, 0.03261334449052811, 0.04244399070739746, 0.013391563668847084, 0.05718996003270149, 0.08567730337381363, -0.030353015288710594, 0.04958376660943031, -0.003652856219559908, 0.04997842758893967, 0.002426267834380269, 0.06906566768884659, 0.03896379843354225, -0.019248690456151962, -0.020773516967892647, -0.0030765614937990904, 0.028594980016350746, 0.040757711976766586, -0.07222295552492142, 0.0027446874883025885, 0.04330506920814514, -0.002935290802270174, -0.030783554539084435, -0.06077778711915016, 0.05030133202672005, 0.004365936852991581, 0.0018353976774960756, -0.0025092363357543945, 0.04563715681433678, -0.06350453197956085, 0.019912438467144966, -0.010252214968204498, -0.017643138766288757, -0.010610997676849365, -0.0010640148539096117, -0.007404377683997154, 0.024253709241747856, -0.010996689088642597, -0.059127386659383774, -0.05887623876333237, 0.025168605148792267, -0.018127495422959328, 0.02192162163555622, -0.03311564028263092, -0.03600384294986725, -0.02262124791741371, -0.005000533536076546, -0.001355525804683566, 0.04545776546001434, 0.05876860395073891, -0.01939220353960991, 0.001858942792750895, -0.058122795075178146, -0.029707206413149834, -0.052812810987234116, -0.007843886502087116, -0.009435984306037426, -0.02726748399436474, -0.029115214943885803, -0.01267399825155735, -0.05144943669438362, -0.040111903101205826, 0.00556113151833415, 0.018728455528616905, -0.0444890521466732, 0.015813346952199936, -0.033402666449546814, 0.009211745113134384, 0.02432546578347683, 0.006036518607288599, -0.04344858229160309, 0.015678802505135536, 0.0160465557128191, 0.026011744514107704, 0.023231178522109985, -0.03038889355957508, 0.0006435664254240692, 0.06755878031253815, -0.026657553389668465, -0.005265135783702135, 0.0026751733385026455, -0.013983555138111115, -0.08775824308395386, 0.03756454586982727, 0.026406405493617058, -0.03001217171549797, -0.042192842811346054, -0.05040896683931351, 0.04050656408071518, 0.0041596367955207825, -0.033510301262140274, 0.055970098823308945, 0.017024237662553787, 0.0010354244150221348, 0.02357202209532261, -0.019589534029364586, -0.029384301975369453, 0.01880021207034588, -0.05711820349097252, -0.03358205780386925, -0.01885402947664261, 0.03632674738764763, -0.018602881580591202, -0.012907207012176514, -0.014943298883736134, -0.06816870719194412, -0.013140415772795677, 0.039788998663425446, 0.013355685397982597, 0.029976293444633484, 0.02658579684793949, 0.009391136467456818, 0.02208307385444641, -0.015418685972690582, 0.04570891335606575, 0.010539241135120392, -0.021724291145801544, 0.031016763299703598, 0.02742893621325493, 0.0396454855799675, -0.03352824226021767, -0.019948316738009453, 0.039788998663425446, -0.034748103469610214, -0.015840254724025726, 0.011938493698835373, 0.02807474508881569, -0.00438163336366415, 0.031483180820941925, 0.05589834228157997, 0.02272888273000717, -0.020701760426163673, 0.019858621060848236, -0.08022380620241165, 0.003648371435701847, 0.011167110875248909, -0.08051083236932755, -0.05518077686429024, 0.009175866842269897, -0.010754510760307312, 0.04004014655947685, -0.015050933696329594, 0.04700053110718727, -0.0350530669093132, -0.02904345840215683, -0.007377468980848789, 0.009274532087147236, 0.004480298608541489, -0.039250824600458145, 0.023051787167787552, -0.051844097673892975, -0.004123758524656296, -0.04319743439555168, 0.025007152929902077, 0.059988465160131454, -0.0007652161875739694, 0.02829001471400261, 0.037851572036743164, -0.004195515066385269, -0.009005445055663586, 0.035985901951789856, 0.028864067047834396, -0.019697168841958046, 0.008301334455609322, -0.04592418298125267, -0.04237223416566849, -0.02143726497888565, -0.07620543986558914, -0.014880511909723282, 0.014405124820768833, 0.014405124820768833, -0.036524076014757156, 0.002634810283780098, -0.0009575012954883277, 0.0008235183777287602, 0.0601319782435894, 0.07814286649227142, -0.02715984918177128, -0.05381740257143974, 0.06447324901819229, -0.045314252376556396, -0.02721366658806801, -0.04649823531508446, 0.019679229706525803, -0.015418685972690582, 0.026890762150287628, -0.011777041479945183, -0.002018152503296733, 0.01663854718208313, -0.031214093789458275, -0.018549064174294472, -0.03835386782884598, 0.031967535614967346, 0.034748103469610214, -0.00652536004781723, 0.01923075132071972, -0.006718205753713846, 0.029725145548582077, -0.07599017024040222, -0.026298770681023598, 0.0027940201107412577, 0.056831177324056625, 0.0038815801963210106, -0.013248050585389137, -0.06249994412064552, -0.0012792844790965319, -0.0002334890450583771, -0.0040452745743095875, 0.03124997206032276, 0.009059262461960316, -0.05622124671936035, -0.01305072009563446, -0.02942018024623394, -0.01836967281997204, -0.07491382211446762, -0.04129588603973389, 0.01454863790422678, -0.04344858229160309, -0.05048072338104248, -0.05360213294625282, 0.017750773578882217, 0.031967535614967346, -0.02658579684793949, 0.023123543709516525, -0.06077778711915016, 0.028846127912402153, 0.010404697619378567, 0.00014631605881731957, -0.00813091266900301, -0.004581206478178501, 0.02497127465903759, -0.019051359966397285, 0.01849524676799774, 0.010844206437468529, -0.0026325678918510675, 0.03575269505381584, 0.021078482270240784, -0.009256592951714993, -0.024343404918909073, -0.0814436674118042, 0.006960384082049131, 0.022316282615065575, 0.05614949017763138, 0.003852429101243615, -0.010718632489442825, -0.00034000264713540673, 0.023320874199271202, -0.013005872257053852, 0.04129588603973389, 0.0012658301275223494, 0.047610461711883545, 0.004325573798269033, -0.045888304710388184, -0.006763053592294455, 0.026872823014855385, 0.01384901162236929, 0.002560811350122094, -0.029994232580065727, -0.02405637875199318, 0.04904559254646301, 0.04832802712917328, -0.002341056941077113, 0.0428745299577713, 0.03799508512020111, -0.05668766424059868, -0.01696145161986351, -0.011947463266551495, -0.05503726378083229, -0.04491959139704704, -0.03939433768391609, -0.007525466848164797, -0.017078055068850517, 0.010395728051662445, -0.03252365067601204, -0.01885402947664261, -0.021939560770988464, 0.03141142427921295, 0.030137745663523674, -0.04535013064742088, -0.065800741314888, 0.016387399286031723, 0.023500265553593636, 0.003998184576630592, -0.028917884454131126, -0.06641067564487457, -0.024092257022857666, -0.03295418992638588, -0.04129588603973389, 0.030747676268219948, -0.005386224947869778, 0.04416614770889282, 0.02855910174548626, 0.042731016874313354, 0.03403053805232048, -0.035124823451042175, 0.02470218762755394, 0.0002511478669475764, -0.057584621012210846, 0.02925872802734375, 0.035932086408138275, 0.02100672572851181, 0.03291831165552139, 0.02507890947163105, -0.015840254724025726, -0.028092684224247932, -0.05030133202672005, -0.03767218068242073, 0.041547033935785294, -0.05449908971786499, 0.04133176431059837, -0.035178642719984055, 0.0017367324326187372, -0.0361294150352478, 0.004083395469933748, 0.014665242284536362, -0.03381526842713356, 0.034317564219236374, -0.0385691374540329, 0.019643351435661316, 0.021132299676537514, 0.06522668898105621, -0.010252214968204498, -0.039250824600458145, -0.03428168594837189, 0.016028616577386856, 0.04265926033258438, 0.001408222015015781, 0.031178215518593788, 0.04061419889330864, -0.010027975775301456, -0.048041000962257385, -0.006852749269455671, -0.007691403850913048, -0.06371980160474777, -0.04535013064742088, -0.02556326612830162, 0.02330293506383896, 0.035824451595544815, -0.052489906549453735, 0.04007602483034134, 0.06002434343099594, -0.051521193236112595, -0.019786864519119263, -0.0015136144356802106, 0.04743107035756111, -0.03178814426064491, -0.01733817346394062, 0.02262124791741371, -0.05937853455543518, -0.005018472671508789, -0.02882818877696991, 0.02202925644814968, -0.005265135783702135, -0.001413827994838357, 0.0041125463321805, -0.016243886202573776, -0.04007602483034134, -0.034694284200668335, -0.014728029258549213, 0.051198288798332214, -0.043699730187654495, -0.04506310448050499, -0.08747121691703796, 0.024666309356689453, 0.02292621321976185, -0.016351521015167236, 0.01626182533800602, 0.009749919176101685, -0.024235770106315613, 0.019087238237261772, -0.05948616936802864, -0.001987880328670144, -0.024899518117308617, -0.03338472917675972, -0.03381526842713356, 0.04247986897826195, -0.013570955023169518, -0.057154081761837006, -0.005641857627779245, 0.005834703333675861, 0.01588510349392891, -0.014019433408975601, -0.08617959916591644, 0.03130378946661949, -0.00232311780564487, -0.04979903623461723, -0.013005872257053852, 0.023069726303219795, -0.011803950183093548, -0.06425797939300537, -0.01569674164056778, -0.0165847297757864, -0.02041473425924778, -0.003713400801643729, -0.026549918577075005, 0.014584516175091267, 0.012629150412976742, -0.013624772429466248, 0.013194233179092407, 0.04574479162693024, -0.008646662347018719, -0.029545754194259644, 0.024666309356689453, 0.05198761075735092, 0.009785797446966171, 0.07634895294904709, -0.009063747711479664, 0.04617533087730408, -0.0687786415219307, 0.005063320510089397, 0.14896656572818756, 0.06888627260923386, -0.025975866243243217, 0.015068872831761837, 0.07620543986558914, 0.0038165508303791285, -0.0035429790150374174, 0.02513272687792778, -0.002121302532032132, 0.04373560845851898, -0.007346075493842363, -0.04897383600473404, -0.01015354972332716, -0.03921494632959366, -0.009974158369004726, -0.03831798955798149, 0.02330293506383896, -0.015580138191580772, 0.01015354972332716, -0.03076561540365219, -0.0037470366805791855, -0.01728435605764389, -0.02712397091090679, -0.014557607471942902, 0.040757711976766586, 0.079290971159935, 0.017266416922211647, -0.014772877097129822, 0.030837371945381165, -0.0300659891217947, 0.02486363984644413, 0.023876987397670746, 0.10426224768161774, 0.020235342904925346, -0.00007939468196127564, -0.011454137042164803, 0.03216486796736717, -0.025258300825953484, -0.0273751188069582, -0.030729737132787704, -0.017616229131817818, 0.04560127854347229, -0.03672140836715698, -0.00977682787925005, 0.017356112599372864, 0.027249544858932495 ]
399
bitmath
__eq__
null
def __eq__(self, other): if isinstance(other, numbers.Number): return self.prefix_value == other else: return self._byte_value == other.bytes
(self, other)
[ 0.028946926817297935, -0.0262370016425848, -0.02676490880548954, 0.07151386886835098, -0.014667029492557049, -0.021996144205331802, -0.04459058493375778, 0.04209182411432266, 0.03691833093762398, -0.06556610763072968, 0.046948570758104324, -0.05113663524389267, 0.06609401851892471, 0.02187296561896801, -0.0131185008212924, -0.02095792628824711, -0.004614791367202997, 0.007324716076254845, 0.03234313055872917, 0.014042338356375694, -0.030794601887464523, 0.04459058493375778, 0.03438437357544899, 0.09030736982822418, -0.005749792326241732, 0.06802967935800552, 0.012221057899296284, 0.0026197407860308886, -0.02949243038892746, 0.042443759739398956, -0.050819892436265945, -0.0757371261715889, 0.03674235939979553, 0.05951276794075966, 0.04726531729102135, -0.01632113941013813, -0.02782072313129902, 0.040085773915052414, -0.0744701474905014, -0.006004947703331709, 0.019268622621893883, -0.02426614612340927, -0.005367059260606766, -0.010223807767033577, 0.005010721739381552, -0.014315091073513031, -0.05166454613208771, 0.012326639145612717, 0.01947978511452675, 0.06693866848945618, -0.020940329879522324, -0.043429188430309296, -0.02676490880548954, 0.041000813245773315, -0.04814516007900238, 0.018371179699897766, 0.04040251672267914, 0.02403738722205162, -0.09354520589113235, 0.07140828669071198, -0.02767994813621044, 0.017192186787724495, -0.0022546048276126385, -0.069085493683815, -0.02767994813621044, -0.00006643523374805227, -0.030952975153923035, 0.006009346805512905, 0.0031564468517899513, 0.049869660288095474, -0.0009452843223698437, -0.003242231672629714, -0.016901837661862373, 0.020605988800525665, -0.019814126193523407, 0.03302941098809242, -0.005037117283791304, 0.07468131184577942, -0.02315754070878029, -0.04029693827033043, 0.035123445093631744, -0.020306840538978577, 0.0398746095597744, -0.026201806962490082, -0.07102115452289581, 0.005604617763310671, 0.0010134723270311952, 0.05835137143731117, 0.05004562810063362, 0.002907890360802412, -0.0219433531165123, 0.003451195079833269, -0.00427825003862381, -0.012898539192974567, 0.059618350118398666, -0.007518282160162926, 0.002740719588473439, -0.04166949540376663, 0.0076194643042981625, 0.007940608076751232, 0.022348083555698395, 0.024934830144047737, 0.002575748600065708, -0.0053054699674248695, 0.006211711093783379, 0.03582732006907463, -0.011798731982707977, -0.010584544390439987, -0.02055319771170616, 0.002874896163120866, -0.059196025133132935, 0.035352203994989395, -0.040120966732501984, -0.012555398978292942, -0.004238657187670469, -0.0022656028158962727, 0.03267747163772583, 0.02069397270679474, 0.0009370357729494572, -0.008996423333883286, 0.04233817756175995, 0.06531975418329239, 0.029668400064110756, 0.025990644469857216, 0.037059105932712555, 0.009299970231950283, 0.06757215410470963, 0.009493536315858364, -0.037129491567611694, -0.040472906082868576, 0.07154905796051025, 0.009326365776360035, -0.001990651013329625, 0.08587294816970825, 0.07221774011850357, 0.014130323193967342, -0.013408849947154522, 0.03371569141745567, 0.01654989831149578, 0.023966999724507332, 0.023439092561602592, 0.022911183536052704, 0.04578717425465584, -0.03822050243616104, -0.023826224729418755, 0.037516623735427856, -0.04920097813010216, 0.014587842859327793, -0.04360515624284744, 0.003765739966183901, -0.05148857459425926, 0.02460048906505108, 0.08594333380460739, 0.0024481709115207195, -0.052790746092796326, 0.007606266997754574, 0.015881216153502464, -0.028137467801570892, 0.003301621414721012, 0.015854820609092712, 0.027345607057213783, 0.010910088196396828, 0.009959854185581207, -0.0587737001478672, -0.03063623048365116, 0.007628262974321842, -0.07003572583198547, -0.023949401453137398, -0.013188888318836689, 0.0009975251741707325, 0.005833377595990896, -0.02548033371567726, 0.019532576203346252, 0.02695847488939762, 0.022348083555698395, -0.009005221538245678, 0.013892765156924725, 0.010962878353893757, -0.02229529246687889, -0.005455044098198414, -0.008107778616249561, -0.008992023766040802, -0.029932353645563126, -0.006290897261351347, 0.041986241936683655, 0.017561722546815872, 0.017588118091225624, 0.019321413710713387, 0.04758206009864807, -0.010417373850941658, 0.00007471815479220822, 0.03464832529425621, -0.005336264614015818, -0.01573164202272892, 0.013628811575472355, -0.0569436177611351, 0.03649600222706795, -0.032431114464998245, 0.021221879869699478, 0.08875884115695953, -0.021925756707787514, -0.04863787442445755, -0.011006870307028294, -0.007852623239159584, -0.015925208106637, -0.06732580065727234, 0.0036887533497065306, 0.03772778809070587, 0.02426614612340927, -0.02187296561896801, -0.03790375590324402, -0.05409291759133339, 0.02581467479467392, 0.03385646641254425, 0.02680010348558426, -0.01449985895305872, -0.009713497012853622, -0.03913554176688194, -0.005023919511586428, 0.0031212528701871634, 0.10656692087650299, 0.01736815646290779, -0.03253669664263725, -0.008644484914839268, -0.0311641376465559, 0.030794601887464523, -0.019497383385896683, 0.04086003825068474, 0.010047839023172855, -0.010786909610033035, 0.07271045446395874, 0.031410492956638336, 0.008428922854363918, 0.01474621519446373, 0.012458615936338902, 0.010496560484170914, 0.03336375206708908, 0.028419019654393196, -0.06802967935800552, -0.01609237864613533, -0.021855369210243225, -0.008723670616745949, 0.04473135992884636, 0.035915303975343704, 0.020148469135165215, -0.0865064412355423, -0.004361835308372974, 0.025163589045405388, -0.017940055578947067, 0.027134444564580917, -0.009695900604128838, -0.051805321127176285, 0.0009436346008442342, -0.0398746095597744, 0.03260708600282669, -0.024653278291225433, -0.07017649710178375, -0.031516075134277344, 0.04325322061777115, 0.02604343555867672, -0.04283089190721512, 0.02702886238694191, 0.038572438061237335, -0.03352212533354759, -0.044520195573568344, 0.01625075191259384, -0.030037935823202133, 0.04705415293574333, 0.03160405904054642, -0.0020885339472442865, 0.0035787727683782578, -0.051805321127176285, -0.03825569525361061, 0.07637061178684235, -0.025902660563588142, -0.013241679407656193, 0.035193830728530884, -0.0005960955168120563, -0.03051305189728737, -0.023368703201413155, -0.004619190469384193, -0.0016002195188775659, -0.0015584268840029836, -0.09213744848966599, -0.0011284021893516183, 0.033944450318813324, 0.021028313785791397, -0.04969368875026703, 0.017456140369176865, -0.06180036813020706, 0.005239481572061777, -0.011059661395847797, 0.011094855144619942, -0.014781408943235874, -0.022084129974246025, 0.004562000278383493, -0.005221884697675705, 0.011649157851934433, 0.0009463840979151428, 0.04511849209666252, -0.028788553550839424, 0.005842175800353289, -0.016329938545823097, 0.003765739966183901, -0.004698376636952162, 0.008349736221134663, 0.05219245329499245, 0.05845695361495018, 0.021626610308885574, 0.035510577261447906, 0.029070105403661728, 0.05405772477388382, 0.018476761877536774, 0.00945834256708622, 0.034437164664268494, 0.044485002756118774, 0.015678852796554565, 0.011262025684118271, -0.004056089092046022, 0.06799448281526566, -0.0005540279089473188, 0.040050581097602844, -0.06781851500272751, 0.00781742949038744, -0.003466592403128743, -0.05500795692205429, -0.02377343364059925, 0.040543295443058014, -0.011103653348982334, 0.011429197154939175, -0.016065984964370728, -0.01891668513417244, 0.0753851905465126, 0.010250203311443329, 0.005604617763310671, -0.021996144205331802, 0.02229529246687889, 0.035193830728530884, -0.019690949469804764, 0.00765905762091279, 0.03207917883992195, -0.040578488260507584, 0.006902390159666538, -0.051382992416620255, 0.001803683815523982, -0.024178162217140198, -0.06883913278579712, -0.007544677704572678, 0.013989548198878765, 0.02729281596839428, -0.07693371176719666, 0.0028441015165299177, 0.033574916422367096, -0.028260646387934685, 0.0583161786198616, -0.005551826674491167, 0.012731368653476238, -0.005367059260606766, -0.008697276003658772, 0.041528720408678055, 0.04965849593281746, -0.00756227457895875, 0.0270992498844862, -0.0293868500739336, -0.04233817756175995, 0.0028045084327459335, -0.04515368491411209, -0.02085234597325325, -0.05141818895936012, 0.02407258003950119, -0.0501864030957222, -0.008248554542660713, -0.05409291759133339, -0.06137804314494133, -0.0199373047798872, -0.04635027423501015, -0.1098751425743103, 0.03681274875998497, -0.03176243230700493, -0.03646080940961838, 0.10832661390304565, 0.0022941979113966227, -0.054691214114427567, 0.06250424683094025, -0.039100345224142075, 0.012133073061704636, 0.03227274492383003, -0.036073677241802216, 0.022506454959511757, 0.07098595798015594, -0.03917073458433151, -0.002883694600313902, 0.014587842859327793, 0.019761336967349052, -0.010329389944672585, 0.0017860869411379099, -0.04107120260596275, -0.0146934250369668, -0.04177507758140564, -0.03927631676197052, 0.022541649639606476, 0.014930983074009418, -0.020377228036522865, 0.05437447130680084, 0.02899971790611744, 0.005252679344266653, 0.05071431025862694, 0.0009403351577930152, -0.05113663524389267, 0.04976407811045647, -0.07038766145706177, -0.03468352183699608, 0.03051305189728737, -0.020799554884433746, -0.03980422392487526, -0.03786856308579445, -0.02183777280151844, -0.06658672541379929, 0.047335702925920486, 0.014992572367191315, -0.026184210553765297, 0.04335879907011986, -0.014139121398329735, -0.012045089155435562, 0.0069067892618477345, -0.026641730219125748, 0.02782072313129902, 0.060674164444208145, -0.010478963144123554, 0.024653278291225433, -0.011262025684118271, -0.03090018406510353, 0.05944238230586052, 0.015018967911601067, 0.040543295443058014, 0.012388228438794613, -0.015177340246737003, -0.09227822721004486, 0.018107226118445396, -0.006941983476281166, 0.02498761937022209, -0.023104749619960785, 0.011402801610529423, 0.024442115798592567, -0.0475468672811985, -0.04511849209666252, 0.011965902522206306, 0.03253669664263725, -0.02847180888056755, 0.007852623239159584, -0.029809175059199333, -0.051805321127176285, -0.030231501907110214, -0.06714983284473419, -0.00609293207526207, -0.03667197376489639, -0.031093750149011612, -0.009511132724583149, -0.001987351570278406, -0.05011601746082306, -0.06384161114692688, 0.028911732137203217, -0.046420663595199585, -0.01736815646290779, -0.04761725291609764, 0.07658177614212036, 0.017033813521265984, 0.04705415293574333, 0.02203133888542652, 0.06648115068674088, -0.015775635838508606, -0.0524740032851696, -0.008904038928449154, 0.008354135788977146, -0.017649706453084946, 0.04874345660209656, -0.025726690888404846, 0.028489407151937485, -0.057717882096767426, -0.027891110628843307, -0.01200109627097845, 0.00608413340523839, 0.024424519389867783, -0.04212701693177223, 0.06531975418329239, -0.02752157673239708, 0.004636787343770266, 0.02945723757147789, 0.025937853381037712, -0.03067142330110073, -0.006981576327234507, 0.02449490688741207, -0.08073464781045914, 0.04620949923992157, 0.05296671763062477, 0.00945834256708622, -0.003926311619579792, 0.014807804487645626, -0.03602088615298271, 0.027415994554758072, -0.020905135199427605, 0.043921902775764465, -0.039100345224142075, 0.013681601732969284, 0.030530648306012154, -0.01281055435538292, -0.026219405233860016, 0.0036755558103322983, -0.026852892711758614, 0.033838868141174316, 0.0016937031177803874, 0.023861417546868324, 0.010100629180669785, 0.01865273155272007, 0.021450640633702278, 0.05856253579258919, -0.04476655274629593, -0.0541984997689724, -0.04371073842048645, -0.031850416213274, -0.003411601996049285, 0.01216826681047678, -0.03119933232665062, -0.07369588315486908, -0.04768764227628708, 0.0049843261949718, -0.08566178381443024, -0.014508657157421112, 0.0018839697586372495, -0.02588506229221821, -0.023703046143054962, -0.02315754070878029, 0.010250203311443329, 0.01017981581389904, -0.054831989109516144, 0.03248390555381775, -0.01589881256222725, -0.012221057899296284, 0.05880889296531677, 0.02817266248166561, -0.031040959060192108, 0.026923280209302902, -0.007901014760136604, -0.031058555468916893, -0.04406267777085304, 0.07855263352394104, -0.02206653170287609, 0.034701116383075714, 0.013373656198382378, 0.04522407427430153, 0.005023919511586428, -0.04188065975904465, 0.05986470729112625, -0.010302994400262833, 0.022084129974246025, 0.016268348321318626, -0.022805603221058846, 0.02702886238694191, 0.04652624577283859, 0.01641792245209217, 0.06978936493396759, -0.006664831656962633, 0.05585261061787605, -0.0013186688302084804, -0.047335702925920486, -0.01944459229707718, -0.039100345224142075, -0.062187500298023224, 0.023087153211236, 0.0438867062330246, 0.0076194643042981625, -0.011605165898799896, -0.059723932296037674, 0.0020720367319881916, 0.012159468606114388, 0.004856748506426811, -0.04765244945883751, 0.019163040444254875, -0.016602689400315285, -0.05645090714097023, -0.03635522723197937, 0.03427879139780998, 0.059231217950582504, -0.023703046143054962, 0.04768764227628708, -0.009124000556766987, -0.008582895621657372, 0.006114928051829338, 0.015925208106637, -0.060146257281303406, -0.05296671763062477, -0.0002518558467272669, -0.008846849203109741, -0.0555710606276989, 0.009317566640675068, -0.01558206882327795, -0.005147097632288933, -0.031058555468916893, 0.004909539595246315, -0.013655206188559532, 0.05416330695152283, 0.004971128888428211, -0.02180257812142372, -0.034489955753088, 0.039065152406692505, 0.026518551632761955, -0.009590319357812405, -0.010725320316851139, 0.037974145263433456, 0.008442120626568794, 0.07186580449342728, 0.0233159139752388, -0.011737142689526081, -0.0828462764620781, 0.004410226829349995, -0.029070105403661728, 0.0072939214296638966, 0.011200436390936375, -0.08735109120607376, 0.05416330695152283, -0.01421830803155899, 0.0583161786198616, -0.009238380938768387, 0.020500406622886658, -0.05546547845005989, -0.02607862837612629, 0.010478963144123554, 0.022875990718603134, 0.032765455543994904, -0.0685223862528801, 0.007034366950392723, 0.015872418880462646, 0.028594987466931343, -0.002483364660292864, -0.04529445990920067, -0.09797962754964828, 0.003759141080081463, 0.013153694570064545, -0.010619739070534706, 0.060146257281303406, -0.003613966517150402, -0.0019268622854724526, -0.08988504856824875, 0.07834146916866302, -0.07102115452289581, -0.016329938545823097, 0.012317840941250324, -0.04159910976886749, -0.026976071298122406, 0.0007242230349220335, -0.031058555468916893, 0.06260982900857925, -0.01799284666776657, -0.004931535571813583, -0.027891110628843307, 0.006290897261351347, 0.040120966732501984, 0.01770249754190445, 0.004957931116223335, 0.00002562207191658672, 0.008926035836338997, -0.005697001237422228, 0.006414075847715139, -0.026588939130306244, 0.03255429491400719, 0.014834200032055378, 0.06637556850910187, -0.00541105167940259, 0.032237548381090164, -0.021169088780879974, -0.04677260294556618, 0.009475938975811005, -0.05606377497315407, -0.047476477921009064, -0.007109154015779495, -0.03389165922999382, 0.010259001515805721, 0.010584544390439987, 0.016013193875551224, -0.005934559740126133, -0.02498761937022209, -0.0036007689777761698, 0.010144622065126896, -0.007267526350915432, 0.0071707433089613914, 0.03642561659216881, -0.00161561684217304, 0.03556336835026741, 0.013206485658884048, -0.036073677241802216, -0.006673630326986313, -0.04909539595246315, 0.00256914971396327, 0.0193038173019886, -0.022453663870692253, 0.07176022231578827, -0.023685447871685028, -0.012625787407159805, -0.04286608844995499, -0.023826224729418755, -0.023527076467871666, -0.04923617094755173, 0.020500406622886658, 0.0011789933778345585, 0.018265599384903908, -0.0038691218942403793, -0.0506439246237278, -0.003081659786403179, 0.050256792455911636, 0.02141544595360756, -0.021010717377066612, 0.02449490688741207, -0.027081653475761414, -0.09614954888820648, -0.005235082469880581, 0.04557600989937782, -0.004298046696931124, 0.04311244189739227, -0.01956777088344097, 0.06363044679164886, -0.054796796292066574, -0.009036016650497913, 0.07468131184577942, 0.022805603221058846, -0.009203187189996243, 0.042514149099588394, 0.04867306724190712, -0.014077532105147839, -0.07207696884870529, 0.019497383385896683, 0.010197412222623825, 0.09368597716093063, 0.012405825778841972, -0.006985975429415703, -0.0438867062330246, 0.019514979794621468, -0.030389873310923576, -0.01914544403553009, 0.029439639300107956, 0.06711463630199432, 0.02032443694770336, -0.01558206882327795, 0.04807477444410324, 0.02055319771170616, -0.031111346557736397, 0.029703592881560326, 0.011490785516798496, 0.02236567996442318, 0.005248280242085457, -0.00028155065956525505, 0.009211985394358635, 0.0073071192018687725, 0.01264338381588459, -0.0003478140279185027, 0.0389595702290535, 0.05257958546280861, -0.03376848250627518, 0.004847950302064419, 0.025269171223044395, -0.020236453041434288, -0.07098595798015594, -0.001988451462239027, -0.0010904588270932436, 0.04575198143720627, -0.04723012074828148, 0.02350948005914688, -0.007403902243822813, 0.0685223862528801 ]
400
bitmath
__float__
Return this instances prefix unit as a floating point number
def __float__(self): """Return this instances prefix unit as a floating point number""" return float(self.prefix_value)
(self)
[ -0.0032867761328816414, 0.0030155477579683065, 0.020246028900146484, 0.05426277592778206, 0.030138392001390457, -0.01291645411401987, -0.03933025896549225, -0.004736887291073799, 0.003677601460367441, -0.01768323965370655, 0.015615924261510372, -0.02883991226553917, 0.03693832457065582, -0.0083205197006464, 0.001075303298421204, 0.033931318670511246, 0.007278319448232651, -0.013830515556037426, 0.02771228551864624, 0.052656762301921844, -0.018024945631623268, 0.01864001527428627, 0.02101486548781395, 0.02637963555753231, -0.015470699407160282, -0.034597642719745636, 0.031009741127490997, -0.008675038814544678, 0.006957970559597015, -0.06119938939809799, -0.012369725853204727, 0.0014853494940325618, 0.004758243914693594, 0.03625491261482239, 0.0520075224339962, -0.05040150508284569, 0.013386298902332783, -0.01736716367304325, -0.08665642142295837, 0.041585516184568405, 0.044455837458372116, -0.036596618592739105, 0.002564924070611596, -0.00008676106517668813, 0.005928583908826113, 0.04667692258954048, 0.03046301193535328, 0.015487785451114178, 0.018093286082148552, 0.028481122106313705, 0.02854946441948414, 0.007807962130755186, -0.01913548819720745, -0.0057192896492779255, -0.07080130279064178, 0.07476508617401123, 0.0578506775200367, -0.009029557928442955, -0.05713309720158577, 0.07257816940546036, -0.011447122320532799, 0.025354521349072456, 0.04168802499771118, -0.06342047452926636, -0.019733471795916557, -0.009832564741373062, -0.009789852425456047, 0.041927218437194824, -0.027746455743908882, 0.016564156860113144, 0.004711259622126818, -0.02005809172987938, -0.013130019418895245, 0.010738084092736244, 0.055697936564683914, 0.02417563833296299, -0.0391252376139164, -0.0014063301496207714, 0.006270288955420256, -0.03049718216061592, -0.014872715808451176, 0.0012931403471156955, 0.021561594679951668, 0.004446438048034906, 0.023270118981599808, -0.03683581203222275, -0.013386298902332783, 0.021271144971251488, 0.003983000293374062, 0.07927559316158295, -0.0641038790345192, 0.01427473220974207, -0.014343072660267353, 0.019460108131170273, 0.019630959257483482, -0.02554245851933956, -0.0033786094281822443, -0.09670255333185196, -0.0002508062170818448, 0.009601914323866367, 0.0474286712706089, 0.07127968966960907, 0.02400478534400463, 0.01739279180765152, 0.04189305007457733, -0.02530326507985592, -0.0162309929728508, -0.042508117854595184, 0.010464719496667385, 0.05566376447677612, -0.020246028900146484, -0.04585682973265648, -0.019203828647732735, 0.006295917090028524, -0.014795832335948944, -0.05443362891674042, -0.01660686917603016, 0.04777037724852562, 0.04695028439164162, 0.037348370999097824, 0.036425765603780746, 0.02197163924574852, -0.04630104452371597, 0.0520075224339962, 0.012643089517951012, -0.008213737048208714, 0.04510507732629776, 0.02634546533226967, 0.02820775844156742, -0.019323425367474556, 0.08426448702812195, 0.017546558752655983, -0.000014215467672329396, -0.012873740866780281, 0.06936614215373993, 0.026072101667523384, 0.021749531850218773, 0.021612849086523056, 0.017990775406360626, 0.10141808539628983, 0.03188109025359154, 0.026499232277274132, 0.03885187208652496, -0.041414663195610046, -0.021954555064439774, 0.09752264618873596, 0.005813258700072765, 0.06502648442983627, -0.09007347375154495, -0.03854433819651604, -0.03490518033504486, 0.05224671587347984, 0.10162310302257538, -0.038681019097566605, -0.015957629308104515, -0.061267729848623276, -0.0043076202273368835, -0.023440971970558167, 0.036015719175338745, -0.003047582693397999, -0.025269094854593277, 0.02333846129477024, 0.0247565358877182, -0.06892192363739014, -0.01137878093868494, 0.040423717349767685, -0.035844869911670685, -0.022808818146586418, -0.030155478045344353, -0.010857680812478065, 0.00810268335044384, -0.047121137380599976, -0.016965659335255623, 0.049615584313869476, 0.00805569812655449, 0.014590809121727943, 0.002031009877100587, 0.03779258579015732, -0.013685290701687336, 0.025491202250123024, 0.06400137394666672, -0.016658125445246696, -0.049615584313869476, -0.02388518862426281, 0.05023065581917763, 0.046335216611623764, 0.0399453304708004, 0.0014031267492100596, 0.016077226027846336, -0.03162480890750885, 0.06020844355225563, 0.003026226069778204, -0.019118402153253555, 0.010832052677869797, 0.02151033841073513, -0.027866054326295853, 0.04968392476439476, -0.06471895426511765, 0.013437554240226746, 0.017717411741614342, -0.061233557760715485, -0.00873910915106535, 0.007141637150198221, 0.01142149418592453, -0.0008868316072039306, -0.012779772281646729, 0.018452076241374016, 0.036425765603780746, -0.0769519954919815, -0.00721852108836174, -0.02883991226553917, -0.01797368936240673, -0.020656075328588486, 0.04736033082008362, 0.009439604356884956, -0.06963950395584106, -0.01942593604326248, 0.005266530439257622, 0.03529813885688782, 0.054741162806749344, 0.060276784002780914, -0.029574578627943993, 0.04127797856926918, -0.025764567777514458, -0.013326500542461872, 0.006586366333067417, -0.009875277988612652, 0.012933539226651192, -0.022484198212623596, -0.03449513390660286, 0.05040150508284569, -0.05562959611415863, -0.05966171622276306, -0.00037213825271464884, 0.03649410977959633, -0.0020107212476432323, 0.030275074765086174, 0.05508286878466606, -0.028771571815013885, -0.017905348911881447, -0.03133435919880867, -0.0010502093937247992, 0.03418760001659393, 0.030275074765086174, 0.024688195437192917, 0.004489151295274496, 0.023868102580308914, 0.033811721950769424, -0.033811721950769424, 0.02742183767259121, -0.007756706327199936, 0.011635059490799904, 0.0343242809176445, 0.03782675787806511, 0.04640355706214905, -0.01822996884584427, -0.04527593031525612, 0.044079963117837906, 0.009806937538087368, 0.016922947019338608, -0.07168973982334137, -0.05812404304742813, 0.047291990369558334, 0.0027315053157508373, -0.022808818146586418, 0.06055014953017235, -0.010404921136796474, 0.0218520425260067, 0.003399966051802039, 0.03686998412013054, 0.05716726928949356, -0.015094824135303497, -0.050196483731269836, -0.012540577910840511, -0.013616949319839478, -0.022210832685232162, -0.010310952551662922, 0.022022895514965057, -0.002473090775310993, 0.01443704217672348, 0.0025691953487694263, -0.0486929826438427, -0.03237656131386757, 0.0101913558319211, -0.03519563004374504, 0.031266018748283386, 0.024654025211930275, -0.018093286082148552, 0.04257645830512047, 0.008961217477917671, -0.028139417991042137, -0.016248079016804695, 0.012198872864246368, 0.0059542120434343815, 0.032393645495176315, -0.019152572378516197, -0.0004527592973317951, -0.03066803514957428, 0.02667008526623249, 0.04636938497424126, -0.028446951881051064, -0.005347685422748327, -0.038305144757032394, 0.05330600216984749, 0.005621049553155899, 0.023406801745295525, 0.08057407289743423, -0.0007357338326983154, 0.008995387703180313, 0.03312831372022629, -0.02405604161322117, 0.009473774582147598, -0.020690245553851128, 0.008311977609992027, 0.029472067952156067, 0.055732108652591705, -0.033230822533369064, 0.019989749416708946, 0.029813772067427635, 0.05754314363002777, -0.022227918729186058, 0.04336238279938698, -0.008892876096069813, 0.08795490115880966, -0.015120452269911766, -0.009644627571105957, -0.05460447818040848, 0.061472754925489426, -0.014368700794875622, -0.021817872300744057, -0.06458227336406708, -0.0786605179309845, -0.014317445456981659, 0.0009882752783596516, -0.036596618592739105, -0.0345463901758194, 0.09041517972946167, 0.0010715659009292722, -0.0021121648605912924, -0.011985307559370995, 0.0586707703769207, -0.001788612804375589, -0.02759268879890442, 0.029386641457676888, -0.0445241779088974, 0.018947549164295197, 0.0028297456447035074, -0.02263796515762806, 0.10128140449523926, 0.014753119088709354, -0.04551512375473976, -0.015598839148879051, 0.030275074765086174, 0.005979839712381363, 0.08754485100507736, -0.05996925011277199, -0.03632325679063797, -0.027370581403374672, 0.000924739520996809, 0.025234924629330635, 0.001480010338127613, -0.03693832457065582, 0.002885272726416588, 0.016188280656933784, -0.00489919725805521, -0.027985651046037674, -0.0222620889544487, -0.013497352600097656, 0.004557492211461067, 0.01689731888473034, -0.03656245023012161, -0.028822828084230423, -0.02434649132192135, -0.04302067682147026, -0.03278660774230957, 0.04667692258954048, 0.0029386640526354313, 0.034016747027635574, -0.04684777185320854, -0.055151209235191345, 0.04554929584264755, -0.006710234563797712, -0.062429528683423996, 0.08433282375335693, -0.002680249512195587, 0.005668033845722675, -0.0040321205742657185, -0.04220058396458626, -0.002496583154425025, 0.043089017271995544, 0.022586708888411522, -0.010242611169815063, 0.026020845398306847, -0.02562788501381874, -0.04565180465579033, 0.0002616179990582168, -0.014701862819492817, -0.07278319448232651, -0.031060995534062386, 0.004044934641569853, 0.028241928666830063, -0.07127968966960907, -0.036220744252204895, 0.07401333004236221, -0.014838545583188534, -0.05320348963141441, 0.03374338150024414, -0.015205878764390945, -0.009302922524511814, 0.05709892883896828, -0.06471895426511765, -0.006680335383862257, -0.017819922417402267, 0.010345122776925564, -0.012976252473890781, -0.0007955322507768869, -0.06519734114408493, -0.08631471544504166, -0.005215274635702372, 0.016299335286021233, -0.033521272242069244, 0.03341876342892647, 0.028856998309493065, 0.035674016922712326, 0.016820434480905533, -0.030804717913269997, 0.02567914128303528, 0.01629079133272171, -0.002295831451192498, 0.05938835069537163, -0.013975739479064941, -0.0010523450328037143, -0.04107295721769333, -0.04876132309436798, 0.05720143765211105, -0.018076201900839806, -0.00801725685596466, -0.023406801745295525, -0.0328720323741436, -0.026977621018886566, 0.015026482753455639, 0.01127626933157444, 0.013881770893931389, 0.02180078811943531, -0.01913548819720745, -0.07893388718366623, -0.03215445205569267, -0.04524175822734833, -0.01980181224644184, -0.05375021696090698, -0.022313345223665237, -0.032718267291784286, 0.021441996097564697, -0.020041005685925484, 0.05463865026831627, -0.03861267864704132, -0.06413805484771729, -0.07797711342573166, 0.009080814197659492, -0.06113104894757271, -0.02883991226553917, 0.06352298706769943, -0.032974544912576675, -0.0019712115172296762, -0.04746284335851669, 0.05716726928949356, 0.08426448702812195, 0.02209123596549034, -0.05098240450024605, 0.0037032293621450663, 0.009576286189258099, -0.028395695611834526, -0.042542289942502975, -0.04626687616109848, -0.04677943140268326, 0.029950454831123352, -0.0786605179309845, 0.042542289942502975, -0.010857680812478065, -0.050367336720228195, -0.03905689716339111, -0.049000516533851624, 0.013933027163147926, 0.04568597674369812, 0.025525372475385666, 0.05392106994986534, 0.0007186486036516726, -0.008807449601590633, 0.022791732102632523, -0.021988725289702415, -0.020621905103325844, 0.07831881940364838, -0.002936528529971838, -0.0247565358877182, 0.00787203200161457, 0.04527593031525612, 0.020109346136450768, 0.0040726978331804276, -0.04397745057940483, 0.041961390525102615, -0.008734837174415588, -0.0008275671279989183, -0.038134291768074036, 0.023116352036595345, 0.030155478045344353, -0.0065436530858278275, -0.03516145795583725, 0.02333846129477024, -0.032239880412817, -0.028822828084230423, -0.014923971146345139, 0.0008820263901725411, -0.01852041855454445, 0.044079963117837906, -0.0013027507811784744, 0.008576799184083939, -0.04226892441511154, -0.01852041855454445, -0.041175469756126404, 0.0004754506517201662, -0.007842132821679115, -0.0003555869043339044, -0.048624638468027115, -0.03083888813853264, -0.040799591690301895, 0.03611823171377182, -0.04168802499771118, -0.013864685781300068, 0.013574236072599888, 0.015368188731372356, 0.013317957520484924, -0.009465232491493225, 0.009661712683737278, 0.05224671587347984, -0.026994705200195312, 0.025610798969864845, -0.040389545261859894, -0.05125577002763748, 0.00969588290899992, 0.02133948542177677, 0.007201435510069132, -0.004826584830880165, 0.017384247854351997, -0.03898855671286583, 0.06174611672759056, -0.003833504393696785, -0.012822484597563744, 0.0003251537855248898, 0.012873740866780281, 0.013821972534060478, -0.0035046131815761328, -0.06137024238705635, 0.03075346164405346, -0.020690245553851128, 0.05808987095952034, 0.04069708287715912, 0.000983470119535923, 0.006966513581573963, 0.011959679424762726, 0.00804288499057293, 0.01136169582605362, -0.03898855671286583, 0.11057578027248383, 0.06188279762864113, -0.06478729099035263, -0.014479754492640495, -0.009858192875981331, 0.02330428920686245, 0.01437724381685257, 0.003024090314283967, -0.016393303871154785, -0.008047156035900116, 0.039671964943408966, 0.02858363464474678, -0.06878524273633957, 0.004373825620859861, -0.002934392774477601, -0.03540065139532089, -0.03782675787806511, -0.07360328733921051, -0.02783188223838806, 0.01574406400322914, -0.0222620889544487, -0.0006033231038600206, 0.02180078811943531, 0.008773279376327991, -0.02067316137254238, 0.00544165400788188, 0.006022552959620953, -0.03304288536310196, -0.054741162806749344, -0.03751922398805618, -0.017956605181097984, -0.0195626188069582, -0.0065265679731965065, -0.07797711342573166, -0.06335213035345078, -0.011677772738039494, 0.05644968897104263, 0.0017864771652966738, 0.021749531850218773, 0.02591833472251892, 0.013369212858378887, 0.019579704850912094, 0.03353836014866829, -0.004873569589108229, 0.014812917448580265, 0.006483854725956917, -0.024449001997709274, -0.06236118823289871, 0.006594908889383078, 0.03611823171377182, -0.03241073340177536, -0.02397061511874199, -0.005578336305916309, -0.01822996884584427, 0.010874765925109386, -0.03864685073494911, -0.05692807585000992, 0.028105247765779495, -0.06557321548461914, 0.032137367874383926, -0.024995731189846992, 0.03434136509895325, 0.042337264865636826, -0.00726977689191699, 0.036425765603780746, -0.06892192363739014, 0.04472920298576355, -0.07456006109714508, 0.021271144971251488, 0.032103195786476135, 0.019733471795916557, -0.06540235877037048, -0.04302067682147026, -0.003933880478143692, -0.036186572164297104, 0.014197847805917263, -0.025576628744602203, -0.02142491191625595, 0.045993510633707047, 0.03615240380167961, -0.04069708287715912, 0.02272339165210724, -0.03632325679063797, -0.06020844355225563, -0.06078934296965599, -0.07503844797611237, 0.04852212965488434, -0.003513155970722437, -0.06403554230928421, 0.03615240380167961, 0.028686145320534706, 0.03008713759481907, -0.003045446937903762, -0.04199555888772011, 0.01398428250104189, 0.007299676071852446, -0.010857680812478065, -0.0015344696585088968, -0.09806936979293823, -0.018212882801890373, -0.03270117938518524, 0.023116352036595345, 0.05750897526741028, -0.021031951531767845, -0.011182300746440887, -0.017580728977918625, -0.016914404928684235, -0.0557662770152092, -0.0025115327443927526, 0.04896634444594383, -0.030633864924311638, -0.039296090602874756, -0.052485909312963486, -0.015726977959275246, 0.03347001597285271, 0.005928583908826113, 0.02055356279015541, 0.015342560596764088, 0.060310956090688705, 0.003536648117005825, 0.012660175561904907, -0.015607382170855999, 0.0062788319773972034, -0.01537673082202673, -0.011865710839629173, 0.03398257493972778, -0.004886383190751076, -0.02725098468363285, -0.02397061511874199, -0.038681019097566605, -0.013719460926949978, 0.031419787555933, -0.010157184675335884, -0.006475312169641256, -0.005804716143757105, 0.028993681073188782, 0.015573211014270782, -0.013779259286820889, 0.0011019990779459476, 0.02463693916797638, -0.005706475581973791, 0.027934394776821136, 0.03615240380167961, 0.02721681445837021, 0.014701862819492817, -0.01724756695330143, -0.04131215065717697, 0.0008574663079343736, 0.0578506775200367, 0.0703229159116745, -0.03481975197792053, -0.010481804609298706, 0.02121988870203495, 0.05289595574140549, -0.01805911585688591, 0.0545019693672657, 0.008675038814544678, 0.04650606960058212, -0.0428498238325119, 0.008807449601590633, 0.068648561835289, 0.036015719175338745, -0.014838545583188534, -0.0020769264083355665, -0.0010544806718826294, 0.003440543543547392, -0.11959679424762726, 0.009772766381502151, 0.008683581836521626, 0.07633692771196365, 0.009055186063051224, -0.013847600668668747, 0.01759781502187252, -0.015573211014270782, 0.00033556512789800763, -0.006821288727223873, -0.006163506302982569, 0.021732445806264877, -0.006500940304249525, -0.017666155472397804, -0.011959679424762726, -0.0009391551720909774, -0.02338971570134163, 0.06003759056329727, 0.003938151523470879, 0.043089017271995544, -0.0003045980993192643, 0.005070049781352282, 0.03186400234699249, 0.017819922417402267, 0.02342388592660427, -0.0050743212923407555, 0.06817017495632172, -0.05713309720158577, -0.010575774125754833, -0.02296258509159088, 0.02296258509159088, -0.054536137729883194, -0.07380830496549606, -0.05405775085091591, 0.01537673082202673, 0.07127968966960907, -0.02759268879890442, 0.03434136509895325, -0.012190330773591995, 0.017034001648426056 ]
401
bitmath
__ge__
null
def __ge__(self, other): if isinstance(other, numbers.Number): return self.prefix_value >= other else: return self._byte_value >= other.bytes
(self, other)
[ 0.021472549065947533, -0.01993505097925663, -0.035816699266433716, 0.07156351208686829, -0.009312341921031475, -0.018851814791560173, -0.0412328839302063, 0.007469092030078173, 0.009321077726781368, -0.10091573745012283, 0.057935696095228195, -0.04822150617837906, 0.05727177485823631, -0.03641073405742645, -0.03195548430085182, -0.005014338064938784, -0.033056192100048065, -0.006840115878731012, 0.03413942828774452, 0.014213114976882935, -0.029719125479459763, 0.028740717098116875, 0.03129156678915024, 0.0518905371427536, 0.00981901679188013, 0.07512771338224411, -0.003719258587807417, 0.002012505428865552, -0.017323052510619164, 0.008569800294935703, -0.07072487473487854, -0.05482575669884682, 0.048186562955379486, 0.010613973252475262, 0.048535995185375214, -0.027587594464421272, 0.0027342992834746838, 0.015392445027828217, -0.06237347051501274, 0.011225477792322636, 0.010011204518377781, -0.04933968931436539, -0.002670964924618602, 0.004339498933404684, 0.012029169127345085, -0.03158858045935631, -0.04570560157299042, 0.00032540783286094666, 0.007587025407701731, 0.045041684061288834, 0.007709326222538948, -0.060696203261613846, 0.006333441007882357, 0.015497274696826935, -0.08540099114179611, 0.030208328738808632, 0.03576428443193436, 0.05370757728815079, -0.09183052182197571, 0.0610106885433197, -0.02610251121222973, 0.02531629242002964, -0.0031033859122544527, -0.07855213433504105, -0.0050885919481515884, 0.004795943386852741, -0.0463695228099823, -0.01100708357989788, -0.026347113773226738, 0.05859961360692978, -0.029719125479459763, 0.007573921699076891, -0.0081242760643363, 0.014239322394132614, -0.04864082485437393, 0.01897411420941353, -0.014300472103059292, 0.0456007719039917, -0.005809294059872627, -0.035676926374435425, 0.05311354622244835, -0.038297660648822784, 0.07785327732563019, -0.020057352259755135, -0.0184324961155653, -0.0008337210165336728, 0.0011411113664507866, 0.038682036101818085, 0.07533737272024155, 0.019341018050909042, -0.06740528345108032, 0.05835501477122307, 0.0017395123140886426, -0.01409081369638443, 0.07062004506587982, 0.018851814791560173, 0.009312341921031475, -0.005634578410536051, 0.015715669840574265, 0.015366237610578537, 0.050422925502061844, 0.07352032512426376, 0.017838463187217712, -0.023167289793491364, 0.041197940707206726, 0.02482708729803562, 0.005931594874709845, -0.0259452685713768, -0.027325520291924477, -0.014798412099480629, -0.04214140400290489, -0.02741287834942341, -0.04035930708050728, -0.013584138825535774, -0.00631596939638257, 0.013732646591961384, 0.028286457061767578, 0.023936038836836815, 0.027779782190918922, -0.0028413126710802317, 0.046299636363983154, 0.016126250848174095, 0.04811667650938034, 0.03129156678915024, -0.004726057406514883, 0.021070702001452446, 0.06674136221408844, 0.008294623345136642, -0.03094213455915451, -0.034226786345243454, 0.0708995908498764, 0.02197922393679619, -0.015392445027828217, 0.07261180877685547, 0.049549344927072525, -0.0003982969792559743, -0.012142734602093697, 0.04563571512699127, 0.020057352259755135, 0.0038808705285191536, -0.004595020320266485, 0.011557437479496002, 0.06433028727769852, -0.04759253188967705, -0.017489032819867134, 0.045181456953287125, -0.040918394923210144, 0.04095333814620972, -0.03225250169634819, 0.02342936210334301, -0.047068383544683456, 0.03478587791323662, 0.07736407220363617, -0.010928461328148842, -0.026661600917577744, 0.007438517175614834, -0.019428376108407974, -0.0416172593832016, 0.0005509001784957945, 0.004957555327564478, 0.03623601794242859, 0.03812294453382492, -0.020004937425255775, -0.05175076425075531, -0.0084780752658844, -0.006896898616105318, -0.0590888187289238, -0.009827752597630024, -0.03268929198384285, 0.029858896508812904, 0.03413942828774452, -0.0036144291516393423, 0.01867709867656231, 0.04528628662228584, 0.004769735969603062, -0.0017962948186323047, 0.0038808705285191536, 0.036201074719429016, -0.011365250684320927, 0.012265035882592201, -0.008678997866809368, 0.01988263614475727, -0.04077862203121185, -0.02114058844745159, 0.051541104912757874, 0.0012699640356004238, 0.026399528607726097, 0.0129726342856884, 0.023307062685489655, 0.0168251134455204, -0.02982395514845848, -0.0002508806937839836, 0.02367396466434002, -0.03599141538143158, 0.023062460124492645, -0.0204242542386055, 0.007211386691778898, 0.004726057406514883, 0.016423266381025314, 0.08714814484119415, -0.03342309594154358, -0.03599141538143158, -0.02435535565018654, -0.024599958211183548, 0.008054389618337154, -0.040848508477211, -0.0021926809567958117, 0.017489032819867134, 0.009670509025454521, -0.059193648397922516, -0.041197940707206726, -0.04399339109659195, -0.006193668115884066, 0.04913002997636795, 0.021559905260801315, -0.025456063449382782, 0.010028676129877567, -0.026556773111224174, -0.01294642686843872, -0.021367719396948814, 0.09867937862873077, 0.014143228530883789, -0.023656493052840233, -0.02711586281657219, 0.00886244885623455, 0.02725563570857048, -0.026714015752077103, 0.03492565080523491, 0.01780351996421814, 0.01591659151017666, 0.06887289136648178, 0.02542112022638321, 0.02066885679960251, 0.016178665682673454, -0.0032103992998600006, 0.025980211794376373, -0.0035074157640337944, 0.049304746091365814, -0.05251951143145561, -0.003618797054514289, -0.009198776446282864, 0.0233769491314888, 0.015715669840574265, 0.03555462509393692, 0.022485898807644844, -0.10189414024353027, -0.0025552157312631607, 0.017786048352718353, 0.008373245596885681, 0.06073114648461342, -0.051191672682762146, -0.06488937884569168, -0.013444365933537483, -0.03440150246024132, 0.0005102241993881762, -0.013610346242785454, -0.05248456820845604, -0.06838368624448776, 0.030715003609657288, 0.024722257629036903, -0.02935222163796425, 0.02589285373687744, 0.013042519800364971, -0.02706344798207283, -0.04182691499590874, 0.02832140028476715, 0.025001803413033485, 0.012282507494091988, 0.006866323295980692, 0.046928610652685165, -0.034174371510744095, -0.07100442051887512, -0.030977077782154083, 0.044936854392290115, -0.027779782190918922, -0.027465293183922768, 0.04951440170407295, 0.0031798239797353745, -0.010028676129877567, -0.02094840072095394, -0.004014091100543737, -0.005538484547287226, -0.04434281960129738, -0.062303584069013596, -0.038542263209819794, 0.03745902702212334, 0.004804679192602634, -0.07030556350946426, -0.00004838803215534426, -0.06366636604070663, 0.02342936210334301, -0.011164327152073383, 0.023551663383841515, -0.02187439426779747, 0.01872951351106167, -0.04346924275159836, 0.051436275243759155, -0.0015440491260960698, 0.03578175604343414, 0.04846610873937607, 0.004843990318477154, -0.04364395886659622, -0.038542263209819794, -0.011330307461321354, -0.0032322388142347336, 0.0049619232304394245, 0.04933968931436539, 0.03520519658923149, -0.012020434252917767, 0.01993505097925663, -0.010098562575876713, 0.038577206432819366, -0.006735286675393581, -0.028059326112270355, 0.014527603052556515, 0.06429534405469894, 0.021227946504950523, 0.03689993545413017, -0.026906203478574753, 0.06723056733608246, 0.006931841839104891, 0.07666520774364471, -0.028059326112270355, 0.0057743508368730545, -0.057935696095228195, -0.053567804396152496, -0.03162352368235588, 0.025648251175880432, -0.007831627503037453, -0.011365250684320927, -0.030208328738808632, -0.013059991411864758, 0.10154470801353455, -0.0011946179438382387, 0.020354367792606354, 0.04448259249329567, 0.05594393610954285, 0.04189680144190788, -0.033108606934547424, 0.0009068832150660455, 0.024530071765184402, -0.009766602888703346, 0.006792069412767887, -0.021507490426301956, 0.0014665190828964114, -0.028600944206118584, -0.055908992886543274, 0.003278101561591029, 0.04000987485051155, 0.028496116399765015, -0.05727177485823631, -0.0035227034240961075, 0.02372637949883938, -0.022049110382795334, 0.05115672945976257, -0.03503048047423363, 0.016021421179175377, -0.03665533289313316, 0.0235691349953413, 0.04899025708436966, 0.012474694289267063, -0.016204873099923134, -0.003845927305519581, -0.018013179302215576, -0.08057884126901627, -0.01799570769071579, -0.014728525653481483, -0.02566572278738022, -0.06272290647029877, 0.02807679772377014, -0.03634084761142731, -0.02348177693784237, -0.00989763904362917, -0.037074651569128036, -0.024669844657182693, -0.02736046351492405, -0.08449246734380722, 0.03613118827342987, -0.03253204748034477, -0.01988263614475727, 0.09686233103275299, 0.02624228410422802, -0.06296750158071518, 0.04151242971420288, 0.0009871431393548846, 0.0036886832676827908, 0.004638699349015951, -0.03148375079035759, 0.028024382889270782, 0.06621721386909485, 0.006923106033354998, -0.020738743245601654, -0.008023814298212528, 0.02206658199429512, -0.019375961273908615, 0.013785061426460743, -0.018170423805713654, -0.04000987485051155, -0.0031929276883602142, -0.037913285195827484, 0.031850654631853104, 0.022241296246647835, -0.045041684061288834, 0.04944451525807381, 0.038577206432819366, 0.005695728585124016, 0.07048027962446213, 0.03700476512312889, -0.054930586367845535, 0.0737299844622612, -0.10580777376890182, -0.017017299309372902, -0.006831380072981119, -0.002614182187244296, -0.06132517755031586, -0.06593766808509827, -0.022136466577649117, -0.044692251831293106, 0.01867709867656231, -0.009591886773705482, -0.004835254512727261, 0.006617353763431311, 0.0016488785622641444, -0.03331826627254486, 0.003033499699085951, -0.038926638662815094, 0.0020332529675215483, 0.02783219702541828, -0.037074651569128036, 0.0617794394493103, 0.0031885597854852676, -0.006263554561883211, 0.05685245990753174, -0.01522646564990282, 0.033492982387542725, -0.005075488239526749, -0.021367719396948814, -0.07289135456085205, 0.022293711081147194, -0.023149818181991577, 0.06471466273069382, -0.0017679035663604736, 0.03721442446112633, 0.0336502268910408, -0.03244468942284584, -0.047697361558675766, 0.03433161601424217, 0.032811589539051056, -0.01506048534065485, -0.03190306946635246, -0.042945098131895065, -0.048186562955379486, -0.023272119462490082, -0.028688302263617516, -0.01178456749767065, -0.035816699266433716, -0.05636325478553772, -0.030348101630806923, -0.00789277721196413, -0.019078943878412247, -0.030295686796307564, 0.03195548430085182, -0.04885048419237137, 0.004835254512727261, -0.0777135044336319, 0.06677630543708801, 0.02818162739276886, 0.02725563570857048, -0.0012404808076098561, 0.05528001859784126, 0.004086161497980356, -0.05790075287222862, -0.034174371510744095, -0.005647682119160891, -0.031693410128355026, 0.07110925018787384, -0.03148375079035759, 0.019847692921757698, 0.0016128434799611568, -0.0431547537446022, 0.019078943878412247, 0.0022909583058208227, 0.01249216590076685, -0.04497179761528969, 0.04671895503997803, -0.027045976370573044, -0.056677743792533875, 0.0416172593832016, -0.0029090149328112602, -0.04710332676768303, -0.008504281751811504, 0.009670509025454521, -0.034121956676244736, 0.06929221004247665, 0.0336502268910408, 0.014169435948133469, -0.0042543248273432255, 0.01522646564990282, -0.006634825374931097, 0.032916419208049774, -0.02736046351492405, 0.07512771338224411, -0.07079476118087769, 0.010710067115724087, 0.03850731998682022, 0.020826101303100586, 0.027674952521920204, 0.01911388710141182, -0.006110678426921368, 0.04172208532691002, 0.006992992013692856, -0.002526824362576008, 0.042700495570898056, 0.06488937884569168, 0.01394230592995882, 0.027377935126423836, -0.020895985886454582, -0.02405833825469017, -0.018257781863212585, -0.013898626901209354, 0.020529083907604218, 0.007962663657963276, -0.03323090821504593, -0.09238961338996887, -0.03710959479212761, -0.01788214221596718, -0.057062119245529175, -0.03885675221681595, 0.00846497155725956, -0.0003095742140430957, 0.008731412701308727, -0.03321343660354614, 0.04944451525807381, 0.0068706911988556385, -0.05402206629514694, 0.023411892354488373, -0.046055033802986145, 0.035676926374435425, -0.00042750724242068827, 0.021088173612952232, 0.006818276364356279, -0.004186622798442841, 0.053183432668447495, 0.010098562575876713, -0.019183773547410965, 0.0634567067027092, -0.05423172563314438, 0.028531059622764587, 0.011487551033496857, 0.029020262882113457, -0.03050534427165985, -0.024652373045682907, 0.03289894759654999, 0.010989611968398094, 0.0518905371427536, 0.019428376108407974, -0.04252577945590019, 0.03588658571243286, 0.04664906859397888, 0.007019199430942535, 0.04563571512699127, -0.013985984027385712, 0.0507374107837677, -0.012928955256938934, -0.0887555256485939, -0.02260820008814335, -0.00003941338582080789, -0.036061301827430725, 0.018013179302215576, 0.04235106334090233, 0.009347285144031048, 0.02416316792368889, -0.06520386785268784, 0.007923352532088757, -0.0036078772973269224, 0.014833355322480202, -0.0642254576086998, 0.00680080521851778, -0.012675616890192032, -0.06569306552410126, -0.020092295482754707, -0.0006076827412471175, 0.021787036210298538, -0.008028182201087475, 0.036445677280426025, -0.007761741057038307, -0.009478321298956871, 0.02716827765107155, 0.012055376544594765, -0.02411075308918953, -0.02807679772377014, -0.0518905371427536, -0.01988263614475727, -0.05346297472715378, -0.020004937425255775, 0.016021421179175377, -0.005315722431987524, -0.005411815829575062, -0.01591659151017666, 0.008381981402635574, 0.04626469314098358, 0.03088971972465515, -0.015008070506155491, -0.04926980286836624, 0.03164099529385567, 0.03088971972465515, 0.03113432042300701, -0.014903241768479347, 0.016615454107522964, -0.022782914340496063, 0.0674402266740799, 0.024599958211183548, -0.03637579083442688, -0.04773230478167534, -0.022188881412148476, 0.013758854009211063, 0.006578042637556791, -0.010963404551148415, -0.05084224045276642, 0.050178322941064835, -0.01477220468223095, 0.04608997702598572, 0.03216514363884926, 0.0261374544352293, -0.00853485707193613, -0.035135310143232346, 0.0335279256105423, -0.003966044168919325, 0.012867804616689682, -0.029858896508812904, 0.008390717208385468, -0.003527071326971054, 0.07820270955562592, -0.007172075565904379, -0.07981009036302567, -0.07068993151187897, -0.0010018848115578294, 0.01722695864737034, -0.025491006672382355, 0.012387336231768131, -0.04975900426506996, 0.029457051306962967, -0.08085837960243225, 0.04832633584737778, -0.054196782410144806, -0.00816358719021082, -0.002478777663782239, -0.013741382397711277, -0.018030650913715363, -0.028059326112270355, -0.000817341438960284, 0.07156351208686829, 0.0046561709605157375, -0.007656911388039589, -0.049199916422367096, -0.0032453425228595734, 0.03220008686184883, 0.02222382463514805, 0.011749624274671078, 0.00010694505908759311, 0.0016434186836704612, -0.006254818756133318, 0.021769564598798752, -0.025333764031529427, 0.03454127535223961, 0.006093206815421581, 0.07093453407287598, -0.018310194835066795, 0.021856922656297684, -0.00987143162637949, -0.04986383393406868, 0.016178665682673454, -0.049549344927072525, -0.06474960595369339, -0.01872951351106167, -0.034121956676244736, 0.017462825402617455, 0.011959283612668514, 0.01998746581375599, -0.004031562712043524, -0.01362781785428524, 0.03396471589803696, -0.002406707499176264, 0.01804812252521515, 0.020598970353603363, 0.018781928345561028, -0.022031638771295547, 0.06733539700508118, 0.021070702001452446, -0.016432002186775208, 0.016807641834020615, -0.04458742216229439, -0.0046780104748904705, -0.007844731211662292, -0.03637579083442688, 0.04284026846289635, -0.006556203123182058, 0.015995213761925697, -0.008067493326961994, -0.035135310143232346, 0.01703477092087269, -0.05922859162092209, 0.002636021701619029, 0.0073992060497403145, -0.00782289169728756, 0.004457431845366955, -0.03847237676382065, -0.019900107756257057, 0.04472719505429268, -0.010631444863975048, -0.0168251134455204, 0.037563856691122055, -0.03342309594154358, -0.0950452908873558, -0.01522646564990282, 0.0642254576086998, 0.013260914944112301, 0.055804166942834854, 0.005219628568738699, 0.052170079201459885, -0.0617794394493103, 0.01832766644656658, 0.07386975735425949, -0.010098562575876713, -0.017759840935468674, 0.03296883404254913, 0.0547209270298481, -0.04926980286836624, -0.08882541209459305, -0.015741875395178795, 0.01906147226691246, 0.050318095833063126, -0.006219875533133745, -0.02105323038995266, -0.01314734946936369, 0.025298820808529854, -0.04801185056567192, -0.015340030193328857, 0.04822150617837906, 0.05699223279953003, 0.02482708729803562, 0.0029461418744176626, 0.03214767202734947, -0.009653037413954735, -0.008386349305510521, 0.0055734277702867985, -0.008866816759109497, 0.047173213213682175, -0.019847692921757698, -0.008866816759109497, 0.005127903074026108, -0.0003816444077529013, 0.04186185821890831, -0.03473346307873726, 0.05297377333045006, 0.056677743792533875, -0.036061301827430725, -0.01147007942199707, -0.009085211902856827, -0.026941146701574326, -0.07142373919487, 0.02998119778931141, -0.025281349197030067, 0.05290388688445091, -0.03061017394065857, 0.035921528935432434, -0.0119767552241683, 0.08281520009040833 ]
402
bitmath
__gt__
null
def __gt__(self, other): if isinstance(other, numbers.Number): return self.prefix_value > other else: return self._byte_value > other.bytes
(self, other)
[ 0.005987662356346846, -0.004694327246397734, -0.04257119074463844, 0.04584589600563049, 0.0043851458467543125, -0.024299021810293198, -0.05173340067267418, 0.014300714246928692, 0.00765549810603261, -0.11231547594070435, 0.05967630818486214, -0.022330714389681816, 0.05479908362030983, -0.046333618462085724, -0.018568284809589386, 0.021564293652772903, -0.01193177793174982, -0.007873231545090675, 0.0479709729552269, 0.012550139799714088, -0.018115399405360222, 0.03630047291517258, 0.0205017551779747, 0.02408999763429165, 0.03269481286406517, 0.06667860597372055, 0.0069369785487651825, -0.006431838031858206, -0.026528609916567802, 0.025918956845998764, -0.07594533264636993, -0.06828112155199051, 0.04992186278104782, -0.004720455035567284, 0.011278578080236912, -0.03189355507493019, -0.007071973290294409, 0.028392406180500984, -0.06664376705884933, 0.014248458668589592, 0.025187373161315918, -0.0634038969874382, -0.02515253610908985, -0.008796419948339462, -0.0011033628834411502, -0.04288472607731819, -0.03455860912799835, 0.004112979397177696, -0.00010696142271626741, 0.029211081564426422, 0.0037275918293744326, -0.0678282380104065, 0.0007457361207343638, 0.019839845597743988, -0.09538454562425613, 0.018063142895698547, 0.048702556639909744, 0.05263917148113251, -0.08103157579898834, 0.06368260085582733, -0.020083706825971603, 0.050200559198856354, -0.005447683855891228, -0.08096189796924591, 0.00681069353595376, 0.01794121228158474, -0.05957179516553879, -0.0011322124628350139, -0.03811201453208923, 0.059223420917987823, -0.02745179831981659, 0.010137656703591347, -0.005347526632249355, 0.03321737051010132, -0.03915713354945183, 0.004794484470039606, -0.01011152844876051, 0.032259345054626465, -0.014440063387155533, -0.030691668391227722, 0.054241687059402466, -0.031963229179382324, 0.08151929825544357, -0.03999323025345802, -0.02802661433815956, -0.012759163975715637, 0.017462199553847313, 0.02823563665151596, 0.05904923379421234, 0.016660941764712334, -0.06936107575893402, 0.036021776497364044, 0.004846740514039993, -0.02051917463541031, 0.05208177492022514, 0.003279061522334814, -0.0037232371978461742, -0.0074421195313334465, 0.005517358426004648, 0.01980500854551792, 0.0644490197300911, 0.07113777846097946, 0.01599903404712677, -0.01912568137049675, 0.04863287881016731, 0.03332188352942467, 0.004807548597455025, -0.0064100646413862705, -0.03534244745969772, -0.012323697097599506, -0.04664715379476547, -0.0027978711295872927, -0.02290552854537964, -0.021668804809451103, 0.011644369922578335, 0.022922948002815247, 0.03534244745969772, 0.02199975959956646, 0.021250756457448006, -0.012584976851940155, 0.037902988493442535, -0.010564412921667099, 0.05765574425458908, 0.020554011687636375, -0.04835418239235878, 0.037624292075634, 0.07998646050691605, -0.0006597315077669919, -0.05490359663963318, -0.026424096897244453, 0.050096046179533005, 0.009031571447849274, -0.0194392167031765, 0.08340051025152206, 0.050966981798410416, -0.004946897737681866, 0.0017288014059886336, 0.04588073492050171, 0.022470062598586082, 0.0038016210310161114, 0.000977621879428625, 0.008722390979528427, 0.05518229305744171, -0.05734220892190933, -0.012210476212203503, 0.023219065740704536, -0.04337244853377342, 0.02844466082751751, -0.031040040776133537, 0.006771501619368792, -0.06420515477657318, 0.028967220336198807, 0.07378541678190231, -0.013098827563226223, -0.004964316263794899, 0.029402686282992363, 0.002331922296434641, -0.045532360672950745, -0.002236119704321027, -0.005974598228931427, 0.031040040776133537, 0.0329735092818737, -0.012480465695261955, -0.04626394435763359, -0.012933350168168545, -0.02515253610908985, -0.02516995370388031, -0.0007206968148238957, -0.03922680765390396, 0.038773924112319946, 0.029089150950312614, -0.007760010194033384, 0.012759163975715637, 0.02992524765431881, -0.019665660336613655, -0.016687070950865746, -0.00043029518565163016, 0.03964485600590706, 0.0015154228312894702, 0.02804403193295002, -0.015398089773952961, 0.012323697097599506, -0.03616112470626831, -0.029576873406767845, 0.032956093549728394, -0.008504658006131649, 0.021355269476771355, 0.015842264518141747, 0.009057699702680111, 0.00574380112811923, -0.017253177240490913, 0.02318422868847847, 0.01999661512672901, -0.053266242146492004, 0.040585462003946304, -0.015293577685952187, 0.01963082328438759, 0.010895367711782455, 0.05183791369199753, 0.07887165993452072, -0.020257893949747086, -0.014553285203874111, -0.017784444615244865, -0.022661667317152023, 0.013325270265340805, -0.021041734144091606, 0.002758679213002324, 0.021181082352995872, -0.019090844318270683, -0.0640309676527977, -0.03717140480875969, -0.04257119074463844, -0.015842264518141747, 0.026319585740566254, 0.016329986974596977, -0.01841151714324951, -0.0013183742994442582, -0.018899239599704742, -0.010390226729214191, -0.016957059502601624, 0.1018642857670784, -0.0008839966612868011, -0.028305312618613243, -0.014570703729987144, 0.016878675669431686, 0.047622598707675934, -0.021668804809451103, 0.022539738565683365, 0.021477200090885162, 0.005708963610231876, 0.06511092931032181, 0.0418396070599556, 0.027277611196041107, 0.017357688397169113, -0.0192301943898201, 0.016713198274374008, 0.003644853364676237, 0.0205017551779747, -0.07225257158279419, -0.007011007983237505, -0.018777308985590935, 0.03703205659985542, 0.015920650213956833, 0.045636873692274094, 0.008321762084960938, -0.10611443966627121, -0.002094593131914735, 0.005939760711044073, 0.010782146826386452, 0.07385509461164474, -0.04372081905603409, -0.06897787004709244, -0.01650417409837246, -0.038007501512765884, 0.0022753116209059954, -0.0025300593115389347, -0.06410064548254013, -0.08151929825544357, 0.03675336018204689, 0.02774791419506073, -0.01663481444120407, 0.008722390979528427, -0.0017756139859557152, -0.017723480239510536, -0.036126285791397095, 0.01931728608906269, 0.015075844712555408, 0.011853394098579884, 0.020379824563860893, 0.03450635448098183, -0.02290552854537964, -0.06507609039545059, -0.048493530601263046, 0.015398089773952961, -0.0209198035299778, -0.022539738565683365, 0.051663726568222046, -0.00006763336568837985, -0.010808274149894714, -0.0443827286362648, 0.006636506877839565, -0.036509498953819275, -0.049503814429044724, -0.05688932165503502, -0.02506544254720211, 0.044138867408037186, -0.003509858623147011, -0.07817491888999939, -0.0011844683904200792, -0.05100181698799133, 0.019892102107405663, -0.008826903067529202, -0.0021533810067921877, -0.007350671570748091, 0.006218459457159042, -0.053753964602947235, 0.026232492178678513, -0.009510585106909275, 0.04974767565727234, 0.04114285856485367, -0.021564293652772903, -0.044347893446683884, -0.026929238811135292, -0.004328535404056311, 0.004202250391244888, 0.02604088746011257, 0.0352901928126812, 0.029454942792654037, -0.013325270265340805, 0.040480948984622955, -0.004304584581404924, 0.024525463581085205, 0.0094583285972476, -0.03201548382639885, 0.02903689630329609, 0.07225257158279419, 0.013342688791453838, 0.023933229967951775, -0.012794001027941704, 0.06267231702804565, 0.001991169760003686, 0.049085766077041626, -0.05152437835931778, 0.011766300536692142, -0.036404985934495926, -0.0661560446023941, -0.05448554828763008, 0.01095633301883936, 0.009467038325965405, -0.013699770905077457, -0.03022136352956295, -0.00002653623050719034, 0.11217612773180008, -0.002094593131914735, 0.03302576765418053, 0.042362164705991745, 0.051454704254865646, 0.045741382986307144, -0.018254749476909637, -0.00285012717358768, -0.0005260977777652442, -0.02139010652899742, 0.023358413949608803, -0.0017756139859557152, 0.018742471933364868, -0.012201766483485699, -0.06451869010925293, -0.002023829845711589, 0.03041296824812889, 0.04271053895354271, -0.05382363870739937, -0.012959478422999382, 0.023236483335494995, -0.01841151714324951, 0.033618003129959106, -0.03222450986504555, 0.03062199242413044, -0.006331680342555046, 0.014753599651157856, 0.061592359095811844, 0.02931559458374977, -0.010764728300273418, 0.004221846349537373, -0.021233338862657547, -0.06347357481718063, -0.0166957788169384, -0.012297569774091244, -0.022922948002815247, -0.05173340067267418, 0.025413814932107925, -0.02595379389822483, -0.01446619164198637, 0.005717672873288393, -0.017871538177132607, -0.037693966180086136, -0.011243741028010845, -0.08096189796924591, 0.037415266036987305, -0.028078868985176086, -0.020466918125748634, 0.0773388221859932, 0.01832442358136177, -0.04995669797062874, 0.03933132067322731, -0.005434619728475809, 0.027190517634153366, -0.009832830168306828, -0.032851580530405045, 0.01025087758898735, 0.053266242146492004, 0.008770291693508625, -0.016983186826109886, -0.024107417091727257, 0.009136083535850048, -0.022052016109228134, 0.02001403272151947, -0.029994921758770943, -0.03954034298658371, 0.008848675526678562, -0.027991775423288345, 0.03259029984474182, 0.018394097685813904, -0.04194411635398865, 0.047413576394319534, 0.05194242298603058, 0.006954397540539503, 0.0638219490647316, 0.03905262053012848, -0.06626056134700775, 0.07824458926916122, -0.089183509349823, -0.00891835056245327, -0.022173946723341942, -0.008635297417640686, -0.03199806809425354, -0.053266242146492004, -0.011513729579746723, -0.015415508300065994, 0.015101972967386246, -0.018864402547478676, -0.008587395772337914, 0.01794121228158474, 0.009109956212341785, -0.054032664746046066, -0.0005010584718547761, -0.03497665748000145, 0.0018812145572155714, 0.03534244745969772, -0.0655289739370346, 0.05549582839012146, 0.013612677343189716, -0.0025496555026620626, 0.029890408739447594, 0.011565986089408398, 0.06103496253490448, 0.006096528843045235, -0.027608565986156464, -0.09050732105970383, 0.028566591441631317, -0.0001641163689782843, 0.06329938769340515, 0.010024434886872768, 0.042954400181770325, 0.025204790756106377, -0.04239700362086296, -0.039888717234134674, 0.030674248933792114, 0.016530301421880722, -0.009022862650454044, -0.04323309659957886, -0.024246765300631523, -0.033234789967536926, 0.01219305768609047, -0.030848436057567596, 0.0005075904773548245, -0.06462320685386658, -0.07019717246294022, -0.03321737051010132, -0.008530785329639912, -0.01952631026506424, -0.04748325049877167, 0.03685786947607994, -0.036230798810720444, 0.003927906509488821, -0.08465465903282166, 0.05936277285218239, 0.014170074835419655, 0.01589452102780342, -0.00414781691506505, 0.05229079723358154, 0.0021305191330611706, -0.04469626396894455, -0.026580864563584328, 0.014892948791384697, -0.04347695782780647, 0.07197387516498566, -0.010773437097668648, 0.011356961913406849, -0.014091691002249718, -0.029472362250089645, 0.03891327232122421, 0.001781057333573699, -0.005251723807305098, -0.030743923038244247, 0.04002806544303894, -0.0059005687944591045, -0.059014398604631424, 0.05040958151221275, 0.017723480239510536, -0.05964146926999092, -0.01059925090521574, 0.004372082185000181, -0.030674248933792114, 0.06016403064131737, 0.030952947214245796, 0.014492319896817207, 0.0066582802683115005, 0.012611105106770992, -0.02823563665151596, 0.031283900141716, -0.030465224757790565, 0.07294932007789612, -0.05518229305744171, -0.00507753761485219, 0.04103834927082062, 0.011565986089408398, 0.038495223969221115, 0.012158219702541828, -0.018115399405360222, 0.027660822495818138, 0.0023275676649063826, -0.012628523632884026, 0.03408830612897873, 0.058805372565984726, 0.008164993487298489, 0.024211928248405457, -0.02706858702003956, -0.029994921758770943, -0.014631669037044048, -0.00495125213637948, 0.014379098080098629, -0.013438491150736809, -0.04103834927082062, -0.09078602492809296, -0.012463046237826347, -0.022470062598586082, -0.04532333463430405, -0.014945204369723797, 0.007085037417709827, 0.0033291401341557503, 0.00015404621080961078, -0.025918956845998764, 0.05438103526830673, -0.00793419685214758, -0.04595040902495384, 0.03539470210671425, -0.05782993137836456, 0.05075795575976372, 0.0027869846671819687, 0.013987178914248943, 0.008164993487298489, -0.015136810019612312, 0.046333618462085724, -0.008988025598227978, -0.03765912726521492, 0.04957348853349686, -0.05911891162395477, 0.0481799952685833, 0.012323697097599506, 0.0352901928126812, -0.023410670459270477, -0.021076571196317673, 0.02267908677458763, -0.0042784567922353745, 0.04654264077544212, 0.03995839133858681, -0.04626394435763359, 0.04828450828790665, 0.06309036165475845, 0.01675674505531788, 0.043651144951581955, 0.006327325943857431, 0.06166203320026398, 0.00008702522609382868, -0.0881383866071701, -0.007455183658748865, -0.0083478894084692, -0.04410403221845627, -0.0016830774256959558, 0.02626732923090458, 0.02318422868847847, 0.01574646309018135, -0.048389021307229996, -0.0016645700670778751, 0.01688738539814949, 0.024751907214522362, -0.04964316263794899, 0.031040040776133537, -0.012654651887714863, -0.03210257738828659, -0.024595139548182487, 0.03243353217840195, 0.03427990898489952, -0.007999517023563385, 0.026319585740566254, -0.014379098080098629, -0.0034249427262693644, 0.015110681764781475, 0.020571429282426834, -0.032450951635837555, -0.03412314131855965, -0.0443827286362648, -0.01153985783457756, -0.05263917148113251, -0.002236119704321027, 0.006262005772441626, -0.013490746729075909, -0.008839966729283333, -0.029890408739447594, -0.00015581530169583857, 0.06500641256570816, 0.03391411900520325, -0.013377525843679905, -0.03419281542301178, 0.06033821403980255, 0.019892102107405663, 0.013961050659418106, -0.020048869773745537, 0.003784202504903078, -0.004711745772510767, 0.07040619850158691, 0.03685786947607994, -0.02597121149301529, -0.006379581987857819, -0.00861352402716875, -0.0017723479541018605, 0.016277732327580452, -0.014483610168099403, -0.04710003733634949, 0.031266484409570694, -0.020780453458428383, 0.05169856548309326, 0.03290383517742157, 0.036614008247852325, 0.005138502921909094, -0.04386017099022865, 0.013804282993078232, -0.024403532966971397, 0.024316439405083656, -0.02348034456372261, -0.0031832589302212, -0.012550139799714088, 0.07998646050691605, -0.01639966294169426, -0.09803218394517899, -0.07894133776426315, -0.000914479314815253, 0.031649693846702576, -0.021337850019335747, 0.002948107197880745, -0.058317653834819794, 0.0189166571944952, -0.08054385334253311, 0.04201379045844078, -0.03755461797118187, -0.019839845597743988, 0.003638321300968528, 0.00830434262752533, -0.022940367460250854, -0.01931728608906269, -0.013586550019681454, 0.0709984302520752, -0.005857022479176521, -0.007507439702749252, -0.04114285856485367, -0.00797774363309145, 0.04549752175807953, 0.03051748126745224, -0.002270956989377737, -0.014048144221305847, 0.005277852062135935, -0.04128221049904823, 0.0203972440212965, -0.014352970756590366, 0.027869844809174538, 0.0014707875670865178, 0.05587904155254364, -0.017418652772903442, 0.0007386597571894526, -0.026127981022000313, -0.028810452669858932, 0.020536592230200768, -0.03842554986476898, -0.07246159762144089, -0.030587155371904373, -0.03703205659985542, 0.015084553509950638, 0.03797266632318497, 0.010982461273670197, -0.022365551441907883, 0.004541913978755474, 0.027120843529701233, -0.02100689522922039, 0.020083706825971603, 0.03396637365221977, 0.00856997724622488, -0.010189912281930447, 0.07253127545118332, -0.017409944906830788, -0.014971332624554634, 0.021825572475790977, -0.03062199242413044, 0.005182049237191677, -0.0094060730189085, -0.03821652755141258, 0.053649451583623886, 0.006096528843045235, 0.02257457561790943, -0.003614370711147785, -0.04769227281212807, -0.004933833610266447, -0.06476255506277084, 0.006235877983272076, 0.007685980759561062, -0.00812580157071352, 0.0027826298028230667, -0.019265031442046165, -0.01481456495821476, 0.04706520214676857, -0.022261038422584534, -0.024351278319954872, 0.04145639389753342, -0.018881820142269135, -0.08974090218544006, -0.03738043084740639, 0.054032664746046066, 0.016373533755540848, 0.07490020990371704, -0.00009920467709889635, 0.05594871565699577, -0.061174310743808746, 0.01576388068497181, 0.09148276597261429, -0.023846136406064034, -0.005047054961323738, 0.02567509561777115, 0.06709665060043335, -0.044835615903139114, -0.08967123180627823, -0.02278359793126583, 0.017192211002111435, 0.03936615586280823, 0.0006232612067833543, -0.029211081564426422, -0.02227845788002014, 0.020850127562880516, -0.046507805585861206, -0.030587155371904373, 0.05650611221790314, 0.06713148951530457, 0.030639411881566048, 0.020675942301750183, 0.034227654337882996, -0.009083827957510948, 0.004872868303209543, -0.007063264027237892, -0.013107536360621452, 0.058596350252628326, -0.02607572451233864, -0.005830894224345684, 0.02476932480931282, -0.009005444124341011, 0.03238127753138542, -0.035708241164684296, 0.0769207775592804, 0.08472432941198349, -0.0127852912992239, -0.010991170071065426, -0.021668804809451103, -0.029298175126314163, -0.05800411477684975, 0.020780453458428383, -0.01730543188750744, 0.028671104460954666, -0.023915810510516167, 0.03286899998784065, -0.026598284021019936, 0.07287964969873428 ]
403
bitmath
__init__
Instantiate with `value` by the unit, in plain bytes, or bits. Don't supply more than one keyword. default behavior: initialize with value of 0 only setting value: assert bytes is None and bits is None only setting bytes: assert value == 0 and bits is None only setting bits: assert value == 0 and bytes is None
def __init__(self, value=0, bytes=None, bits=None): """Instantiate with `value` by the unit, in plain bytes, or bits. Don't supply more than one keyword. default behavior: initialize with value of 0 only setting value: assert bytes is None and bits is None only setting bytes: assert value == 0 and bits is None only setting bits: assert value == 0 and bytes is None """ _raise = False if (value == 0) and (bytes is None) and (bits is None): pass # Setting by bytes elif bytes is not None: if (value == 0) and (bits is None): pass else: _raise = True # setting by bits elif bits is not None: if (value == 0) and (bytes is None): pass else: _raise = True if _raise: raise ValueError("Only one parameter of: value, bytes, or bits is allowed") self._do_setup() if bytes: # We were provided with the fundamental base unit, no need # to normalize self._byte_value = bytes self._bit_value = bytes * 8.0 elif bits: # We were *ALMOST* given the fundamental base # unit. Translate it into the fundamental unit then # normalize. self._byte_value = bits / 8.0 self._bit_value = bits else: # We were given a value representative of this *prefix # unit*. We need to normalize it into the number of bytes # it represents. self._norm(value) # We have the fundamental unit figured out. Set the 'pretty' unit self._set_prefix_value()
(self, value=0, bytes=None, bits=None)
[ 0.02978331223130226, 0.030348461121320724, 0.034794293344020844, 0.006315531674772501, 0.02450859546661377, -0.02575192041695118, -0.044872768223285675, 0.005029819440096617, -0.01461850106716156, -0.04517418146133423, 0.03858078643679619, 0.12056495994329453, 0.02452743425965309, 0.018329640850424767, -0.018065905198454857, 0.05199363827705383, 0.019186781719326973, 0.0027386141009628773, -0.0037064305506646633, 0.0460030660033226, 0.022417547181248665, 0.03155411034822464, 0.0184426698833704, 0.09607519954442978, 0.009023533202707767, 0.020835131406784058, -0.031045475974678993, -0.015362612903118134, -0.0063720461912453175, -0.06408780813217163, -0.02601565793156624, 0.03164830058813095, -0.008043942973017693, 0.04423226788640022, 0.03760119527578354, -0.06337195634841919, 0.018207192420959473, 0.008298260159790516, -0.1284770369529724, 0.02281315065920353, 0.03940967097878456, -0.045061152428388596, 0.008990566246211529, 0.003007059684023261, -0.009122434072196484, 0.002358316443860531, 0.008839860558509827, 0.052822522819042206, -0.07252735644578934, 0.03387121856212616, 0.01538145076483488, -0.0006705248379148543, 0.014128705486655235, -0.026091009378433228, -0.05108940228819847, 0.05821026861667633, 0.030725225806236267, 0.04732174426317215, -0.02228567935526371, 0.048640426248311996, -0.059868037700653076, 0.09539702534675598, 0.023208754137158394, -0.0684959664940834, -0.04649285972118378, 0.004231547471135855, -0.013893227092921734, -0.020533720031380653, 0.013554138131439686, 0.09238290041685104, 0.0574190616607666, 0.017868103459477425, -0.03411611542105675, 0.04751012846827507, 0.08869059383869171, 0.00900469534099102, -0.057079970836639404, 0.00842541828751564, -0.003160120453685522, -0.006546300370246172, 0.0007888527470640838, 0.03270324319601059, 0.03577388450503349, -0.005821026861667633, 0.01587124541401863, 0.009150692261755466, 0.007780207321047783, 0.03841124102473259, 0.10654927790164948, 0.05677855759859085, -0.059679653495550156, -0.01640813797712326, 0.0022005459759384394, 0.032043904066085815, 0.004186806734651327, -0.022266840562224388, -0.005048657767474651, -0.034097276628017426, -0.05304858088493347, 0.0005654426058754325, -0.03317420184612274, -0.0049073705449700356, -0.027296660467982292, -0.014260574243962765, 0.020100438967347145, 0.029029780998826027, 0.002159337280318141, -0.05312393233180046, -0.0031295083463191986, -0.021984266117215157, -0.02247406169772148, -0.0360376201570034, -0.07068120688199997, -0.003233118914067745, -0.05252110958099365, -0.009145982563495636, -0.0019321005092933774, -0.0156734436750412, -0.007054933812469244, 0.005722125992178917, 0.026957571506500244, 0.011839855462312698, -0.029010942205786705, 0.046040743589401245, 0.04178329184651375, 0.030461490154266357, 0.04698265716433525, -0.006160115823149681, 0.009786483831703663, 0.01457140501588583, 0.06156348064541817, -0.0042527406476438046, -0.0018084743060171604, 0.03255253657698631, -0.001650703838095069, 0.0024819427635520697, 0.01073781680315733, 0.02307688631117344, -0.028766045346856117, 0.04815062880516052, 0.03259021416306496, 0.004012552555650473, 0.04815062880516052, -0.024753492325544357, 0.016624776646494865, 0.07463724166154861, 0.04200935363769531, -0.05561058595776558, -0.04766083508729935, 0.04182096943259239, -0.0502605177462101, -0.013073762878775597, 0.008175810799002647, 0.018028229475021362, 0.0037629452999681234, -0.02754155732691288, 0.041933998465538025, -0.0711333230137825, 0.000848311057779938, 0.042197734117507935, -0.01783042773604393, 0.0269198939204216, -0.0020298240706324577, -0.07226362079381943, 0.0074835047125816345, 0.06533113867044449, -0.06314589828252792, -0.036339033395051956, 0.014693854376673698, 0.0016483489889651537, 0.016266850754618645, -0.018659310415387154, -0.01091677974909544, 0.053689081221818924, 0.03473777696490288, -0.055572908371686935, -0.0019321005092933774, -0.021513309329748154, -0.03264673054218292, -0.026411261409521103, 0.007827303372323513, 0.03274092078208923, -0.054593320935964584, -0.0012468582717701793, 0.04287591204047203, 0.025827273726463318, 0.015315516851842403, 0.031233858317136765, 0.04517418146133423, -0.04483509436249733, 0.049695368856191635, 0.02209729515016079, -0.0022923825308680534, 0.05323696509003639, 0.035698529332876205, -0.013111438602209091, 0.09705478698015213, -0.046831950545310974, 0.04178329184651375, 0.014901075512170792, -0.0036734635941684246, 0.008043942973017693, 0.05956662446260452, -0.019855542108416557, 0.005491356831043959, -0.04329035431146622, 0.021155381575226784, 0.03434217348694801, -0.040238555520772934, -0.005095753353089094, -0.010050219483673573, -0.025789598003029823, -0.000897761492524296, 0.033550966531038284, -0.006145987194031477, -0.08906736224889755, 0.026241715997457504, 0.011566700413823128, -0.007912075147032738, 0.0007711918442510068, 0.08786170929670334, 0.03366399556398392, 0.03253370150923729, -0.027560396119952202, -0.000015848801922402345, 0.037563517689704895, 0.006268435623496771, -0.02209729515016079, -0.026411261409521103, 0.047284070402383804, 0.028841398656368256, -0.01968599669635296, -0.07418512552976608, -0.007431699428707361, -0.013629491440951824, 0.017180506139993668, 0.07064352929592133, -0.013686006888747215, -0.009612229652702808, -0.0688350573182106, 0.008350064978003502, -0.014740949496626854, 0.04547559469938278, 0.006070633884519339, -0.002792774233967066, -0.030970122665166855, -0.0059717330150306225, 0.030461490154266357, -0.04302661865949631, -0.007021966855973005, -0.07588057219982147, -0.00008830441220197827, 0.00492149917408824, -0.005566710140556097, 0.06943787634372711, 0.011161677539348602, -0.02343481406569481, -0.015654606744647026, 0.03242066875100136, 0.0020098083186894655, -0.04426994547247887, -0.03679114952683449, 0.03760119527578354, 0.0408037044107914, 0.009419137611985207, -0.060207124799489975, -0.006659329868853092, -0.00931552704423666, -0.014693854376673698, 0.04649285972118378, 0.027937160804867744, -0.012103591114282608, -0.011510185897350311, 0.013761359266936779, -0.04129349812865257, -0.008058072067797184, 0.04355408996343613, -0.023830417543649673, 0.0037205591797828674, -0.0007205639849416912, -0.010106734000146389, -0.02281315065920353, 0.01373310200870037, 0.024452080950140953, -0.023227592930197716, 0.030065886676311493, -0.006409722846001387, -0.02675035037100315, 0.002141676377505064, -0.0280690286308527, -0.016681291162967682, 0.026260554790496826, -0.02221032604575157, -0.005764511879533529, 0.02629823051393032, -0.04570165276527405, -0.06284448504447937, 0.0022570607252418995, 0.029387708753347397, -0.05399049445986748, -0.02648661471903324, -0.013262145221233368, 0.01073781680315733, 0.04521185904741287, 0.008679734542965889, -0.016907351091504097, 0.0046295057982206345, -0.007624791469424963, 0.046756599098443985, 0.018744083121418953, 0.018065905198454857, 0.005938766058534384, 0.04837669059634209, -0.014816302806138992, 0.04894183576107025, 0.05926521122455597, 0.046040743589401245, -0.03809099271893501, -0.004290416836738586, 0.076332688331604, 0.0349261611700058, 0.013959161005914211, -0.033098846673965454, -0.020891645923256874, -0.024640463292598724, -0.04099208489060402, -0.023868093267083168, -0.016426974907517433, -0.010718978010118008, -0.008835150860249996, -0.07267806679010391, 0.014863398857414722, 0.02183355949819088, -0.024395564571022987, -0.014731531031429768, -0.02371738851070404, 0.003485080786049366, 0.006244888063520193, -0.036056458950042725, -0.017434822395443916, 0.09908932447433472, -0.005750383250415325, -0.04573933035135269, -0.022342193871736526, 0.021230734884738922, -0.03014123998582363, -0.005204073153436184, -0.025714244693517685, 0.03986178711056709, 0.018970143049955368, -0.03439868986606598, -0.03138456493616104, -0.0001910318824229762, 0.02247406169772148, 0.06695123016834259, -0.0349261611700058, -0.004902660846710205, -0.04494812339544296, 0.02113654464483261, -0.012028238736093044, 0.04457135871052742, -0.007276283577084541, 0.023472489789128304, 0.001823780476115644, -0.012357908301055431, -0.06495437026023865, -0.0005324755911715329, 0.002905803732573986, -0.015654606744647026, 0.011199354194104671, 0.0287095308303833, -0.06016944721341133, -0.07942216843366623, -0.04148188233375549, 0.005948184989392757, 0.013130277395248413, -0.027598071843385696, 0.028992105275392532, -0.05135313794016838, -0.06947555392980576, 0.044797416776418686, -0.012593386694788933, -0.014580824412405491, 0.05990571156144142, -0.01961064338684082, -0.02247406169772148, 0.03238299489021301, 0.01594659872353077, 0.00492149917408824, 0.06793081760406494, -0.009169530123472214, 0.0502605177462101, 0.04005017131567001, -0.019026657566428185, 0.027767617255449295, 0.053349994122982025, 0.03093244694173336, 0.020119277760386467, -0.005368908401578665, -0.02808786742389202, -0.0037488166708499193, -0.07271573692560196, -0.06664981693029404, 0.05990571156144142, 0.010238601826131344, 0.011971723288297653, 0.04008784890174866, -0.03731862083077431, -0.0006605170201510191, 0.06389942765235901, -0.010945037938654423, -0.014769207686185837, 0.021437956020236015, -0.023321783170104027, -0.02690105512738228, -0.05108940228819847, -0.06616002321243286, -0.05474402755498886, 0.009814741089940071, -0.0038359437603503466, -0.014750368893146515, 0.014853979460895061, 0.03895755112171173, 0.050599604845047, 0.07064352929592133, 0.04155723378062248, 0.03193087503314018, -0.008571415208280087, -0.015306098386645317, 0.0059952810406684875, 0.007328088860958815, 0.05225737392902374, -0.04182096943259239, -0.05723067745566368, 0.04200935363769531, -0.03628251701593399, -0.04555094614624977, -0.025695405900478363, -0.016822578385472298, -0.014938751235604286, 0.01524016447365284, -0.010266860015690327, 0.042725205421447754, 0.028483470901846886, -0.02309572510421276, -0.050486575812101364, -0.005675030406564474, 0.02111770585179329, -0.0310078002512455, 0.0370548851788044, -0.013921485282480717, -0.02639242261648178, 0.042122382670640945, -0.028766045346856117, 0.035434793680906296, -0.037036046385765076, -0.04901719093322754, 0.010266860015690327, -0.002053371863439679, -0.05636411905288696, 0.019224459305405617, 0.010445822961628437, -0.03577388450503349, -0.030461490154266357, -0.023642035201191902, 0.06800617277622223, 0.05692926421761513, 0.026072172448039055, 0.00018617513705976307, 0.01836731843650341, -0.03993714228272438, 0.018857112154364586, 0.01020092610269785, 0.037563517689704895, 0.030160076916217804, -0.04223541170358658, -0.041858647018671036, -0.00615069642663002, -0.05858703330159187, -0.09502025693655014, 0.042197734117507935, -0.006367336958646774, -0.0007558857905678451, 0.028634177520871162, 0.0025313931982964277, -0.026448937132954597, 0.009357912465929985, 0.01648348942399025, 0.014420699328184128, -0.0077378214336931705, -0.06962626427412033, 0.019224459305405617, -0.033193040639162064, 0.009145982563495636, 0.02111770585179329, 0.027070600539445877, -0.029707958921790123, 0.021701691672205925, -0.04705800861120224, -0.000791796250268817, -0.001555335009470582, -0.034794293344020844, -0.05372675880789757, -0.020929323509335518, -0.0024725235998630524, 0.016012532636523247, -0.07139705866575241, 0.0008206423372030258, 0.04001249372959137, -0.027918322011828423, -0.04841436445713043, 0.007497633341699839, -0.03558550029993057, -0.014194639399647713, 0.005858703516423702, 0.03948502242565155, -0.04494812339544296, -0.03140340372920036, -0.0385054312646389, 0.0020156954415142536, -0.011265288107097149, 0.06453993171453476, -0.0011485459981486201, 0.005444261245429516, -0.0030447361059486866, -0.021193059161305428, -0.05885076895356178, -0.07799045741558075, 0.06616002321243286, -0.00090835802257061, 0.0018814726499840617, -0.09479419887065887, 0.0018367317970842123, 0.051202431321144104, -0.015522737987339497, -0.005863412749022245, 0.005152267869561911, -0.031780168414115906, -0.003148346673697233, -0.03232647851109505, 0.006555719301104546, 0.05372675880789757, 0.03340025991201401, -0.03362632170319557, -0.007078481838107109, 0.03362632170319557, 0.0015824150759726763, 0.04008784890174866, 0.005086333956569433, -0.001382258371450007, -0.031949713826179504, -0.045852359384298325, 0.04001249372959137, 0.012621643953025341, 0.017707977443933487, -0.030857093632221222, 0.03724326938390732, 0.0024913616944104433, 0.007323379162698984, 0.02861533872783184, -0.009956028312444687, -0.003591045970097184, 0.0011043938575312495, -0.0022747216280549765, -0.058963797986507416, -0.005675030406564474, -0.01524016447365284, -0.07987428456544876, 0.02164517715573311, 0.037036046385765076, -0.004897951148450375, 0.03745048865675926, 0.004445832688361406, 0.06299518793821335, -0.0597173310816288, 0.020081600174307823, -0.05481937900185585, 0.0003279037191532552, 0.011321802623569965, -0.02746620401740074, 0.014279412105679512, 0.03324955329298973, -0.04419459030032158, -0.04378015175461769, 0.06585860997438431, -0.019855542108416557, 0.014740949496626854, -0.01934690773487091, -0.0344175286591053, -0.030197754502296448, -0.0008494884241372347, -0.042988941073417664, -0.035962264984846115, -0.00503923837095499, -0.049959104508161545, -0.009880675002932549, -0.032929304987192154, -0.06804385036230087, 0.03724326938390732, 0.02006276324391365, -0.03865613788366318, 0.001901488285511732, -0.029802151024341583, 0.01665303483605385, 0.041933998465538025, 0.018857112154364586, -0.007426989730447531, 0.0367157980799675, -0.02307688631117344, -0.03464358672499657, 0.03803447633981705, 0.00816168263554573, 0.006004699971526861, -0.0333060696721077, -0.029707958921790123, -0.039786435663700104, -0.009334364905953407, -0.018122419714927673, -0.01587124541401863, -0.028577663004398346, -0.06955090910196304, 0.014232316054403782, -0.07365765422582626, 0.01605962961912155, -0.0655948743224144, -0.008119296282529831, 0.010888522490859032, -0.01675664447247982, 0.0008536092936992645, -0.06378639489412308, 0.07716157287359238, 0.01817893423140049, 0.002540812361985445, -0.01817893423140049, -0.053877465426921844, -0.02273779734969139, -0.008317098021507263, 0.02690105512738228, 0.05214434489607811, 0.07154776901006699, 0.02861533872783184, 0.013375175185501575, 0.009150692261755466, 0.0033485032618045807, -0.0012786479201167822, 0.005467809271067381, -0.037488166242837906, -0.05444261431694031, -0.0017131055938079953, 0.022662444040179253, -0.01288537960499525, 0.05007213354110718, 0.03665928170084953, -0.04170794039964676, 0.033569805324077606, 0.00037176156183704734, 0.021343765780329704, 0.01783042773604393, 0.018122419714927673, 0.031252697110176086, -0.08575182408094406, -0.01586182788014412, 0.03270324319601059, 0.01862163469195366, 0.016200916841626167, 0.007507052272558212, 0.03852427005767822, -0.027598071843385696, -0.033550966531038284, -0.009103596210479736, 0.03451171889901161, 0.017180506139993668, -0.0024819427635520697, -0.014816302806138992, 0.0007641275296919048, 0.01914910599589348, 0.011698568239808083, -0.02309572510421276, 0.03598110377788544, 0.038015637546777725, 0.04227308928966522, 0.007634210865944624, -0.03064987249672413, -0.04053996503353119, 0.028313927352428436, -0.02469697780907154, -0.0368853397667408, 0.03421030566096306, -0.025620052590966225, -0.08733423799276352, -0.03477545455098152, -0.009065919555723667, -0.030235430225729942, 0.042386118322610855, -0.0655948743224144, -0.003626367775723338, -0.016794322058558464, -0.03682882711291313, 0.0666121393442154, -0.015550995245575905, 0.04283823445439339, -0.0463421568274498, -0.030687550082802773, 0.04268753156065941, -0.006659329868853092, 0.02254941500723362, -0.04573933035135269, -0.016511747613549232, 0.05225737392902374, 0.004648344125598669, 0.05391514301300049, 0.11137188225984573, -0.03172365576028824, -0.0841694101691246, -0.028238574042916298, 0.03434217348694801, -0.011642053723335266, 0.0835665836930275, -0.042386118322610855, 0.012988990172743797, 0.018508603796362877, -0.0072197685949504375, 0.0362071618437767, 0.005872832145541906, -0.018160097301006317, -0.001590656815096736, 0.014806883409619331, 0.0007199753308668733, -0.02113654464483261, -0.017896361649036407, 0.011293545365333557, 0.054668672382831573, -0.019111430272459984, 0.0048932419158518314, -0.031158506870269775, -0.03858078643679619, -0.005166396964341402, -0.022078458219766617, 0.04592771455645561, 0.04570165276527405, -0.002724485471844673, -0.005020400043576956, 0.03385237976908684, 0.04061532020568848, -0.04521185904741287, 0.050674960017204285, 0.040426936000585556, 0.009748807176947594, 0.03215693309903145, 0.038806844502687454, -0.013167954050004482, -0.05372675880789757, -0.028728367760777473, 0.04886648431420326, 0.05365140736103058, -0.06664981693029404, -0.03055568039417267, -0.01987437903881073, 0.0005583782331086695, -0.03835472837090492, -0.0757298618555069, -0.04686962813138962, 0.02424485981464386, 0.051014047116041183, -0.01489165611565113, 0.058511681854724884, 0.016200916841626167, 0.04280056059360504 ]
404
bitmath
__int__
Return this instances prefix unit as an integer
def __int__(self): """Return this instances prefix unit as an integer""" return int(self.prefix_value)
(self)
[ -0.01966407336294651, 0.007813705131411552, 0.022494761273264885, 0.00994090922176838, 0.035140737891197205, -0.004526589065790176, -0.000538605498149991, 0.021741027012467384, 0.009471919387578964, -0.09165401011705399, -0.020049314945936203, 0.006427672691643238, 0.04217558354139328, -0.007755081634968519, -0.014454935677349567, 0.016598889604210854, -0.007064159028232098, -0.024906709790229797, 0.016046151518821716, 0.028189638629555702, 0.0023512302432209253, 0.014748054556548595, 0.0355762280523777, 0.048573944717645645, -0.019128084182739258, 0.03524123504757881, 0.021104542538523674, -0.013868698850274086, 0.03215930238366127, -0.07771831005811691, -0.0336332693696022, -0.0004323499742895365, 0.021942023187875748, 0.018659094348549843, 0.020920295268297195, -0.0840831771492958, -0.014890426769852638, 0.01559391152113676, -0.089912049472332, 0.06455309689044952, 0.0533643402159214, -0.028122639283537865, 0.0279216431081295, -0.012319357134401798, -0.00011162062583025545, 0.00013936220784671605, -0.00232610572129488, -0.03457124903798103, 0.023281995207071304, 0.004907643422484398, 0.012185360305011272, -0.02611268311738968, -0.021071042865514755, -0.03463824838399887, -0.06532358378171921, 0.07389939576387405, 0.0493779294192791, 0.006109429989010096, -0.05942770838737488, 0.05490530654788017, -0.06180615723133087, 0.03433675318956375, 0.028976870700716972, -0.06023169308900833, 0.010292651131749153, -0.025693941861391068, -0.019463077187538147, 0.038959652185440063, -0.022980500012636185, 0.03303028270602226, 0.03192480653524399, -0.02217651903629303, -0.012068113312125206, 0.003046340076252818, 0.05818823724985123, 0.01243660505861044, -0.03391801193356514, 0.0035676725674420595, 0.020066063851118088, 0.000030685856472700834, 0.0010259152622893453, -0.0016613545594736934, 0.04475502669811249, 0.025241700932383537, 0.014253940433263779, -0.03091982938349247, 0.03393476456403732, -0.0020780018530786037, -0.024437719956040382, 0.03279578685760498, -0.03597822040319443, 0.02517470344901085, -0.019479826092720032, -0.008961055427789688, 0.008600938133895397, -0.019982315599918365, -0.000612408563029021, -0.07992926239967346, 0.0068464139476418495, -0.014748054556548595, -0.002663192106410861, 0.05661376938223839, -0.00930442288517952, -0.017888611182570457, 0.028759125620126724, -0.008734934963285923, -0.011188756674528122, -0.03148931637406349, -0.012026239186525345, 0.045123521238565445, 0.011130133643746376, -0.04029962420463562, -0.04589400440454483, -0.014228816144168377, -0.018709342926740646, -0.023432740941643715, 0.011172007769346237, 0.02266225777566433, 0.023633737117052078, 0.028909871354699135, 0.022109519690275192, -0.009765038266777992, -0.029512859880924225, 0.04117060452699661, 0.04810495674610138, 0.047066476196050644, 0.019613824784755707, 0.039160650223493576, 0.021657278761267662, -0.03507373854517937, 0.06304562836885452, -0.01086213905364275, -0.008044012822210789, 0.024755962193012238, 0.04586050286889076, 0.005749312695115805, 0.06130366772413254, 0.053833331912755966, -0.008910806849598885, 0.10096680372953415, 0.046697985380887985, 0.038591161370277405, 0.03684920072555542, -0.029060618951916695, -0.04214208573102951, 0.058221735060214996, 0.002818126231431961, 0.0769813284277916, -0.06431860476732254, -0.019714321941137314, -0.02577769011259079, 0.02596193552017212, 0.07262641936540604, 0.03370026871562004, -0.02968035452067852, -0.020685801282525063, -0.01700088009238243, -0.038859155029058456, 0.051957372575998306, -0.04525751620531082, -0.005318009294569492, 0.048238951712846756, 0.01785511150956154, -0.08093424141407013, -0.026933414861559868, 0.05962870642542839, -0.012243984267115593, -0.02071930095553398, -0.012922344729304314, -0.021004043519496918, -0.0024182286579161882, -0.06033219024538994, -0.017084628343582153, 0.03788767755031586, 0.010887263342738152, 0.017059504985809326, 0.008810308761894703, 0.04693248122930527, 0.00028160325018689036, 0.06837201863527298, 0.028424132615327835, 0.00994090922176838, -0.05145488306879997, -0.02423672378063202, 0.047267474234104156, 0.028641877695918083, 0.05242636054754257, 0.0180058591067791, 0.056412775069475174, -0.05125388875603676, 0.04117060452699661, -0.0036577018909156322, -0.0017974453512579203, 0.0043674674816429615, -0.005837248172610998, -0.01373470202088356, 0.022226767614483833, -0.04753546789288521, 0.0023281993344426155, 0.04244357720017433, -0.03865816071629524, 0.03433675318956375, 0.0037037632428109646, 0.03418600931763649, 0.041673094034194946, -0.018190104514360428, 0.012922344729304314, 0.01328246109187603, -0.06482109427452087, -0.028993619605898857, -0.02326524443924427, -0.03648070618510246, 0.010192153975367546, 0.05209136754274368, 0.021808026358485222, -0.07577535510063171, -0.010569020174443722, -0.016297396272420883, 0.025157954543828964, 0.026146182790398598, 0.08850507438182831, 0.0323435477912426, 0.03661470487713814, -0.08368118107318878, 0.0066454182378947735, -0.03430325537919998, -0.029512859880924225, -0.002282137982547283, -0.01547666359692812, 0.022277016192674637, 0.053230345249176025, -0.04488902539014816, -0.03738518804311752, 0.0001852928544394672, 0.018893590196967125, 0.014262314885854721, 0.01118038222193718, 0.008458565920591354, -0.04616199806332588, -0.011448376812040806, -0.04334805905818939, 0.027402404695749283, 0.06408410519361496, 0.027586650103330612, -0.015242168679833412, 0.028842873871326447, 0.01639789342880249, 0.03324802964925766, -0.036380209028720856, 0.010485271923244, -0.009337922558188438, -0.033298276364803314, 0.006436047609895468, 0.03358301892876625, 0.0340687595307827, -0.0029311862308532, -0.07209043204784393, 0.03510723635554314, -0.027938393875956535, -0.0011787556577473879, -0.05443631857633591, -0.025760941207408905, 0.0003093448467552662, -0.021741027012467384, -0.02190852351486683, 0.02705066278576851, 0.004547526128590107, 0.0365477055311203, 0.005213324446231127, 0.029244864359498024, 0.031656812876462936, -0.026966914534568787, -0.06224164739251137, 0.027234908193349838, -0.01396082155406475, 0.0016561202937737107, 0.008676311932504177, 0.04348205402493477, -0.0390266515314579, -0.023633737117052078, -0.01932908035814762, 0.003245241940021515, -0.016464892774820328, -0.04957892373204231, -0.014764804393053055, 0.005715813487768173, 0.04214208573102951, -0.001779648824594915, 0.0008767387480475008, -0.016272271052002907, -0.0034253005869686604, -0.004823895171284676, -0.01733587309718132, 0.007859766483306885, 0.05775274708867073, 0.005673939362168312, -0.031120823696255684, 0.01703437976539135, -0.01595402881503105, 0.03865816071629524, -0.04686548188328743, -0.0042397514916956425, -0.08696410804986954, -0.006909225136041641, -0.02499045804142952, 0.0315898135304451, 0.06900849938392639, 0.01249522902071476, 0.015468289144337177, 0.05527380108833313, -0.012336106970906258, 0.02018331177532673, -0.016799885779619217, -0.012344482354819775, 0.02154003269970417, 0.018826590850949287, -0.0016791510861366987, 0.024471217766404152, 0.010418273508548737, 0.08642812073230743, -0.0045684631913900375, 0.03321452811360359, -0.01583678089082241, 0.04686548188328743, 0.00618061563000083, 0.021138040348887444, -0.05192387104034424, 0.06049968674778938, -0.0063522993586957455, -0.04559250921010971, -0.08120223879814148, -0.062744140625, -0.012243984267115593, -0.029898101463913918, 0.010753266513347626, -0.07034847140312195, 0.08515515178442001, 0.020870046690106392, -0.04381704702973366, 0.004166472237557173, 0.10994461178779602, -0.01917833276093006, -0.005033265799283981, 0.045425012707710266, 0.020702550187706947, 0.01146512571722269, -0.013190338388085365, -0.005632065236568451, 0.08508814871311188, 0.02066905051469803, -0.038859155029058456, -0.01597915217280388, 0.02442096918821335, -0.01281347218900919, 0.07651233673095703, -0.040132127702236176, 0.006758478004485369, -0.04850694537162781, 0.014639182016253471, 0.04961242154240608, 0.0024601027835160494, -0.07430138438940048, 0.016598889604210854, 0.004281625617295504, -0.05004791170358658, -0.018541846424341202, -0.03560972586274147, -0.029328612610697746, 0.005334759131073952, 0.014496809802949429, -0.019345829263329506, -0.0030965888872742653, -0.0518568754196167, -0.03443725034594536, -0.010292651131749153, 0.05708276107907295, -0.005724188406020403, 0.033532772213220596, -0.05524029955267906, -0.061102673411369324, 0.05624527856707573, -0.029596608132123947, -0.028223136439919472, 0.08863907307386398, -0.0415055975317955, -0.0035111424513161182, 0.006620293948799372, -0.04334805905818939, -0.029898101463913918, 0.05470431223511696, 0.007918390445411205, 0.011841992847621441, 0.024069227278232574, -0.055843286216259, 0.0012457541888579726, -0.00651979586109519, -0.0017628992209210992, -0.08274320513010025, 0.02138928510248661, 0.006536545697599649, 0.021824775263667107, -0.04910993203520775, 0.002198389731347561, 0.08803609013557434, 0.008877307176589966, -0.021741027012467384, 0.05661376938223839, -0.021004043519496918, -0.016255522146821022, 0.02093704603612423, -0.09741588681936264, 0.01815660484135151, 0.024906709790229797, -0.020367557182908058, -0.013877073302865028, -0.06797002255916595, -0.03651420772075653, -0.04589400440454483, -0.012352856807410717, -0.00990740954875946, -0.0444200336933136, 0.04408504441380501, 0.03725118935108185, 0.04622899740934372, -0.0077467067167162895, -0.012026239186525345, 0.0503494068980217, 0.006758478004485369, -0.03148931637406349, 0.06147116422653198, -0.021590281277894974, 0.0016760104335844517, -0.0053850081749260426, -0.057920243591070175, 0.05815473571419716, -0.028223136439919472, -0.017252124845981598, -0.03631320968270302, -0.014555433765053749, -0.0017681334866210818, 0.06254313886165619, 0.0022151393350213766, 0.04274507239460945, 0.05189037322998047, 0.012001113966107368, -0.09165401011705399, -0.030836081132292747, -0.015208669938147068, -0.01598752848803997, -0.02499045804142952, -0.02547619678080082, -0.03560972586274147, 0.02217651903629303, -0.03321452811360359, 0.03785417973995209, -0.04632949456572533, -0.08589213341474533, -0.024755962193012238, -0.012470103800296783, -0.08555714040994644, -0.03289628401398659, 0.05333084240555763, -0.020618801936507225, -0.02150653302669525, -0.043582554906606674, 0.07818730175495148, 0.030216343700885773, 0.012922344729304314, -0.032142553478479385, 0.044554032385349274, -0.028038891032338142, -0.00958916638046503, -0.025425948202610016, -0.03365001827478409, -0.019714321941137314, 0.035140737891197205, -0.06790302693843842, 0.02190852351486683, -0.019228583201766014, -0.03748568519949913, 0.029261615127325058, -0.005087702069431543, 0.05426882207393646, 0.03597822040319443, 0.005594378337264061, 0.032360296696424484, -0.020836547017097473, 0.005519005004316568, -0.013006092980504036, -0.036983195692300797, 0.007579210214316845, 0.07477037608623505, -0.017436372116208076, -0.03024984337389469, 0.029144367203116417, 0.016858508810400963, -0.021824775263667107, 0.017252124845981598, -0.0626436397433281, 0.04066811501979828, -0.017059504985809326, 0.011406502686440945, -0.031874556094408035, 0.011682871729135513, 0.019580325111746788, 0.01155724935233593, -0.042376577854156494, 0.019530076533555984, -0.01281347218900919, -0.02844088152050972, -0.02783789485692978, -0.0016686825547367334, 0.012470103800296783, 0.02877587452530861, -0.0021565156057476997, 0.036346711218357086, -0.006925974506884813, 0.00108558579813689, -0.05031590908765793, 0.01839110068976879, 0.015995902940630913, -0.059226714074611664, -0.024672213941812515, -0.00745777552947402, -0.018809841945767403, 0.03507373854517937, -0.05711625888943672, -0.045726507902145386, -0.005213324446231127, 0.05430231988430023, -0.014379562810063362, -0.015669284388422966, 0.006251801736652851, 0.06096867471933365, -0.03993113338947296, 0.01736937277019024, -0.03001534752547741, -0.06361512094736099, 0.06495509296655655, 0.047937460243701935, -0.009773412719368935, -0.0004737006383948028, 0.020367557182908058, -0.030551336705684662, 0.030568085610866547, 0.026313679292798042, -0.061705660074949265, 0.03487274423241615, -0.0143125643953681, 0.014764804393053055, -0.014270690269768238, -0.05942770838737488, 0.027033912017941475, -0.012093237601220608, 0.03306378051638603, 0.03200855478644371, 0.006750103551894426, -0.02262875810265541, 0.0323435477912426, 0.06552457809448242, 0.023683985695242882, -0.048908937722444534, 0.0537998303771019, 0.02889312244951725, -0.06820452213287354, 0.00844600424170494, -0.03658120706677437, -0.05567578971385956, 0.014136693440377712, 0.018357601016759872, -0.0035718600265681744, -0.05996369943022728, -0.0018581628100946546, 0.03321452811360359, -0.0948699414730072, 0.00804820004850626, -0.03016609512269497, -0.03323127701878548, 0.0011389752617105842, -0.02994835004210472, -0.019345829263329506, 0.05614478141069412, -0.015660909935832024, -0.02405247837305069, 0.0384906642138958, 0.01303959172219038, -0.018826590850949287, 0.007843017578125, -0.006331362295895815, -0.06401710957288742, -0.04381704702973366, -0.028390632942318916, -0.06036568805575371, -0.017704365774989128, 0.011649372056126595, -0.02589493803679943, -0.05276135355234146, -0.06907550245523453, 0.03755268454551697, -0.028960121795535088, 0.03560972586274147, 0.021154791116714478, 0.00034048871020786464, 0.056680768728256226, 0.04813845455646515, 0.004744334612041712, 0.04153909906744957, 0.00029207178158685565, -0.009296048432588577, -0.04790395870804787, 0.007286091800779104, -0.036715202033519745, 0.005251010879874229, -0.04509001970291138, -0.03969663754105568, -0.040433622896671295, 0.03604521602392197, -0.019932067021727562, -0.05249335989356041, -0.01677476055920124, -0.07356440275907516, 0.04910993203520775, -0.016423018649220467, 0.02753640152513981, 0.022277016192674637, 0.02689991518855095, 0.022394264116883278, -0.010711392387747765, 0.04790395870804787, -0.08294419944286346, 0.03177405893802643, 0.02855812944471836, 0.058556728065013885, -0.06210765242576599, -0.04287906736135483, -0.015962403267621994, -0.00814451090991497, 0.02870887704193592, -0.029847851023077965, 0.0007464056834578514, 0.010786766186356544, 0.043582554906606674, -0.040768615901470184, 0.038859155029058456, -0.02217651903629303, -0.034236256033182144, -0.04874144122004509, -0.06033219024538994, -0.007307028863579035, -0.04371654987335205, -0.03416925668716431, 0.022344015538692474, 0.002849531825631857, 0.019044335931539536, -0.018742842599749565, -0.024286972358822823, 0.04207508638501167, 0.007441025692969561, -0.0070599718019366264, -0.011934115551412106, -0.0612366683781147, 0.0013985945843160152, -0.04026612639427185, -0.005485505796968937, 0.04880844056606293, -0.008513002656400204, 0.005895872134715319, -0.042376577854156494, 0.022612009197473526, -0.04254407435655594, 0.03239379823207855, 0.03882565721869469, -0.01808960735797882, -0.02525845170021057, -0.04351555556058884, -0.02983110211789608, 0.027368905022740364, -0.005602753255516291, 0.060131195932626724, -0.007813705131411552, 0.011942490935325623, -0.014320938847959042, 0.02922811545431614, -0.017838362604379654, 0.012143486179411411, -0.026246679946780205, -0.014630807563662529, 0.0015074672410264611, 0.0037205128464847803, -0.040802113711833954, -0.020468056201934814, -0.014907176606357098, -0.028055639937520027, 0.01122225634753704, -0.005401757545769215, 0.00420206505805254, -0.007985388860106468, 0.030082346871495247, 0.019764570519328117, -0.01978132128715515, 0.015133296139538288, -0.015485038980841637, 0.023399241268634796, 0.00386916589923203, -0.0052761356346309185, 0.0028390632942318916, -0.0006129320245236158, -0.025157954543828964, 0.017737865447998047, 0.01884334161877632, 0.029847851023077965, 0.0934629738330841, -0.03195830434560776, -0.04244357720017433, 0.04277857020497322, 0.03624621406197548, -0.018709342926740646, 0.09306097775697708, -0.018826590850949287, 0.061705660074949265, -0.01391894742846489, -0.0054520065896213055, 0.03179080784320831, 0.04241007938981056, -0.018659094348549843, -0.012377981096506119, 0.07490437477827072, 0.011674496345221996, -0.1070636734366417, 0.00045302530634216964, 0.028022142127156258, 0.02502395585179329, 0.008282694965600967, -0.031874556094408035, 0.04311356320977211, 0.02847438119351864, 0.03299678489565849, -0.018374351784586906, 0.03122132271528244, 0.033599771559238434, 0.022729257121682167, -0.004522401839494705, -0.0052384487353265285, 0.011900616809725761, -0.02483971044421196, 0.06066718325018883, 0.029244864359498024, 0.05614478141069412, 0.02683291770517826, 0.016330895945429802, 0.030601585283875465, 0.03473874554038048, 0.037016697227954865, -0.02629692852497101, 0.034839242696762085, -0.038859155029058456, -0.017268875613808632, -0.013458332978188992, 0.021138040348887444, -0.00838738027960062, -0.07463637739419937, -0.0769813284277916, 0.001275066053494811, 0.03755268454551697, -0.013826824724674225, 0.04683198407292366, 0.016372770071029663, 0.013969196937978268 ]
405
bitmath
__le__
null
def __le__(self, other): if isinstance(other, numbers.Number): return self.prefix_value <= other else: return self._byte_value <= other.bytes
(self, other)
[ -0.004681911785155535, -0.0062090023420751095, -0.03236207365989685, 0.07358039915561676, 0.0002767578698694706, -0.013888212852180004, -0.03489993140101433, 0.005740811116993427, -0.008116772398352623, -0.09430332481861115, 0.05821322649717331, -0.03983562812209129, 0.07505060732364655, -0.01853512041270733, -0.039555590599775314, -0.01528841070830822, -0.0429510697722435, -0.004445628263056278, 0.00740354647859931, 0.012645537033677101, -0.030226772651076317, 0.044316262006759644, 0.04641655832529068, 0.05177231505513191, 0.005631420761346817, 0.08380184322595596, -0.020915456116199493, 0.00477817514911294, -0.04617152363061905, 0.027041321620345116, -0.05985845997929573, -0.05880831182003021, 0.041585877537727356, -0.02488851733505726, 0.04666159301996231, -0.020547904074192047, -0.005071341525763273, 0.023960886523127556, -0.06388402730226517, 0.00029590120539069176, 0.032764632254838943, -0.047991782426834106, 0.002962293568998575, -0.0002458550443407148, -0.014728331938385963, -0.0423559844493866, -0.04445628449320793, -0.015629708766937256, 0.025168556720018387, 0.035950079560279846, 0.01765124499797821, -0.06493417918682098, -0.013651929795742035, 0.007946123369038105, -0.07127007097005844, 0.02557111345231533, 0.029544174671173096, 0.04067574813961983, -0.09556350857019424, 0.06647439301013947, -0.035267483443021774, 0.0227357130497694, 0.009888897649943829, -0.05474773794412613, 0.012330492958426476, 0.0014527053572237492, -0.05439768731594086, -0.01809755712747574, -0.0036339510697871447, 0.06475915014743805, -0.030419299378991127, 0.008038011379539967, -0.009748877957463264, 0.01688113622367382, -0.05821322649717331, 0.01275930367410183, -0.011070314794778824, 0.04886690527200699, 0.002592553850263357, -0.023960886523127556, 0.038645461201667786, -0.03052431344985962, 0.06409405916929245, -0.013599421828985214, -0.03013925999403, -0.011875428259372711, -0.014597062952816486, 0.030069248750805855, 0.06955482810735703, 0.0018694829195737839, -0.0647241473197937, 0.05075717344880104, -0.010230195708572865, -0.006961608771234751, 0.05418765917420387, 0.021353017538785934, -0.0009265372063964605, 0.009713873267173767, 0.004045259207487106, 0.023908378556370735, 0.03484742343425751, 0.0633939579129219, 0.002942603314295411, -0.01032645907253027, 0.0311018954962492, 0.01526215672492981, -0.01016018632799387, -0.015655962750315666, -0.041585877537727356, -0.019182711839675903, -0.054292671382427216, -0.023190777748823166, -0.03987063467502594, -0.00038943003164604306, -0.019725287333130836, 0.03169697895646095, 0.044421277940273285, 0.020495396107435226, 0.014212008565664291, -0.0022818848956376314, 0.052087362855672836, 0.012838064692914486, 0.04645156487822533, 0.02383836917579174, -0.006734076887369156, 0.03157446160912514, 0.06948482245206833, 0.006734076887369156, -0.05271745100617409, -0.04470131918787956, 0.0693097934126854, 0.030174264684319496, -0.01429952122271061, 0.07764097303152084, 0.05597291141748428, 0.007556693162769079, -0.007202268112450838, 0.05075717344880104, -0.003920554183423519, 0.019480252638459206, -0.01776500977575779, 0.011009056121110916, 0.0730903297662735, -0.023523325100541115, -0.01396697387099266, 0.03582756221294403, -0.056462980806827545, 0.04515638202428818, -0.010729016736149788, 0.04284605383872986, -0.0317319855093956, 0.010168937034904957, 0.0794612318277359, 0.010300206020474434, -0.042881060391664505, 0.011332851834595203, -0.014693326316773891, -0.01709991693496704, 0.006195875816047192, 0.010729016736149788, 0.04029069468379021, 0.024205921217799187, -0.011420363560318947, -0.04078076407313347, -0.00798987876623869, -0.007845483720302582, -0.047606728971004486, -0.00021057663252577186, -0.011595388874411583, 0.032047029584646225, 0.04130583629012108, -0.011875428259372711, 0.0320645309984684, 0.043791189789772034, -0.008370557799935341, -0.032379575073719025, -0.0010167843429371715, 0.03376227244734764, -0.005631420761346817, 0.014955863356590271, -0.015445932745933533, 0.04743170365691185, -0.05439768731594086, -0.034987445920705795, 0.05355757102370262, 0.008199908770620823, 0.018500113859772682, 0.019060194492340088, 0.036090102046728134, 0.0083311777561903, -0.035372499376535416, 0.018710143864154816, 0.018220074474811554, -0.05075717344880104, 0.007919869385659695, -0.01704740896821022, 0.0023409558925777674, -0.002351894974708557, 0.01935773529112339, 0.08016132563352585, -0.01119283214211464, -0.01268929336220026, -0.0030191766563802958, -0.013625675812363625, 0.018465109169483185, -0.04645156487822533, -0.010527737438678741, 0.02928163856267929, 0.013844456523656845, -0.05719808489084244, -0.021878091618418694, -0.06622935831546783, -0.01820257306098938, 0.053802601993083954, 0.012794308364391327, -0.018167568370699883, -0.017581235617399216, -0.02686629630625248, -0.012479263357818127, -0.026411233469843864, 0.11376608163118362, 0.019672781229019165, -0.02933414652943611, -0.04991705343127251, 0.009372574277222157, 0.02422342263162136, -0.02873906120657921, -0.00025337564875371754, 0.01109656784683466, 0.032869644463062286, 0.0661243423819542, 0.020215356722474098, 0.01396697387099266, 0.012540522031486034, 0.005898333620280027, 0.022333156317472458, -0.009958907030522823, 0.02980671264231205, -0.04974202811717987, 0.002988547319546342, -0.018587626516819, 0.029456663876771927, 0.023523325100541115, 0.027321361005306244, 0.020722929388284683, -0.09535347670316696, -0.011306597851216793, 0.013686934486031532, 0.001813693786971271, 0.06521421670913696, -0.05908834934234619, -0.06997489184141159, -0.017091166228055954, -0.03619511425495148, 0.002439407166093588, -0.011525378562510014, -0.042110949754714966, -0.071830153465271, 0.025536108762025833, 0.01444829162210226, -0.017992543056607246, 0.032047029584646225, 0.01825507916510105, -0.030226772651076317, -0.03808538243174553, 0.017064912244677544, 0.010869036428630352, 0.026078686118125916, 0.029596682637929916, 0.0243634432554245, -0.016671106219291687, -0.07106003910303116, -0.043651167303323746, 0.060068488121032715, -0.024906020611524582, -0.030996881425380707, 0.05887832120060921, 0.003222642932087183, -0.0034589264541864395, -0.014982117339968681, -0.006987862754613161, 0.0033954798709601164, -0.0596134252846241, -0.0807214081287384, -0.035214975476264954, 0.03439236059784889, 0.0007154135964810848, -0.07575070858001709, -0.01191918458789587, -0.07547066360712051, 0.03742028772830963, -0.005959592293947935, 0.015235903672873974, -0.016618598252534866, 0.01988280937075615, -0.03136443346738815, 0.04067574813961983, -0.007364165969192982, 0.042776044458150864, 0.03439236059784889, -0.012120462954044342, -0.045051366090774536, -0.03924054652452469, -0.014702077955007553, -0.009897648356854916, -0.0057976944372057915, 0.02812647446990013, 0.04858686774969101, -0.018465109169483185, 0.026043681427836418, -0.013100601732730865, 0.04389620199799538, 0.003920554183423519, -0.040185678750276566, 0.024871014058589935, 0.04435126855969429, 0.029929229989647865, 0.0454714260995388, -0.03052431344985962, 0.07295031100511551, 0.005963967647403479, 0.08429191261529922, -0.057898182421922684, -0.013783197849988937, -0.0352499820291996, -0.03885549306869507, -0.013783197849988937, 0.014220760203897953, 0.0018596377922222018, -0.00033200005418621004, -0.02705882489681244, -0.014063237234950066, 0.09318316727876663, 0.016916140913963318, 0.01165664754807949, 0.039660606533288956, 0.05145727097988129, 0.034934937953948975, -0.023085761815309525, -0.004563769791275263, 0.041445858776569366, -0.006668442394584417, -0.014929610304534435, -0.025291074067354202, 0.021895594894886017, -0.02263069897890091, -0.041620880365371704, 0.02354082651436329, 0.05523780733346939, 0.033867284655570984, -0.05604292079806328, -0.0026253710966557264, 0.01767749898135662, -0.04449128732085228, 0.04802678897976875, -0.02219313569366932, 0.005858953110873699, -0.026253709569573402, 0.025868656113743782, 0.050442129373550415, 0.021212998777627945, -0.03164447098970413, -0.013494406826794147, -0.006567803211510181, -0.074350506067276, -0.010107678361237049, -0.03598508611321449, -0.02320827916264534, -0.039170537143945694, 0.033587247133255005, -0.0311018954962492, -0.011210334487259388, -0.004285918083041906, -0.029019100591540337, -0.031469445675611496, -0.028389012441039085, -0.06745453178882599, 0.026708774268627167, -0.04589148610830307, -0.010300206020474434, 0.09948405623435974, 0.027898943051695824, -0.025483600795269012, 0.045051366090774536, -0.0012601780472323298, 0.01625104621052742, 0.020722929388284683, -0.026498744264245033, 0.02662126161158085, 0.062098775058984756, 0.007561068516224623, -0.016023514792323112, -0.02023285999894142, 0.008108020760118961, -0.01770375296473503, 0.004281542729586363, -0.014290769584476948, -0.02446845732629299, 0.009197549894452095, -0.051212236285209656, 0.04893691465258598, 0.022070618346333504, -0.048516858369112015, 0.04396621510386467, 0.04260101914405823, 0.03626512363553047, 0.06944981217384338, 0.026708774268627167, -0.05523780733346939, 0.055692870169878006, -0.1051548644900322, -0.0045987749472260475, 0.000983967212960124, -0.028056465089321136, -0.055062782019376755, -0.07042995095252991, -0.017012404277920723, -0.02686629630625248, 0.025151055306196213, -0.0073072826489806175, 0.00226875813677907, -0.004611901938915253, 0.004012442193925381, -0.028861578553915024, 0.009626360610127449, -0.02070542611181736, 0.022123126313090324, 0.03962559998035431, -0.03510996326804161, 0.039310555905103683, 0.005784567445516586, 0.002669127192348242, 0.052997488528490067, -0.011927935294806957, 0.03987063467502594, -0.014509550295770168, -0.015034624375402927, -0.06804961711168289, 0.029596682637929916, -0.02523856610059738, 0.06482916325330734, -0.013223119080066681, 0.040570732206106186, 0.026026178151369095, -0.02296324446797371, -0.04638155549764633, 0.022788221016526222, 0.03024427406489849, -0.011166578158736229, -0.019042691215872765, -0.039415571838617325, -0.029439160600304604, -0.011429115198552608, -0.022228142246603966, -0.01988280937075615, -0.03756030648946762, -0.052122365683317184, -0.03598508611321449, -0.0034786167088896036, -0.02254318632185459, -0.0158659927546978, 0.00932006724178791, -0.04512137547135353, 0.013739441521465778, -0.06027851998806, 0.05523780733346939, 0.02546609938144684, 0.02056540735065937, 0.0022512555588036776, 0.06377901136875153, 0.00764420535415411, -0.06314892321825027, 0.0020466954447329044, -0.00023874467296991497, -0.020600412040948868, 0.06860969960689545, -0.022420668974518776, 0.014133247546851635, -0.0023497070651501417, -0.053662583231925964, 0.022420668974518776, 0.00291853747330606, 0.026498744264245033, -0.03535499796271324, 0.04323111101984978, -0.03577505424618721, -0.060068488121032715, 0.05632295832037926, -0.0016671105986461043, -0.04064074531197548, -0.008335553109645844, 0.010072673670947552, -0.053767599165439606, 0.08611217141151428, 0.040430713444948196, 0.010965299792587757, -0.005898333620280027, 0.0030935623217374086, -0.011446617543697357, 0.041480861604213715, -0.03236207365989685, 0.05856327712535858, -0.054817747324705124, 0.0038002245128154755, 0.042496006935834885, 0.03297466039657593, 0.015463435091078281, 0.010475230403244495, -0.02194810099899769, 0.04137584939599037, 0.013739441521465778, -0.007000989280641079, 0.03847043588757515, 0.056462980806827545, 0.007530439179390669, 0.017476219683885574, -0.021020470187067986, -0.029824215918779373, -0.026411233469843864, -0.030401796102523804, 0.018797656521201134, 0.000304652436170727, -0.018902670592069626, -0.09010273218154907, -0.026306217536330223, -0.023278290405869484, -0.062378816306591034, -0.054537706077098846, -0.001792909693904221, 0.002638497855514288, -0.01268929336220026, -0.04638155549764633, 0.05075717344880104, 0.0006935354904271662, -0.07123506814241409, 0.02431093528866768, -0.06059356406331062, 0.03682520613074303, 0.012234228663146496, 0.026953808963298798, -0.008961266838014126, -0.028966594487428665, 0.045716460794210434, 0.0009172389982268214, -0.02782893367111683, 0.06706947833299637, -0.05502777546644211, 0.04638155549764633, -0.017371205613017082, 0.03241458162665367, -0.019865307956933975, -0.03808538243174553, 0.01892017386853695, 0.009118788875639439, 0.034357354044914246, -0.0007755783735774457, -0.04165588691830635, 0.046731606125831604, 0.04113081470131874, 0.01594475284218788, 0.04064074531197548, 0.0022512555588036776, 0.024871014058589935, -0.02359333448112011, -0.08023133873939514, -0.03201202303171158, 0.012881821021437645, -0.07032494246959686, 0.014903356321156025, 0.06776957958936691, 0.026936307549476624, 0.014290769584476948, -0.06500418484210968, -0.00018828832253348082, 0.0028550908900797367, 0.027321361005306244, -0.05310250446200371, 0.014649569988250732, -0.020547904074192047, -0.06818963587284088, -0.03362224996089935, 0.021212998777627945, 0.028861578553915024, -0.026376226916909218, 0.053662583231925964, -0.027146335691213608, -0.020110342651605606, 0.020040331408381462, 0.007556693162769079, -0.033779773861169815, -0.03472490608692169, -0.03446236997842789, -0.0192177165299654, -0.060068488121032715, -0.012339243665337563, 0.016399817541241646, -0.003406418953090906, -0.015603454783558846, 0.013713188469409943, 0.02075793407857418, 0.05037211999297142, 0.034549884498119354, -0.02119549550116062, -0.05397762730717659, 0.030454304069280624, 0.026813790202140808, 0.035372499376535416, -0.03430484980344772, 0.018307587131857872, -0.009967658668756485, 0.07505060732364655, 0.011980443261563778, -0.007784225046634674, -0.05285746976733208, -0.01897268183529377, 0.002186715370044112, 0.011665398254990578, -0.029701698571443558, -0.033657256513834, 0.04515638202428818, -0.004686287138611078, 0.054537706077098846, 0.02334829978644848, 0.024730995297431946, -0.029404155910015106, -0.0378403477370739, 0.024573473259806633, 0.007097253110259771, 0.04561144486069679, -0.030996881425380707, 0.016434822231531143, -0.0020127843599766493, 0.0781310424208641, -0.01773875765502453, -0.08422189950942993, -0.06167871877551079, 0.007784225046634674, 0.015463435091078281, -0.013949471525847912, 0.013975725509226322, -0.07526063919067383, 0.02686629630625248, -0.07617076486349106, 0.032764632254838943, -0.048516858369112015, -0.012453010305762291, 0.009223803877830505, -0.015953505411744118, -0.025641124695539474, -0.013791949488222599, -0.01597975753247738, 0.08142150938510895, 0.0004077529301866889, -0.00046026037307456136, -0.041480861604213715, -0.0002454448549542576, 0.04323111101984978, 0.03222205489873886, 0.011752910912036896, -0.009985161013901234, -0.003953371196985245, -0.011236588470637798, 0.038120388984680176, -0.02865154854953289, 0.025833651423454285, 0.019567765295505524, 0.071830153465271, 0.004202781245112419, 0.011822921223938465, -0.026026178151369095, -0.05985845997929573, 0.002548797754570842, -0.04074575752019882, -0.06307891756296158, 0.010203941725194454, -0.02642873488366604, 0.0011825108667835593, 0.005679552908986807, 0.018272582441568375, -0.022455673664808273, -0.038645461201667786, 0.019515257328748703, -0.014850849285721779, -0.011779164895415306, 0.00936382357031107, 0.015384674072265625, -0.009040027856826782, 0.058143217116594315, 0.02089795283973217, -0.017528727650642395, 0.025291074067354202, -0.01941024325788021, -0.005635796580463648, -0.000019074961528531276, -0.026936307549476624, 0.051842328161001205, -0.011717906221747398, -0.0026406857650727034, -0.009215052239596844, -0.04771174117922783, 0.016513584181666374, -0.07785100489854813, 0.009696369990706444, 0.014133247546851635, 0.001179229118861258, -0.0030651206616312265, -0.025273572653532028, -0.014141998253762722, 0.05513279139995575, -0.003708336502313614, -0.0113678565248847, 0.043266113847494125, -0.030506812036037445, -0.10410471260547638, -0.02782893367111683, 0.021510539576411247, 0.014028232544660568, 0.05387261509895325, -0.005736435763537884, 0.05292747914791107, -0.06052355468273163, 0.006484666373580694, 0.06804961711168289, -0.006760330405086279, -0.007696712855249643, 0.03290465101599693, 0.05268244445323944, -0.03274712711572647, -0.08184156566858292, -0.014588311314582825, 0.03052431344985962, 0.05093219876289368, -0.009993912652134895, 0.013223119080066681, -0.0029951108153909445, 0.034882429987192154, -0.03766532242298126, 0.0021112358663231134, 0.03952058404684067, 0.05345255509018898, 0.04515638202428818, 0.00011424466356402263, 0.044036224484443665, -0.006458412855863571, -0.017782513052225113, 0.012347995303571224, 0.011516627855598927, 0.04253100976347923, -0.013249372132122517, -0.01064150407910347, -0.004716916475445032, -0.009976410306990147, 0.034882429987192154, -0.04022068530321121, 0.04130583629012108, 0.05870329588651657, -0.016828628256917, -0.006961608771234751, -0.02191309630870819, -0.03682520613074303, -0.06783958524465561, 0.017659995704889297, -0.00788048841059208, 0.04099079221487045, -0.013109352439641953, 0.02354082651436329, -0.008829997852444649, 0.09003272652626038 ]
406
bitmath
__long__
Return this instances prefix unit as a long integer
def __long__(self): """Return this instances prefix unit as a long integer""" return long(self.prefix_value) # pragma: PY3X no cover
(self)
[ -0.01646570861339569, 0.022419217973947525, 0.02282745949923992, 0.07845025509595871, 0.017554350197315216, -0.01770744100213051, -0.006523346062749624, -0.005285866558551788, -0.00650633592158556, -0.11110951006412506, -0.015504641458392143, -0.003918685484677553, 0.007144212257117033, -0.016346637159585953, -0.004482142627239227, 0.012851077131927013, -0.0596371628344059, -0.03299945592880249, 0.012485361658036709, 0.03500663861632347, 0.019408443942666054, 0.055520735681056976, 0.037558142095804214, 0.024970723316073418, -0.010546217672526836, 0.05242490768432617, 0.04711778089404106, 0.00840295385569334, 0.012749016284942627, -0.0435456745326519, -0.04830848053097725, 0.028049537912011147, 0.030294861644506454, 0.01753734052181244, 0.04048386961221695, -0.09165003895759583, 0.0064382958225905895, 0.03803442418575287, -0.10158389061689377, -0.005583541933447123, 0.024749591946601868, -0.04589305818080902, 0.020922334864735603, -0.022589318454265594, -0.0036571561358869076, -0.045756977051496506, 0.01746929995715618, -0.020531104877591133, -0.024919692426919937, -0.007216504774987698, 0.013701578602194786, -0.02969950996339321, -0.021976957097649574, -0.02495371177792549, -0.09464380145072937, 0.09205827862024307, 0.03248915448784828, 0.030141770839691162, -0.08675114810466766, 0.07416372746229172, -0.0723266452550888, 0.02680780552327633, 0.034700460731983185, -0.0509280264377594, 0.009006810374557972, -0.0024749592412263155, -0.03602724149823189, 0.03238709643483162, -0.0014309686375781894, 0.04987340420484543, 0.005728127434849739, -0.017945580184459686, -0.019170302897691727, 0.01792857050895691, 0.046097178012132645, -0.003642272436991334, -0.06181444600224495, 0.0006134241702966392, 0.01526650134474039, 0.018302790820598602, -0.014790220186114311, -0.026110393926501274, 0.04813838005065918, 0.01024854276329279, 0.019476482644677162, -0.021636756137013435, 0.056371234357357025, 0.05800420045852661, -0.0018296412890776992, 0.006676436401903629, -0.029563430696725845, 0.05347952991724014, -0.012987157329916954, 0.026161424815654755, 0.008339166641235352, -0.02440939098596573, -0.01005292683839798, -0.0020252566318958998, -0.008275379426777363, -0.0170865748077631, 0.028287678956985474, 0.02110944502055645, 0.01373559795320034, -0.026722755283117294, 0.04970330372452736, 0.02003781497478485, -0.013395397923886776, -0.039225127547979355, -0.016763383522629738, 0.028406748548150063, 0.0025812718085944653, -0.0574938990175724, -0.06181444600224495, 0.012332270853221416, -0.02434135228395462, 0.008186076767742634, 0.034088097512722015, 0.012340775690972805, 0.023711981251835823, 0.026484614238142967, 0.02685883641242981, -0.0020688448566943407, -0.05388777330517769, -0.023269720375537872, 0.03060104139149189, 0.03332264721393585, 0.01854093186557293, 0.035993222147226334, -0.003642272436991334, -0.020173894241452217, 0.05317335203289986, 0.027113985270261765, 0.031689684838056564, 0.037388045340776443, 0.047219838947057724, -0.018013620749115944, 0.04405597597360611, 0.07008131593465805, -0.02406919002532959, 0.09192219376564026, -0.008887739852070808, 0.03629940003156662, 0.06980916112661362, -0.0400756299495697, -0.026841824874281883, 0.042184870690107346, -0.008415712043642998, 0.033798929303884506, -0.06773393601179123, 0.006268195807933807, -0.001166250091046095, -0.004754303023219109, 0.10219625383615494, 0.05728977918624878, -0.021177485585212708, -0.013812143355607986, -0.007786340545862913, -0.04725386202335358, 0.0164231825619936, -0.046437378972768784, -0.024749591946601868, 0.01619354821741581, -0.012519381009042263, -0.08627486974000931, -0.022657359018921852, 0.018864121288061142, -0.022266127169132233, -0.03667362406849861, -0.01273200660943985, 0.0024834643118083477, -0.024137230589985847, -0.02167077735066414, 0.018779071047902107, 0.03396902605891228, -0.018115680664777756, 0.04585903882980347, -0.006221418268978596, 0.010656783357262611, 0.004541677888482809, 0.03340769559144974, -0.00534540181979537, 0.004326926078647375, -0.01881309226155281, -0.03803442418575287, 0.05694957822561264, 0.0509280264377594, 0.03299945592880249, -0.006735971663147211, 0.023252708837389946, -0.04813838005065918, -0.012697986327111721, -0.013259317725896835, 0.0008414648473262787, -0.007020889315754175, -0.01200057566165924, -0.0007867138483561575, 0.03507468104362488, -0.019850702956318855, 0.01094595342874527, 0.02830468863248825, -0.047049738466739655, 0.0435456745326519, 0.005821682512760162, 0.011124558746814728, 0.05051978677511215, -0.028729937970638275, 0.006072580348700285, 0.03578910231590271, -0.0600794218480587, -0.02282745949923992, 0.007161222398281097, -0.027828406542539597, -0.043239492923021317, 0.07171428203582764, 0.017503319308161736, -0.08552642911672592, -0.0278624277561903, 0.008058501407504082, 0.003786857705563307, 0.02406919002532959, 0.10437353700399399, -0.0180816613137722, 0.001938080182299018, -0.06106600537896156, -0.010852398350834846, -0.018557941541075706, -0.0046905153430998325, 0.028338707983493805, 0.04337557405233383, 0.014033273793756962, 0.01976565271615982, -0.049227025359869, -0.054193951189517975, 0.023439818993210793, 0.02282745949923992, 0.0014873143518343568, -0.006089590489864349, 0.04330753535032272, -0.019221331924200058, -0.013914203271269798, -0.04283125326037407, -0.003708186326548457, 0.05609907582402229, 0.07327920198440552, 0.02172180637717247, -0.02328673005104065, 0.0021613368298858404, 0.04160653054714203, 0.018608972430229187, 0.026875846087932587, -0.047049738466739655, -0.021823866292834282, 0.03192782402038574, 0.02658667601644993, 0.07355136424303055, -0.026654714718461037, -0.0431034117937088, -0.005898227449506521, -0.021738817915320396, 0.0005501681007444859, -0.008930264972150326, -0.027403157204389572, 0.015453611500561237, -0.02837272919714451, -0.046981699764728546, 0.01976565271615982, 0.01669534295797348, 0.009874321520328522, -0.017001524567604065, 0.052629031240940094, 0.0749121680855751, -0.03932718560099602, -0.07742965221405029, 0.019969774410128593, -0.016610292717814445, -0.02852581813931465, 0.02675677463412285, 0.051846567541360855, -0.039055027067661285, -0.024052180349826813, -0.02054811455309391, 0.021313566714525223, 0.017452290281653404, -0.03993954882025719, -0.04517863690853119, -0.009270465932786465, 0.0022240611724555492, -0.0019157545175403357, -0.031128352507948875, -0.017044048756361008, -0.02406919002532959, -0.00628095306456089, 0.017911560833454132, 0.018728042021393776, 0.0932149589061737, 0.00834767147898674, -0.008862225338816643, 0.04412401467561722, 0.030345892533659935, -0.00009129601676249877, -0.07042151689529419, 0.006969859357923269, -0.04820642247796059, -0.00025647933944128454, 0.00009335582581115887, 0.014271413907408714, 0.04249105229973793, -0.04198075085878372, 0.03449633717536926, 0.07042151689529419, -0.017503319308161736, 0.014050283469259739, 0.012349281460046768, -0.012332270853221416, 0.002055024029687047, 0.04164054989814758, -0.029750540852546692, 0.007284544873982668, 0.002306985203176737, 0.06725765764713287, 0.011405223980545998, 0.00445237522944808, 0.0230655986815691, 0.038952965289354324, 0.0072420197539031506, -0.015844842419028282, -0.03182576596736908, 0.030056720599532127, 0.023252708837389946, -0.05065586790442467, -0.06303916871547699, -0.05841244012117386, -0.003929316531866789, -0.018166711553931236, -0.01831980049610138, -0.022657359018921852, 0.074844129383564, 0.008675115182995796, -0.02842375822365284, -0.009244950488209724, 0.10505393892526627, -0.009338505566120148, -0.024664541706442833, 0.03410510718822479, 0.02573617361485958, 0.01521547045558691, 0.005940752569586039, -0.024596501141786575, 0.06436595320701599, 0.004284400958567858, -0.024834642186760902, -0.05252696946263313, -0.001825388753786683, -0.021959947422146797, 0.08001517504453659, -0.0465734601020813, -0.008381691761314869, -0.037047844380140305, 0.007280292455106974, 0.08906450867652893, -0.030839182436466217, -0.10546217858791351, 0.031740713864564896, -0.00977226160466671, -0.020463064312934875, 0.005868460051715374, -0.046097178012132645, -0.03199586272239685, 0.011643365025520325, 0.02507278323173523, -0.04426009580492973, -0.025923283770680428, -0.010333593003451824, -0.03427520766854286, 0.011890009976923466, 0.043919894844293594, -0.04065397009253502, 0.05310530960559845, -0.11355895549058914, -0.0723266452550888, 0.04160653054714203, -0.04075602814555168, -0.017239663749933243, 0.03980346769094467, -0.0036954288370907307, 0.018694022670388222, -0.003055426524952054, -0.03568704053759575, -0.032404106110334396, 0.0835532620549202, 0.019238343462347984, -0.0030958252027630806, 0.03160463273525238, -0.05147234722971916, -0.005421946756541729, 0.02725006639957428, -0.009100365452468395, -0.046437378972768784, 0.021228516474366188, -0.011439244262874126, 0.013378387317061424, -0.0348365381360054, -0.000466181110823527, 0.07198644429445267, -0.03145154193043709, 0.0020061202812939882, 0.06776795536279678, -0.02144964598119259, -0.035142719745635986, 0.03366284817457199, -0.09607264399528503, 0.02406919002532959, 0.027165016159415245, -0.022266127169132233, 0.011719909496605396, -0.03902100771665573, -0.026841824874281883, -0.0470157191157341, 0.014671149663627148, -0.02986961044371128, -0.037217944860458374, 0.010154987685382366, 0.024375371634960175, 0.0383065864443779, -0.028951069340109825, -0.010554722510278225, -0.002485590521246195, 0.008394449017941952, -0.032472144812345505, 0.02223210781812668, -0.00046352329081855714, 0.016499727964401245, 0.007697037886828184, -0.04473637789487839, 0.03993954882025719, -0.0391911081969738, -0.018013620749115944, -0.041742611676454544, -0.018864121288061142, -0.018608972430229187, 0.06470614671707153, 0.005205068737268448, 0.00979777704924345, 0.06351544708013535, 0.04249105229973793, -0.08586662262678146, -0.032914407551288605, -0.010010401718318462, 0.010265552438795567, 0.007998965680599213, -0.02886601909995079, -0.01825176179409027, 0.036095280200242996, -0.05116616562008858, 0.02713099680840969, -0.08246462047100067, -0.11342287063598633, -0.05871862173080444, -0.030396921560168266, -0.0940314382314682, -0.03060104139149189, 0.02144964598119259, 0.015283511020243168, 0.022368188947439194, -0.02820262871682644, 0.02947838045656681, 0.0041057956404984, -0.00140651676338166, -0.05310530960559845, 0.009508606046438217, -0.0069741117767989635, -0.032574206590652466, -0.011328679509460926, -0.012502371333539486, -0.004669252783060074, 0.03031187132000923, -0.06681539118289948, 0.023218689486384392, -0.015589691698551178, -0.061848465353250504, 0.020956356078386307, -0.012051605619490147, 0.06348142772912979, 0.025532053783535957, 0.019408443942666054, 0.02189190685749054, -0.0006788064492866397, -0.0010992730967700481, 0.008109531365334988, -0.01303818728774786, -0.0118644954636693, 0.113218754529953, -0.018557941541075706, -0.005141281057149172, 0.06392368674278259, 0.015870356932282448, -0.0017126973252743483, -0.0004842542693950236, -0.05371767282485962, 0.015419591218233109, -0.041572511196136475, -0.009406546130776405, 0.016389163210988045, -0.006459558382630348, 0.051404308527708054, 0.013395397923886776, -0.04004160687327385, 0.0118644954636693, -0.012094130739569664, -0.0040781544521451, -0.03803442418575287, -0.01172841526567936, 0.026212453842163086, 0.03646950051188469, -0.004550182726234198, 0.03718392178416252, -0.01848990097641945, -0.017605379223823547, 0.004945666063576937, 0.015844842419028282, -0.014501050114631653, -0.02110944502055645, 0.0015309025766327977, -0.06113404408097267, -0.016508232802152634, 0.024375371634960175, -0.02930827997624874, -0.037660203874111176, -0.012978652492165565, 0.048104360699653625, -0.013157257810235023, -0.05344551056623459, -0.01787753961980343, 0.04208281263709068, -0.029784560203552246, 0.04300135374069214, -0.07116995751857758, -0.02658667601644993, 0.08300893753767014, 0.005774904973804951, 0.006655173841863871, -0.03493859991431236, 0.011379709467291832, 0.012043100781738758, -0.016567768529057503, 0.07409568876028061, -0.04293331131339073, 0.06130414456129074, 0.009100365452468395, 0.006378761027008295, -0.0007819297607056797, -0.018234750255942345, 0.03510870039463043, -0.00901531521230936, 0.008930264972150326, -0.010401632636785507, 0.02986961044371128, -0.01713760383427143, 0.02355889044702053, 0.019527513533830643, 0.027709336951375008, -0.024256302043795586, 0.032693274319171906, -0.003555095987394452, -0.0913778766989708, -0.0023239951115101576, -0.021262535825371742, -0.04116427153348923, -0.015283511020243168, 0.04204879328608513, -0.010435652919113636, -0.004010114353150129, 0.021007385104894638, -0.007913916371762753, -0.04381783306598663, -0.011541304178535938, -0.030788151547312737, -0.01493480522185564, 0.003848518943414092, -0.0444301962852478, -0.013225297443568707, 0.055588774383068085, -0.019918743520975113, -0.004954170901328325, 0.03568704053759575, 0.022010978311300278, 0.0003712970355991274, -0.007573715411126614, 0.019510503858327866, -0.06123610585927963, -0.020020803436636925, -0.012510876171290874, -0.024545472115278244, -0.02289549820125103, 0.015223976224660873, 0.0026578169781714678, -0.05582691356539726, -0.03847668692469597, 0.03339068591594696, -0.0004932908341288567, 0.04892084375023842, 0.027284085750579834, -0.024698562920093536, 0.07640904933214188, 0.022402208298444748, 0.003472172189503908, 0.04817240312695503, 0.00621291296556592, -0.029971670359373093, -0.03209792450070381, -0.01114156935364008, -0.036435481160879135, 0.0035976211074739695, -0.0596371628344059, -0.046981699764728546, -0.034530360251665115, 0.02143263630568981, -0.033866968005895615, -0.045586876571178436, -0.028576849028468132, -0.08321306109428406, 0.04987340420484543, 0.028287678956985474, -0.00018657874898053706, 0.0037996151950210333, 0.019476482644677162, -0.009202425368130207, 0.02328673005104065, 0.03126443177461624, -0.06320926547050476, -0.0027449934277683496, 0.029665490612387657, 0.07892653346061707, -0.052016668021678925, -0.016006438061594963, -0.015870356932282448, -0.008624084293842316, 0.013310347683727741, -0.02282745949923992, 0.02417125180363655, -0.007046404294669628, 0.03378191590309143, -0.061678364872932434, 0.028831999748945236, -0.03585714101791382, -0.004843605682253838, -0.003814498893916607, -0.025157833471894264, -0.015172946266829967, -0.0400756299495697, -0.02446042187511921, 0.06688343733549118, 0.02981858141720295, 0.004465132486075163, 0.014330949634313583, -0.03271028399467468, 0.014458524994552135, 0.00974674616008997, 0.009347011335194111, -0.048444561660289764, -0.026008334010839462, -0.02881498821079731, -0.06123610585927963, -0.016737869009375572, 0.035482920706272125, -0.034309227019548416, 0.010367612354457378, -0.006944344379007816, 0.05501043424010277, -0.020258944481611252, 0.028168607503175735, 0.025668133050203323, -0.001718012965284288, -0.0246135126799345, -0.04500853642821312, -0.040347788482904434, 0.012842572294175625, 0.005549522116780281, 0.04511059820652008, 0.005268856417387724, 0.01937442272901535, -0.022351177409291267, -0.019629573449492455, -0.03629940003156662, -0.013837658800184727, 0.02076924592256546, 0.005949257407337427, 0.04970330372452736, -0.007271787151694298, -0.047049738466739655, 0.01334436796605587, -0.032080914825201035, -0.023831050843000412, 0.04902290180325508, 0.005579289514571428, -0.003525328589603305, -0.007565210573375225, 0.038170505315065384, 0.04674356058239937, -0.037388045340776443, 0.02316765859723091, -0.01681441441178322, -0.0012034595711156726, 0.007076172158122063, -0.027096975594758987, 0.04432813450694084, 0.010988478548824787, -0.010418642312288284, -0.023967130109667778, 0.025140821933746338, 0.04868270456790924, 0.08647898584604263, 0.01825176179409027, -0.05790213868021965, 0.06263092905282974, 0.01635514199733734, -0.013284832239151001, 0.061678364872932434, 0.0015340920072048903, 0.05034968629479408, -0.014118324033915997, 0.05014556646347046, 0.040449850261211395, 0.013267822563648224, -0.02054811455309391, 0.0036316411569714546, 0.043579693883657455, 0.007271787151694298, -0.06749579310417175, 0.005434704478830099, 0.024919692426919937, 0.027794387191534042, 0.010333593003451824, -0.02104140631854534, 0.02138160727918148, 0.03162164241075516, 0.025378962978720665, 0.010333593003451824, 0.005859954748302698, 0.013199781998991966, 0.00450765760615468, 0.0400756299495697, -0.000939272518735379, 0.04041582718491554, -0.04783220216631889, 0.028355717658996582, 0.0019136283081024885, 0.06698549538850784, 0.015257995575666428, -0.006714709103107452, 0.0263485349714756, 0.03857874497771263, 0.00717397965490818, -0.06086188182234764, 0.03915708512067795, -0.04919300228357315, 0.012783036567270756, 0.00029103097040206194, 0.014024768956005573, -0.027233056724071503, -0.0696050375699997, -0.08287286013364792, -0.014169353991746902, 0.07110191881656647, -0.03762618452310562, 0.01619354821741581, -0.000969040091149509, 0.02556607313454151 ]
407
bitmath
__lshift__
Left shift, ex: 100 << 2 A left shift by n bits is equivalent to multiplication by pow(2, n). A long integer is returned if the result exceeds the range of plain integers.
def __lshift__(self, other): """Left shift, ex: 100 << 2 A left shift by n bits is equivalent to multiplication by pow(2, n). A long integer is returned if the result exceeds the range of plain integers.""" shifted = int(self.bits) << other return type(self)(bits=shifted)
(self, other)
[ -0.04831855744123459, 0.011972423642873764, 0.028179869055747986, 0.07648056000471115, 0.014626013115048409, -0.022640390321612358, -0.021050022915005684, 0.010480338707566261, -0.02641081064939499, -0.04195709154009819, 0.012821215204894543, 0.012249398045241833, 0.04045607149600983, 0.03984851762652397, -0.01962048001587391, 0.03139634057879448, -0.058861441910266876, -0.00956900417804718, 0.011034286580979824, -0.010310580022633076, 0.03068157099187374, 0.022300872951745987, 0.08748804032802582, 0.0211036317050457, 0.019084401428699493, 0.07129846513271332, 0.010006802156567574, 0.01922735571861267, -0.03523823991417885, -0.002885890193283558, -0.031271256506443024, -0.025713907554745674, 0.012910561636090279, -0.046245720237493515, -0.03336196392774582, -0.0520353727042675, -0.0533219613134861, 0.017485100775957108, -0.020067213103175163, 0.018056917935609818, 0.0327007994055748, -0.02062116004526615, 0.013812961056828499, -0.043064989149570465, -0.03877635672688484, -0.07955408096313477, -0.016171706840395927, -0.024337971583008766, 0.02616064064204693, -0.031449951231479645, -0.0165916346013546, 0.012070705182850361, -0.0039759171195328236, -0.04531651735305786, 0.009810240007936954, 0.04038459435105324, 0.026857541874051094, 0.013795091770589352, -0.03466642275452614, 0.021818403154611588, -0.030127622187137604, 0.05446559563279152, -0.016162771731615067, 0.03068157099187374, 0.03461281582713127, -0.044780440628528595, -0.07505101710557938, -0.017377885058522224, 0.004333302844315767, 0.061792004853487015, -0.015421196818351746, 0.020013604313135147, 0.01618957705795765, 0.032343413680791855, -0.020478205755352974, 0.029252026230096817, -0.042243000119924545, -0.04449453204870224, 0.058861441910266876, 0.02142527885735035, 0.03511315584182739, -0.007634654175490141, 0.005092747509479523, 0.021872010082006454, -0.03454133868217468, -0.04595981165766716, 0.011463149450719357, -0.0028054784052073956, 0.058182407170534134, -0.0587184838950634, -0.025642430409789085, 0.02217578887939453, -0.02642867900431156, -0.01717238686978817, 0.002180053386837244, -0.0016886478988453746, -0.0287159476429224, 0.03211111202836037, -0.02485618181526661, 0.027929699048399925, -0.0021610672120004892, 0.024105671793222427, -0.03279014676809311, -0.010176560841500759, 0.043386634439229965, -0.008590660989284515, -0.01218685507774353, -0.038633402436971664, -0.06801051646471024, 0.016386138275265694, 0.004583472851663828, -0.029752368107438087, -0.08348532021045685, 0.017225995659828186, -0.056395478546619415, 0.07976850867271423, 0.03305818513035774, -0.002125328639522195, -0.017896093428134918, 0.020656898617744446, 0.05346491560339928, -0.022962037473917007, 0.03336196392774582, 0.009935325011610985, 0.009479657746851444, 0.07762419432401657, 0.03363000229001045, -0.05660990998148918, -0.01080198585987091, -0.05092747509479523, 0.04159970581531525, 0.0020259306766092777, -0.014867248944938183, 0.06054115295410156, 0.03091387078166008, 0.003203070256859064, 0.02103215456008911, 0.045102085918188095, 0.0020974078215658665, 0.0016596103087067604, -0.009434984996914864, 0.03573857992887497, 0.10435665398836136, 0.03368360921740532, -0.01603768765926361, 0.011177240870893002, 0.021818403154611588, 0.04320794343948364, 0.038883574306964874, 0.03475577011704445, 0.040777720510959625, -0.030538616701960564, 0.07229914516210556, 0.06343597918748856, -0.03214685246348381, 0.0793396458029747, 0.0038955050986260176, -0.023265814408659935, 0.0023230076767504215, 0.0021744691766798496, -0.0051642246544361115, -0.018047982826828957, -0.022265134379267693, -0.05686007812619209, -0.0029797039460390806, -0.029252026230096817, 0.04545947164297104, -0.009631547145545483, 0.012177920900285244, 0.007214725483208895, 0.051642246544361115, -0.02993106096982956, 0.047961171716451645, -0.029073333367705345, -0.04260038584470749, 0.04849725216627121, -0.035291846841573715, 0.021389540284872055, -0.010525011457502842, -0.022354481741786003, 0.011677580885589123, 0.03820453956723213, -0.07308539748191833, -0.04653162881731987, 0.05342917516827583, 0.007366614881902933, -0.018691277131438255, 0.018691277131438255, 0.011230848729610443, 0.02700049616396427, -0.0021085762418806553, -0.01558202039450407, -0.00033504917519167066, -0.03638187423348427, -0.02455240488052368, 0.015197831206023693, -0.03977704048156738, 0.017288537696003914, 0.04628146067261696, 0.09892439097166061, -0.011418475769460201, 0.11350572854280472, 0.01603768765926361, 0.025070613250136375, 0.0296808909624815, -0.03641761094331741, 0.027911830693483353, 0.04235021770000458, -0.06272120773792267, -0.03688221424818039, 0.04049181193113327, -0.01970982737839222, -0.018941447138786316, 0.044601745903491974, 0.01895931549370289, -0.02462388202548027, -0.07991146296262741, -0.015448001213371754, 0.00797417014837265, -0.022140050306916237, 0.04581685736775398, -0.023087121546268463, -0.08462895452976227, -0.017467230558395386, 0.0415639691054821, 0.007371081970632076, 0.007724000606685877, -0.08234168589115143, 0.019745565950870514, 0.0485687293112278, 0.06404353678226471, -0.02012082003057003, 0.012383418157696724, -0.012365548871457577, 0.018852099776268005, -0.0048336428590118885, 0.0011771394638344646, -0.005204430781304836, -0.033647872507572174, 0.017047302797436714, -0.04442305490374565, 0.009988932870328426, 0.05310752987861633, 0.02878742478787899, 0.02599981613457203, -0.010882397182285786, -0.028412170708179474, 0.04513782635331154, 0.03555988520383835, 0.07376442849636078, -0.03849044814705849, -0.036274656653404236, -0.0013022244675084949, 0.023605331778526306, 0.049855317920446396, -0.011713319458067417, -0.012231528759002686, -0.06132740154862404, -0.027214927598834038, -0.015760714188218117, -0.01585899479687214, 0.023998456075787544, 0.000040031398384599015, -0.08412861824035645, -0.043458111584186554, -0.02764379046857357, -0.008666605688631535, 0.016055556014180183, 0.04113510623574257, 0.05836109817028046, 0.07547987997531891, -0.03738255426287651, -0.025874732062220573, 0.027697399258613586, -0.03514889255166054, -0.04227874055504799, 0.0596834272146225, 0.03261145204305649, 0.017869289964437485, -0.047639526426792145, 0.013946980237960815, 0.05550201237201691, -0.04924776405096054, -0.03196815773844719, -0.08255612105131149, 0.026071293279528618, -0.0011938918614760041, -0.03002040646970272, -0.0418856143951416, -0.03386230394244194, 0.05110616981983185, 0.05128486081957817, 0.012660391628742218, -0.00603088503703475, 0.08477190881967545, 0.014125673100352287, -0.04653162881731987, 0.0065312255173921585, 0.07655203342437744, 0.01627892255783081, -0.04717492312192917, -0.06675966829061508, -0.030717309564352036, 0.01259784959256649, 0.016868609935045242, -0.05853979289531708, 0.012535306625068188, -0.03091387078166008, -0.022604651749134064, 0.09120485186576843, -0.021800532937049866, 0.013687876053154469, -0.026142770424485207, -0.031843073666095734, 0.025392260402441025, -0.008264546282589436, -0.0018941446905955672, 0.06232808157801628, -0.035702839493751526, 0.07319261133670807, 0.045423734933137894, -0.021496756002306938, -0.02224726602435112, -0.00034733430948108435, 0.014509863220155239, -0.009685155004262924, -0.042993512004613876, -0.024337971583008766, 0.03597088158130646, -0.0261785089969635, -0.05857552960515022, 0.0005201638559810817, 0.03153929486870766, -0.021300192922353745, -0.021067893132567406, 0.01431330107152462, 0.05700303241610527, 0.026375072076916695, -0.03927670046687126, -0.029377112165093422, 0.05778928101062775, -0.004525397438555956, -0.015832191333174706, 0.013124993070960045, 0.04910480976104736, 0.022836951538920403, 0.016957955434918404, 0.01066796574741602, 0.010757312178611755, -0.008072451688349247, 0.029734497889876366, -0.0971374586224556, -0.011105763725936413, -0.05339343845844269, 0.028447909280657768, 0.01123978290706873, -0.0036877747625112534, -0.011105763725936413, -0.004735361784696579, -0.0016439746832475066, 0.00908206682652235, -0.08034032583236694, 0.010819855146110058, 0.007576578762382269, -0.05085599794983864, 0.03359426558017731, -0.05167798697948456, -0.01660056971013546, -0.001000680262222886, 0.020978545770049095, -0.0070449672639369965, -0.03434477373957634, -0.04613850638270378, -0.009434984996914864, -0.020478205755352974, 0.016073426231741905, -0.03534545376896858, 0.054108209908008575, -0.07583726197481155, -0.042493171989917755, 0.02691115066409111, -0.03416608273983002, -0.006794797256588936, 0.03148568794131279, 0.02330155298113823, 0.042814817279577255, 0.0005282608908601105, 0.0009079832816496491, 0.02551734633743763, 0.06368614733219147, -0.02037099003791809, 0.006718853022903204, 0.027661660686135292, -0.05543053522706032, -0.023337291553616524, 0.003875402268022299, -0.010060410015285015, 0.021854141727089882, 0.018056917935609818, -0.023748286068439484, 0.03337983414530754, 0.02741149067878723, -0.02503487467765808, 0.011552495881915092, 0.006388271227478981, 0.06340023875236511, 0.009792370721697807, -0.02004934288561344, -0.05739615857601166, 0.002539672888815403, -0.07898226380348206, 0.01727066934108734, 0.012106443755328655, -0.04717492312192917, 0.04724640026688576, -0.0767664685845375, 0.024320103228092194, 0.023355161771178246, 0.012043900787830353, 0.025713907554745674, 0.006147035863250494, -0.04753230884671211, 0.016216380521655083, -0.017529772594571114, -0.02190774865448475, 0.030216969549655914, -0.0082958173006773, 0.037096645683050156, -0.08277054876089096, 0.020835591480135918, 0.008894438855350018, 0.016144903376698494, -0.000300427433103323, 0.015519478358328342, 0.027608051896095276, -0.03909800574183464, -0.026857541874051094, 0.025642430409789085, -0.021550362929701805, 0.01321433950215578, 0.09234848618507385, -0.015966210514307022, 0.022872690111398697, 0.017538707703351974, 0.0190486628562212, -0.07640907913446426, 0.013920176774263382, 0.03216472268104553, -0.04213578626513481, 0.01782461628317833, 0.014626013115048409, 0.01897718571126461, 0.04074198007583618, 0.04435157775878906, -0.011141502298414707, -0.0533219613134861, -0.07165585458278656, -0.04974810406565666, -0.013312621042132378, -0.007335343398153782, -0.0009504228364676237, -0.040777720510959625, -0.016073426231741905, 0.04999827221035957, 0.002403419464826584, -0.017851419746875763, -0.015680301934480667, -0.025553084909915924, -0.024016324430704117, -0.00600854866206646, 0.011096828617155552, -0.048604466021060944, 0.01847684569656849, 0.0020493841730058193, 0.019191617146134377, 0.017306407913565636, -0.06254251301288605, -0.03738255426287651, 0.021210847422480583, -0.06272120773792267, -0.005570751149207354, -0.017556577920913696, 0.045030608773231506, -0.0011129217455163598, -0.006915415171533823, -0.04635293781757355, 0.005048074293881655, 0.04524504020810127, 0.01634146459400654, 0.03391591086983681, -0.0007080705836415291, 0.09706597775220871, -0.03827601671218872, -0.0026535894721746445, 0.010712639428675175, 0.006383803673088551, -0.0672600045800209, 0.007902693003416061, -0.01137380301952362, 0.03734681382775307, -0.043636806309223175, -0.019263094291090965, -0.04610276594758034, -0.01361639890819788, 0.06536585837602615, 0.024230755865573883, -0.027286404743790627, 0.008519183844327927, 0.0014161411672830582, 0.005669032223522663, -0.010730508714914322, 0.000782339833676815, -0.009872782975435257, 0.02846577763557434, -0.018744884058833122, -0.009149076417088509, 0.0024570273235440254, 0.07272800803184509, -0.002454793779179454, -0.010927070863544941, 0.0384189710021019, -0.026643110439181328, -0.03214685246348381, -0.07976850867271423, -0.014974464662373066, -0.05228554084897041, 0.0049229892902076244, -0.047317877411842346, 0.008322621695697308, 0.03909800574183464, -0.06833216547966003, -0.048282820731401443, -0.05192815512418747, 0.026375072076916695, -0.017628055065870285, 0.06225660443305969, -0.10900266468524933, 0.06429370492696762, 0.06500847637653351, -0.058432575315237045, -0.021711187437176704, -0.03845471143722534, 0.04685327783226967, 0.058932919055223465, -0.05914735049009323, 0.0530003122985363, -0.05971916764974594, 0.052464235574007034, -0.029073333367705345, 0.000052211831643944606, -0.054108209908008575, -0.05053435266017914, -0.002843450754880905, 0.022872690111398697, 0.00007510685827583075, -0.023265814408659935, 0.00488725071772933, 0.015358654782176018, 0.020799852907657623, 0.05464428663253784, 0.009738762862980366, 0.028680209070444107, 0.037096645683050156, -0.032593585550785065, -0.0637933611869812, -0.015072746202349663, 0.04495913162827492, -0.03956260904669762, -0.026946889236569405, 0.023766154423356056, 0.010900266468524933, 0.03859766572713852, -0.03436264395713806, -0.0007923913071863353, 0.004407013766467571, 0.03523823991417885, -0.020067213103175163, -0.010730508714914322, -0.003951346501708031, 0.009028458967804909, -0.06797477602958679, 0.033004578202962875, 0.008916775695979595, -0.03759698569774628, 0.019584741443395615, -0.0312533862888813, -0.026786064729094505, -0.010382057167589664, -0.036024488508701324, 0.053858038038015366, 0.02256891317665577, -0.007125379052013159, -0.05035565793514252, -0.010042540729045868, 0.022193657234311104, -0.044280100613832474, -0.025088483467698097, -0.01822667568922043, -0.004713024944067001, 0.01652909256517887, 0.01247276458889246, -0.010900266468524933, -0.01987065002322197, 0.011579299345612526, 0.002068370347842574, 0.03304031491279602, 0.008541520684957504, 0.005128486081957817, -0.05553775280714035, -0.03498806804418564, -0.0007700546993874013, -0.0022816848941147327, 0.045173563063144684, -0.012955235317349434, -0.024731097742915154, -0.010516077280044556, 0.003980384208261967, -0.067653127014637, 0.0029685357585549355, -0.06961875408887863, -0.044780440628528595, 0.001275420538149774, -0.018601929768919945, -0.017047302797436714, -0.029895322397351265, -0.024159278720617294, -0.0038106259889900684, 0.032504238188266754, 0.06415075063705444, 0.022836951538920403, -0.02641081064939499, 0.0072862026281654835, 0.09642268717288971, -0.07097681611776352, -0.004695155657827854, -0.0274650976061821, -0.023694677278399467, 0.025624562054872513, 0.0054054600186645985, 0.023033514618873596, -0.021729055792093277, 0.05882570147514343, -0.056145306676626205, -0.04646015167236328, -0.0323791541159153, -0.02714345045387745, 0.01995999738574028, -0.000056609351304359734, -0.010140822269022465, -0.0374540314078331, -0.038633402436971664, 0.04989105835556984, -0.005293777212500572, 0.041099365800619125, -0.006348065100610256, -0.0485687293112278, 0.03223619982600212, 0.021854141727089882, 0.027625922113656998, -0.0742647647857666, -0.013348359614610672, -0.010390992276370525, 0.022944167256355286, 0.01353598665446043, -0.02657163329422474, 0.010971743613481522, 0.014715360477566719, -0.016296792775392532, 0.053607869893312454, -0.016216380521655083, 0.02051394432783127, -0.060576893389225006, -0.016949020326137543, -0.009140141308307648, -0.00027711360598914325, -0.04785395786166191, -0.0037882893811911345, -0.008939112536609173, 0.016734588891267776, -0.0040362258441746235, -0.07011909037828445, 0.024427318945527077, -0.04367254301905632, -0.0029640684369951487, -0.017136648297309875, 0.00006229820428416133, -0.0006310092867352068, 0.03507741540670395, -0.042814817279577255, -0.027786744758486748, 0.05192815512418747, 0.04635293781757355, 0.0023163065779954195, 0.003448772942647338, -0.03949113190174103, 0.0024346907157450914, -0.018298152834177017, -0.05464428663253784, 0.0654015988111496, -0.03849044814705849, 0.03261145204305649, -0.03304031491279602, 0.012097508646547794, 0.008014376275241375, -0.03220045939087868, -0.003618531161919236, 0.015814321115612984, 0.007406820543110371, 0.026607371866703033, 0.0072996048256754875, 0.00883189681917429, 0.07898226380348206, 0.02512422204017639, -0.016993694007396698, 0.029484327882528305, -0.028769556432962418, -0.014581340365111828, 0.03416608273983002, -0.027268536388874054, 0.055573489516973495, -0.0010889098048210144, -0.003951346501708031, 0.040777720510959625, 0.004628146067261696, 0.006281055510044098, -0.015385458245873451, 0.034309037029743195, 0.008108190260827541, -0.025231437757611275, 0.034898724406957626, 0.028233477845788002, 0.011427410878241062, 0.0377756766974926, 0.03629252687096596, 0.06779608130455017, 0.02616064064204693, -0.03813306242227554, 0.042564649134874344, 0.06654523313045502, -0.005369721446186304, 0.027197059243917465, 0.04210004583001137, 0.0492120236158371, -0.024981267750263214, -0.012320875190198421, 0.009050794877111912, 0.018182002007961273, 0.07133420556783676, -0.016305726021528244, 0.006209578365087509, 0.01009614858776331, -0.028197739273309708, 0.026053424924612045, -0.053036052733659744, 0.010399926453828812, -0.004183647222816944, -0.007563177030533552, -0.01157036516815424, 0.01602875255048275, 0.03041353076696396, -0.044530268758535385, -0.06457961350679398, -0.008970383554697037, 0.03899078816175461, 0.01080198585987091, -0.010623292997479439, 0.014867248944938183, 0.044851917773485184 ]
408
bitmath
__lt__
null
def __lt__(self, other): if isinstance(other, numbers.Number): return self.prefix_value < other else: return self._byte_value < other.bytes
(self, other)
[ -0.0029584176372736692, -0.0014018717920407653, -0.027362097054719925, 0.0521099790930748, 0.007289297413080931, 0.0029431681614369154, -0.013280202634632587, 0.009210743941366673, 0.015057867392897606, -0.09494821727275848, 0.04754381999373436, -0.0557350218296051, 0.05420134961605072, -0.009620304219424725, -0.03837664797902107, -0.01800321415066719, -0.029802028089761734, 0.005825337953865528, 0.028163788840174675, -0.009533163160085678, -0.016016412526369095, 0.044720470905303955, 0.02385905012488365, 0.045557018369436264, 0.021314550191164017, 0.06915464997291565, -0.0007150961901061237, -0.002183957025408745, -0.03984060510993004, 0.01880490593612194, -0.040956005454063416, -0.03384534642100334, 0.04967004805803299, -0.017149237915873528, 0.009890438988804817, -0.03921319544315338, -0.0005029636668041348, 0.007690143305808306, -0.054619625210762024, 0.0188397616147995, 0.025915564969182014, -0.05385278910398483, -0.011859812773764133, -0.028930624946951866, -0.0063699656166136265, -0.037505242973566055, -0.04918206110596657, -0.006531175691634417, 0.016948813572525978, 0.02506158873438835, 0.0006933110998943448, -0.04670727252960205, -0.008552833460271358, 0.01631268858909607, -0.10331369936466217, 0.02633383870124817, 0.03959661349654198, 0.032451096922159195, -0.08560676127672195, 0.07145515829324722, -0.028372924774885178, 0.03468189388513565, -0.014639592729508877, -0.06566902995109558, 0.005115143489092588, -0.02096598781645298, -0.05723383650183678, -0.0005508909234777093, -0.03548358380794525, 0.042001690715551376, -0.02120998129248619, 0.019589168950915337, -0.010988408699631691, 0.025357866659760475, -0.03255566582083702, 0.026560405269265175, -0.020634854212403297, 0.043918777257204056, 0.004147884901612997, -0.0258632805198431, 0.05925549566745758, -0.021279694512486458, 0.061834853142499924, -0.0038254649844020605, -0.03344449773430824, -0.018979186192154884, 0.009951437823474407, 0.034577324986457825, 0.0477181002497673, 0.010308713652193546, -0.06650558114051819, 0.04221082478761673, -0.025026733055710793, -0.010195430368185043, 0.061277154833078384, 0.019223179668188095, 0.020791707560420036, -0.002912668976932764, 0.012156090699136257, 0.003897355869412422, 0.07528933882713318, 0.04590558260679245, 0.010378425940871239, -0.030638577416539192, 0.020547714084386826, 0.017706936225295067, 0.003977960906922817, -0.0025314295198768377, -0.0356927216053009, 0.012260658666491508, -0.03740067407488823, -0.02120998129248619, -0.02926175855100155, -0.002679568249732256, 0.008487477898597717, 0.0003662621311377734, 0.03452504053711891, 0.02364991419017315, 0.03462960943579674, -0.0032154819928109646, 0.040886290371418, 0.002263472881168127, 0.04796209558844566, 0.027152959257364273, -0.05524703487753868, 0.03236395865678787, 0.0781475380063057, -0.016086123883724213, -0.05339965969324112, -0.06037089228630066, 0.0641702190041542, 0.017968356609344482, -0.013193061575293541, 0.0717340037226677, 0.04911234974861145, -0.04520845785737038, -0.010875126346945763, 0.05064602196216583, 0.040224023163318634, 0.005315566435456276, 0.007912351749837399, -0.0035379016771912575, 0.06277596950531006, -0.0464981347322464, -0.027553806081414223, 0.016730964183807373, -0.025235868990421295, 0.04262910038232803, -0.013593907468020916, 0.03546615689992905, -0.04723011702299118, 0.03557072579860687, 0.08386395126581192, -0.01108426321297884, -0.024957019835710526, 0.012234517373144627, -0.022029101848602295, -0.05552588403224945, 0.005354779772460461, -0.006535532418638468, 0.03635498881340027, 0.008287055417895317, 0.008208628743886948, -0.0625668317079544, -0.028843482956290245, -0.008984178304672241, -0.034699320793151855, -0.01852605678141117, -0.03278223052620888, 0.03070828877389431, 0.04144398868083954, -0.01256565097719431, 0.03144026920199394, 0.030638577416539192, 0.01784636080265045, -0.015667850151658058, -0.003128341631963849, 0.0392829068005085, -0.006217469926923513, 0.024608459323644638, -0.020059727132320404, 0.04538273811340332, -0.02762351743876934, -0.020024871453642845, 0.027954651042819023, -0.007690143305808306, 0.025305582210421562, 0.005302495323121548, 0.028216073289513588, 0.0004947942798025906, -0.01699238456785679, 0.018107783049345016, 0.0038777494337409735, -0.038341790437698364, 0.013184348121285439, -0.003518295008689165, 0.011824957095086575, -0.008578975684940815, 0.02432960830628872, 0.08965007960796356, -0.02417275682091713, -0.009393738582730293, 0.002214456209912896, -0.01939745992422104, 0.023876478895545006, -0.04353535920381546, -0.018229778856039047, 0.02173282392323017, 0.010117004625499249, -0.04214111343026161, -0.010535278357565403, -0.06514618545770645, 0.003494331380352378, 0.029889168217778206, 0.004753510467708111, -0.02241251990199089, -0.01904889941215515, -0.03837664797902107, -0.023876478895545006, -0.046881552785634995, 0.11244601756334305, 0.026107273995876312, -0.05580473318696022, -0.032451096922159195, 0.014282316900789738, 0.038829777389764786, -0.03055143542587757, -0.0016927028773352504, 0.0007129176519811153, 0.04294280707836151, 0.07647444307804108, 0.0013604799751192331, 0.01752394065260887, 0.01939745992422104, 0.00527199637144804, 0.027728086337447166, 0.013759474270045757, 0.029889168217778206, -0.06960777938365936, -0.024765310809016228, -0.02561928704380989, 0.038062941282987595, 0.03740067407488823, 0.03320050612092018, 0.024312181398272514, -0.10310456156730652, -0.015746276825666428, 0.014508882537484169, -0.025305582210421562, 0.07082774490118027, -0.027571232989430428, -0.04681184142827988, -0.02553214691579342, -0.02293536253273487, -0.011023265309631824, -0.025636715814471245, -0.05238882824778557, -0.08030862361192703, 0.0058122668415308, 0.020896276459097862, -0.03340964391827583, 0.012522079981863499, 0.009890438988804817, -0.03410676494240761, -0.029331469908356667, 0.008984178304672241, -0.005145642440766096, 0.035936713218688965, 0.01771564967930317, 0.048206087201833725, -0.01413417886942625, -0.06723755598068237, -0.03304365277290344, 0.06267140060663223, -0.0027405666187405586, -0.01964145340025425, 0.01727994717657566, 0.01487487182021141, -0.0037579312920570374, -0.02910490520298481, -0.005498561542481184, -0.0016774534014984965, -0.05054145306348801, -0.0781475380063057, -0.030011165887117386, 0.009899153374135494, 0.005023646168410778, -0.09808526933193207, -0.03440304473042488, -0.04782266914844513, 0.02500930428504944, 0.004228489473462105, 0.003923498094081879, -0.02333620749413967, 0.012295515276491642, -0.04594043642282486, 0.02213367074728012, 0.0016349724028259516, 0.032817088067531586, 0.04437191039323807, -0.010578848421573639, -0.03604128211736679, -0.004465947393327951, -0.006518104579299688, -0.013193061575293541, 0.008513620123267174, 0.014177748933434486, 0.03323535993695259, -0.02907004952430725, 0.01639111526310444, -0.007180371787399054, 0.06190456449985504, -0.011476395651698112, -0.044162772595882416, 0.02938375435769558, 0.057547543197870255, 0.017898645251989365, 0.04454619064927101, -0.019292892888188362, 0.06340338289737701, -0.010125718079507351, 0.06640101224184036, -0.05866293981671333, 0.007141158450394869, -0.030656004324555397, -0.03959661349654198, -0.0151362931355834, 0.006705456413328648, -0.010761843994259834, -0.0006519193993881345, -0.003823286620900035, 0.020617427304387093, 0.08525820076465607, 0.0038189294282346964, 0.01356776524335146, 0.030168019235134125, 0.05186598747968674, 0.038272079080343246, -0.02629898302257061, 0.000978151336312294, 0.030812857672572136, -0.02056514285504818, 0.017968356609344482, -0.021802537143230438, 0.017863789573311806, -0.02941861003637314, -0.031021995469927788, 0.014474025927484035, 0.011851099319756031, 0.03785380348563194, -0.05712926760315895, -0.0012711611343547702, 0.007977706380188465, -0.051134005188941956, 0.05472419410943985, -0.03586700186133385, 0.004483375232666731, -0.009576734155416489, 0.02457360178232193, 0.05200541019439697, 0.045278169214725494, -0.027362097054719925, -0.0107269873842597, -0.029993737116456032, -0.053539082407951355, -0.0042372033931314945, -0.012870642356574535, -0.0437096431851387, -0.06957292556762695, 0.04102571681141853, -0.05845380201935768, 0.002140386961400509, -0.014604737050831318, -0.054898474365472794, -0.032729946076869965, -0.04601014778017998, -0.08079661428928375, 0.04433705285191536, -0.039631471037864685, 0.01056142058223486, 0.0998280793428421, 0.025410151109099388, -0.030795428901910782, 0.047125548124313354, -0.03255566582083702, 0.018229778856039047, 0.008409052155911922, -0.028198644518852234, 0.03747038543224335, 0.05479390546679497, -0.011676818132400513, -0.015589423477649689, 0.0025880709290504456, 0.019502028822898865, -0.0031915183644741774, 0.0033178720623254776, -0.0232490673661232, -0.028895767405629158, 0.01415160670876503, -0.049530621618032455, 0.042036544531583786, 0.02040828950703144, -0.03150998055934906, 0.058314379304647446, 0.03652926906943321, -0.0018756978679448366, 0.06200913339853287, 0.025828424841165543, -0.06552960723638535, 0.06096344813704491, -0.09878239780664444, 0.0074505070224404335, 0.018578341230750084, -0.025079017505049706, -0.032817088067531586, -0.054096780717372894, -0.02405075915157795, -0.02377190999686718, -0.007115016225725412, 0.0020140332635492086, -0.025445006787776947, 0.009289170615375042, -0.026194414123892784, -0.023440776392817497, 0.005746911745518446, -0.011092977598309517, 0.02669982984662056, 0.04029373824596405, -0.04719525948166847, 0.03907376900315285, 0.040398307144641876, 0.02926175855100155, 0.06211370229721069, 0.012269373051822186, 0.04060744121670723, -0.008618189021945, -0.02120998129248619, -0.07501048594713211, 0.018944330513477325, -0.0048667932860553265, 0.0557350218296051, 0.002178510883823037, 0.05535160377621651, 0.04189712181687355, -0.03452504053711891, -0.030656004324555397, 0.01939745992422104, 0.03956175595521927, -0.02577614039182663, -0.024103043600916862, -0.019380033016204834, -0.03841150179505348, 0.014866158366203308, -0.03187597170472145, -0.019955160096287727, -0.04011945426464081, -0.06479762494564056, -0.00934145413339138, -0.028111504390835762, -0.01791607402265072, -0.029680032283067703, 0.04147884622216225, -0.03187597170472145, -0.004204526077955961, -0.06078916788101196, 0.06884094327688217, 0.008975464850664139, 0.025758711621165276, -0.014386885799467564, 0.05608358234167099, 0.007088874466717243, -0.05876750871539116, 0.0011840206570923328, 0.0020641391165554523, -0.05716412514448166, 0.06769069284200668, -0.008753256872296333, 0.0011818421771749854, 0.0006622673245146871, -0.030446868389844894, 0.02398104779422283, -0.020983416587114334, 0.024399321526288986, -0.01979830674827099, 0.054096780717372894, -0.013977325521409512, -0.051168862730264664, 0.06755126267671585, 0.006069331429898739, -0.04517360031604767, -0.0004566703282762319, 0.02269136905670166, -0.06026632338762283, 0.07051403820514679, 0.035222165286540985, 0.021628255024552345, -0.022464804351329803, 0.008151987567543983, -0.01362876407802105, 0.03949204459786415, -0.028895767405629158, 0.04172284156084061, -0.036668695509433746, 0.010378425940871239, 0.05075058713555336, 0.03795837238430977, 0.027414381504058838, 0.033932484686374664, -0.012818357907235622, 0.02192453294992447, -0.0018789656460285187, -0.020861420780420303, 0.04879864305257797, 0.051134005188941956, 0.007572503760457039, 0.02260422892868519, -0.03464703634381294, -0.012722503393888474, -0.005908121354877949, -0.01330634392797947, 0.024225041270256042, -0.014474025927484035, -0.011441539041697979, -0.11474652588367462, -0.022429948672652245, -0.015171149745583534, -0.03621556609869003, -0.03480388969182968, 0.005890693515539169, 0.001693792175501585, -0.002544500632211566, -0.045278169214725494, 0.03893434628844261, -0.00860076118260622, -0.05127343162894249, 0.0302725862711668, -0.05723383650183678, 0.05148256942629814, 0.01731480471789837, 0.009489593096077442, 0.0010402388870716095, -0.009533163160085678, 0.054619625210762024, 0.012199660763144493, -0.020425718277692795, 0.05845380201935768, -0.06863180547952652, 0.05664128065109253, -0.0384812168776989, 0.02312707155942917, -0.020146869122982025, -0.03572757914662361, 0.01852605678141117, -0.004306916147470474, 0.013750760816037655, -0.01675710640847683, -0.03663383796811104, 0.03747038543224335, 0.057547543197870255, 0.016565397381782532, 0.07312825322151184, 0.0037927874363958836, 0.04252453148365021, -0.0200423002243042, -0.08323654532432556, -0.017968356609344482, -0.024068187922239304, -0.0481015183031559, -0.008931894786655903, 0.03583214804530144, 0.028094075620174408, 0.012251945212483406, -0.0585235171020031, 0.012583078816533089, -0.013410912826657295, 0.026769541203975677, -0.05071573331952095, 0.03499559685587883, -0.0272575281560421, -0.058314379304647446, -0.018386632204055786, 0.02248223125934601, 0.04189712181687355, -0.015728848055005074, 0.04011945426464081, -0.02994145266711712, -0.008792470209300518, 0.022621655836701393, 0.021227410063147545, -0.055142465978860855, -0.051099151372909546, -0.04262910038232803, -0.017820218577980995, -0.04133942350745201, 0.003010702086612582, 0.020948560908436775, 0.011406682431697845, -0.02420761249959469, -0.04109542816877365, 0.003603257006034255, 0.0493214875459671, 0.03018544614315033, -0.006204398814588785, -0.028250928968191147, 0.053016241639852524, -0.0006840524147264659, 0.0456964448094368, -0.03876006603240967, 0.012818357907235622, -0.006744669750332832, 0.0982246994972229, 0.031335700303316116, -0.016547968611121178, -0.057756680995225906, -0.005607487168163061, -0.003224196145310998, 0.022395091131329536, -0.030899997800588608, -0.018578341230750084, 0.025479862466454506, -0.013001352548599243, 0.04161827266216278, 0.03572757914662361, 0.030115734785795212, -0.018473772332072258, -0.02938375435769558, 0.007964635267853737, 0.030847713351249695, 0.02340592071413994, -0.05758240073919296, 0.033531639724969864, -0.01828206330537796, 0.0918111652135849, -0.003977960906922817, -0.09717901051044464, -0.06382165104150772, 0.015850845724344254, 0.009001607075333595, -0.02108798548579216, 0.017070811241865158, -0.044197626411914825, -0.012461082078516483, -0.08923180401325226, 0.046567849814891815, -0.043117087334394455, -0.027292383834719658, -0.009036462754011154, -0.02694382146000862, -0.02617698721587658, -0.0068230959586799145, 0.0006257772329263389, 0.05946463346481323, 0.006295896600931883, -0.002866920316591859, -0.05580473318696022, 0.0004596657818183303, 0.020024871453642845, 0.009132317267358303, 0.023231640458106995, -0.013776903040707111, 0.009820726700127125, -0.011851099319756031, 0.02734466828405857, -0.01347191073000431, 0.0493214875459671, 0.008082275278866291, 0.06465820223093033, -0.008592046797275543, 0.018299492076039314, -0.002930097049102187, -0.06786496937274933, 0.011441539041697979, -0.04426734149456024, -0.06396108120679855, -0.018630625680088997, -0.03546615689992905, -0.0057207695208489895, -0.009071319364011288, 0.013166919350624084, -0.013140777125954628, -0.02377190999686718, 0.020251436159014702, -0.00215454725548625, 0.0066270302049815655, -0.007145515643060207, 0.008535405620932579, -0.009550591930747032, 0.043605074286460876, 0.01186852715909481, 0.006156471557915211, 0.025026733055710793, -0.010212859138846397, -0.007764212787151337, -0.0077293566428124905, -0.04942605271935463, 0.03339221328496933, 0.010256429202854633, -0.002143654739484191, -0.0184389166533947, -0.0397011823952198, 0.00992529559880495, -0.05106429383158684, 0.005468062125146389, 0.010883839800953865, -0.008792470209300518, -0.015092723071575165, -0.021262265741825104, -0.007724999450147152, 0.05287681519985199, 0.013681048527359962, -0.013750760816037655, 0.020112011581659317, -0.009114889428019524, -0.08184229582548141, -0.01675710640847683, 0.037226393818855286, 0.01727994717657566, 0.048972923308610916, 0.013332486152648926, 0.078565813601017, -0.05263282358646393, 0.007141158450394869, 0.05925549566745758, 0.026211842894554138, 0.00949830748140812, 0.058035530149936676, 0.06089373677968979, -0.06563417613506317, -0.11300371587276459, -0.012295515276491642, 0.05231911689043045, 0.07982064038515091, 0.004701226484030485, -0.019746022298932076, 0.013036209158599377, 0.03656412661075592, -0.037261251360177994, 0.00012349433382041752, 0.058349233120679855, 0.06563417613506317, 0.021541114896535873, -0.005990904755890369, 0.031405411660671234, -0.01028257142752409, 0.006269754376262426, -0.009934009052813053, 0.02666497230529785, 0.049251772463321686, -0.01712309569120407, 0.018944330513477325, 0.00039730590651743114, -0.01248722430318594, 0.005084644537419081, -0.03494331240653992, 0.04506903141736984, 0.06779525429010391, -0.031928256154060364, -0.000008841690942062996, -0.008992892690002918, -0.0440930612385273, -0.0601269006729126, 0.0028865269850939512, -0.03546615689992905, 0.050890013575553894, -0.011894669383764267, 0.01871776580810547, 0.0009111621766351163, 0.07745041698217392 ]
409
bitmath
__mul__
Multiplication: Supported operations with result types: - bm1 * bm2 = bm1 - bm * num = bm - num * bm = num (see rmul)
def __mul__(self, other): """Multiplication: Supported operations with result types: - bm1 * bm2 = bm1 - bm * num = bm - num * bm = num (see rmul) """ if isinstance(other, numbers.Number): # bm * num result = self._byte_value * other return (type(self))(bytes=result) else: # bm1 * bm2 _other = other.value * other.base ** other.power _self = self.prefix_value * self._base ** self._power return (type(self))(bytes=_other * _self)
(self, other)
[ 0.029291458427906036, -0.06039709970355034, 0.04731987789273262, 0.08942399173974991, -0.03843795508146286, -0.06512152403593063, -0.039949771016836166, -0.022771747782826424, -0.02965051494538784, 0.005773251876235008, 0.03709621727466583, 0.01043153926730156, 0.07143336534500122, 0.06285379827022552, -0.03726629540324211, 0.03635920584201813, 0.008069324307143688, -0.03494187444448471, 0.06153096258640289, 0.02186465635895729, -0.020258350297808647, 0.06818296015262604, 0.08194049447774887, 0.08133576810359955, -0.007403180003166199, 0.08186490088701248, 0.04225529357790947, -0.01898275502026081, -0.05812937393784523, -0.0026291445828974247, -0.011933906935155392, 0.005296084564179182, 0.0381355881690979, 0.03635920584201813, 0.020182760432362556, -0.03877811133861542, -0.0014503996353596449, 0.06270261853933334, -0.1330399215221405, -0.0031937139574438334, 0.023452064022421837, -0.019011102616786957, 0.03885370120406151, -0.02592766471207142, -0.009694527834653854, -0.04879390075802803, -0.024472542107105255, -0.01101736817508936, -0.03915606811642647, -0.013133912347257137, -0.0015059116994962096, -0.0389292947947979, 0.002886625938117504, 0.02335757575929165, -0.03256076201796532, 0.06447900831699371, 0.014626831747591496, 0.008508696220815182, -0.07343652099370956, 0.045883651822805405, -0.035905659198760986, 0.020126067101955414, -0.010374845936894417, -0.059905756264925, 0.02056071348488331, -0.00355985714122653, -0.04701751470565796, 0.011678787879645824, -0.019096141681075096, 0.09305234998464584, -0.022941825911402702, 0.0061795529909431934, -0.040667884051799774, 0.019483543932437897, -0.004337025806307793, 0.020881975069642067, -0.011527606286108494, 0.0007157509680837393, 0.029858389869332314, -0.013133912347257137, 0.03121902607381344, -0.01773550547659397, 0.012548083439469337, -0.04017654433846474, -0.009505551308393478, -0.015373291447758675, 0.014267775230109692, 0.018548108637332916, -0.019559135660529137, -0.05181753635406494, -0.055143535137176514, -0.05200651288032532, -0.019937090575695038, 0.03843795508146286, 0.008461452089250088, -0.000050935250328620896, -0.034904081374406815, -0.010677209123969078, -0.0069023906253278255, 0.013710292987525463, 0.0026362312491983175, 0.02365993894636631, 0.053745102137327194, -0.05079706013202667, 0.06553727388381958, -0.03308989852666855, 0.013710292987525463, -0.028592243790626526, -0.018491415306925774, 0.007762236520648003, -0.004790571052581072, 0.019247323274612427, -0.10068702697753906, -0.014655178412795067, -0.011064612306654453, 0.03991197422146797, -0.01851031184196472, -0.006760657764971256, 0.021524498239159584, 0.07793417572975159, -0.002896074904128909, -0.0025724514853209257, 0.044636402279138565, 0.007251998409628868, 0.018340233713388443, 0.03908047452569008, 0.07464597374200821, -0.04055449739098549, -0.002229930367320776, -0.020655203610658646, -0.012330759316682816, 0.05189312621951103, -0.017688261345028877, 0.10990910977125168, 0.019937090575695038, 0.03998756408691406, -0.028384368866682053, -0.0016429201932623982, 0.041045837104320526, 0.033978093415498734, -0.024170178920030594, 0.03318438678979874, 0.08655153959989548, 0.01365359965711832, -0.0412348136305809, 0.017773302271962166, 0.06447900831699371, 0.01876543089747429, -0.04803799092769623, 0.008900824002921581, -0.029215868562459946, 0.051477376371622086, 0.10885084420442581, 0.03649148717522621, 0.016762273386120796, 0.05597503483295441, 0.06659554690122604, 0.012283515185117722, -0.04002536088228226, -0.009113423526287079, 0.034979671239852905, 0.016516603529453278, -0.009321298450231552, -0.04187733680009842, 0.00824885256588459, -0.0163370743393898, 0.029064686968922615, -0.025322938337922096, 0.010885084047913551, 0.007204753812402487, 0.008196883834898472, -0.05196871608495712, 0.020296147093176842, 0.005858291871845722, 0.02668357454240322, 0.04028993099927902, -0.03129461780190468, -0.026267824694514275, 0.015278803184628487, -0.009047280997037888, 0.022204816341400146, -0.00941578671336174, -0.04614822193980217, -0.0198426004499197, 0.015212660655379295, 0.0358111709356308, 0.009798465296626091, 0.017943380400538445, 0.00550868408754468, -0.017943380400538445, 0.03945843130350113, -0.004240174777805805, -0.022450486198067665, -0.009864607825875282, 0.0017267788061872125, -0.016459910199046135, 0.005357502494007349, 0.0039071026258170605, 0.04350253939628601, 0.11021147668361664, -0.0653105080127716, -0.009472480043768883, 0.022450486198067665, 0.02335757575929165, 0.03460171818733215, -0.07884126901626587, 0.00813546683639288, 0.05393407866358757, -0.02405679225921631, -0.057789213955402374, 0.007582708261907101, 0.011263038031756878, 0.01898275502026081, 0.07483495026826859, 0.020409531891345978, 0.0071055409498512745, -0.002976390067487955, -0.029593821614980698, -0.0213922131806612, 0.005574826151132584, 0.03429935500025749, -0.012009497731924057, -0.0404789075255394, 0.03976079449057579, 0.012245719321072102, 0.03796551004052162, -0.017773302271962166, 0.043767109513282776, 0.021807963028550148, 0.019729215651750565, 0.038570236414670944, 0.005286635830998421, -0.015911877155303955, 0.019729215651750565, -0.029442640021443367, 0.0019417402800172567, 0.017338654026389122, 0.007540188264101744, -0.04920965060591698, 0.024567030370235443, -0.015543370507657528, -0.005763803143054247, 0.03641589730978012, 0.020296147093176842, -0.02708042599260807, -0.0560506246984005, -0.003985055722296238, 0.0381355881690979, -0.021807963028550148, 0.025700893253087997, 0.010166971012949944, -0.03705842047929764, 0.03312769532203674, -0.0007535464246757329, 0.047130901366472244, 0.010620515793561935, -0.0138142304494977, -0.07249163836240768, 0.010998470708727837, 0.0007612236076965928, 0.020447328686714172, 0.007686645723879337, 0.023603247478604317, -0.0026433179154992104, -0.03741747513413429, -0.03960961103439331, -0.019729215651750565, 0.04157497361302376, -0.015382740646600723, 0.06179552897810936, 0.14672186970710754, -0.02902689017355442, -0.008962241932749748, 0.016781171783804893, -0.04830256104469299, -0.02925366349518299, 0.03276863694190979, 0.09751221537590027, -0.04800019785761833, -0.07120659202337265, 0.009245707653462887, -0.015902427956461906, -0.03250407055020332, -0.057638030499219894, -0.01812290959060192, 0.05571046471595764, 0.04006315767765045, 0.010620515793561935, 0.031067844480276108, -0.02560640498995781, 0.030935559421777725, 0.03142689913511276, -0.005584274884313345, 0.011574850417673588, -0.0024307186249643564, -0.008886651135981083, -0.05102383345365524, 0.005650416947901249, 0.026834756135940552, 0.030614299699664116, -0.08609799295663834, -0.018104011192917824, 0.027042631059885025, 0.015836285427212715, -0.02575758658349514, -0.023300882428884506, 0.0902554914355278, -0.010148073546588421, 0.00478820875287056, 0.07101761549711227, 0.026910346001386642, 0.02940484508872032, -0.046412788331508636, 0.021033156663179398, 0.01944574899971485, 0.019861498847603798, 0.0467151515185833, 0.07559086382389069, 0.0029645790345966816, 0.04754665121436119, 0.018944960087537766, 0.015222109854221344, -0.013804781250655651, 0.014919746667146683, 0.008461452089250088, -0.036850545555353165, -0.057638030499219894, -0.011244140565395355, 0.018878817558288574, -0.02398120053112507, -0.06262703239917755, 0.008896099403500557, 0.029612720012664795, 0.013757537119090557, -0.019974885508418083, -0.03378911688923836, 0.0034866284113377333, -0.010752799920737743, -0.027817437425255775, -0.01296383235603571, 0.02949933335185051, -0.025738688185811043, -0.01758432388305664, -0.006996879354119301, -0.018812675029039383, 0.006562231574207544, 0.0014752029674127698, -0.01799062453210354, 0.020674100145697594, -0.021505599841475487, -0.04365372285246849, -0.06319396197795868, 0.031030049547553062, -0.018963856622576714, 0.024094587191939354, -0.021297724917531013, -0.04195292666554451, -0.0342615582048893, -0.026437904685735703, -0.005461439955979586, 0.044485222548246384, 0.018850471824407578, 0.001631109043955803, -0.000934846349991858, -0.018104011192917824, -0.011414220556616783, -0.03666156902909279, -0.008811059407889843, -0.02411348558962345, -0.011773277074098587, -0.002141347387805581, -0.033656831830739975, -0.05336714908480644, -0.0009472480160184205, -0.02326308749616146, 0.030954457819461823, -0.09441298991441727, 0.04800019785761833, -0.03836236149072647, -0.010951225645840168, 0.02817649394273758, -0.037625350058078766, -0.048529334366321564, 0.02420797385275364, 0.026211131364107132, 0.035206444561481476, 0.014324468560516834, -0.014995337463915348, -0.0026433179154992104, 0.07290738821029663, -0.00801735557615757, -0.00930712465196848, 0.017726056277751923, -0.039269451051950455, -0.06909004598855972, 0.018396925181150436, 0.006689791101962328, -0.015581166371703148, -0.08299876749515533, -0.06122859939932823, 0.01602526195347309, 0.02972610667347908, -0.047660037875175476, 0.03360013663768768, 0.00020890834275633097, -0.017574874684214592, 0.009392164647579193, 0.024850495159626007, -0.05325376242399216, 0.02483159862458706, -0.062211278825998306, -0.0412726104259491, -0.021656781435012817, -0.010148073546588421, -0.021581191569566727, -0.03830567002296448, 0.023319780826568604, -0.0987972542643547, 0.021996941417455673, 0.06784279644489288, 0.03788992017507553, 0.030614299699664116, 0.04527892544865608, -0.016998495906591415, -0.01689455844461918, -0.038400158286094666, 0.02660798281431198, 0.012907139956951141, -0.051477376371622086, 0.03165367245674133, -0.007540188264101744, -0.01775440387427807, 0.023943405598402023, 0.0024141832254827023, 0.0428222231566906, -0.06111521273851395, -0.020976463332772255, -0.012888241559267044, -0.0016122113447636366, -0.014173286966979504, 0.03339226171374321, 0.005877189338207245, -0.01151815801858902, -0.027798539027571678, -0.027496175840497017, -0.09358149021863937, 0.03671826049685478, 0.0069685326889157295, -0.07952158898115158, -0.0018200862687081099, -0.00408426858484745, 0.014948093332350254, 0.059414416551589966, -0.05083485320210457, 0.08163812756538391, -0.01976701058447361, -0.0044008055701851845, -0.05208210274577141, 0.04108363389968872, -0.012897690758109093, -0.0358111709356308, -0.01727251149713993, -0.003977969288825989, 0.02086307853460312, -0.0443718358874321, 0.03454502299427986, 0.0653105080127716, -0.008404758758842945, 0.012264617718756199, 0.04520333558320999, 0.026589086279273033, 0.005291360430419445, 0.030330833047628403, 0.03278753533959389, -0.010261459276080132, -0.0034842663444578648, -0.05321596562862396, -0.011952805332839489, -0.012330759316682816, -0.0871562659740448, 0.01467407587915659, -0.03278753533959389, 0.04830256104469299, -0.028346573933959007, 0.014900848269462585, -0.0018968582153320312, 0.04645058512687683, 0.040592294186353683, 0.07014831900596619, -0.004577971529215574, -0.03698283061385155, 0.07974836230278015, -0.0012082726461812854, 0.021845759823918343, -0.07838772237300873, 0.018104011192917824, -0.027363892644643784, 0.004367734305560589, -0.01470242254436016, 0.009094525128602982, 0.0008019718225114048, 0.009826811961829662, -0.05975457653403282, -0.015269353985786438, 0.05892307683825493, 0.03399699181318283, -0.02248828113079071, 0.002024417743086815, -0.013445724733173847, 0.024491438642144203, -0.07438141107559204, -0.021694578230381012, -0.02056071348488331, 0.004192930646240711, 0.0020610319916158915, 0.010044136084616184, -0.018633147701621056, 0.005697661079466343, -0.01287879329174757, -0.056768737733364105, 0.05219548940658569, 0.019313465803861618, -0.07014831900596619, -0.028195392340421677, -0.009864607825875282, -0.030614299699664116, -0.08428381383419037, -0.034677308052778244, 0.025115063413977623, 0.0009236258338205516, -0.044334039092063904, -0.025644199922680855, -0.018642596900463104, 0.010686658322811127, -0.06334514170885086, -0.020485123619437218, -0.037700943648815155, 0.026437904685735703, 0.027288300916552544, -0.0061134109273552895, -0.010847289115190506, 0.02615443803369999, 0.01696069911122322, -0.008182710967957973, -0.03516864776611328, 0.04648837819695473, -0.043389156460762024, 0.035149749368429184, 0.03976079449057579, -0.029007993638515472, -0.027987517416477203, -0.03169146925210953, -0.010781146585941315, 0.07143336534500122, 0.05846953019499779, 0.00711971428245306, 0.03378911688923836, 0.014126041904091835, 0.001844889484345913, 0.023678837344050407, 0.022393792867660522, 0.020504022017121315, 0.040894657373428345, -0.023055212572216988, -0.03930724784731865, -0.01688510924577713, -0.023546554148197174, 0.018226847052574158, 0.01775440387427807, -0.009987442754209042, -0.016450461000204086, 0.02008827216923237, 0.028762323781847954, -0.00824885256588459, 0.008744917809963226, 0.004670097958296537, -0.04210411012172699, 0.0012980367755517364, -0.005499235354363918, -0.02777964249253273, -0.023055212572216988, 0.040516700595617294, 0.0016122113447636366, -0.029064686968922615, 0.027439482510089874, -0.051250603049993515, -0.0428222231566906, -0.031389106065034866, 0.025587506592273712, 0.011414220556616783, -0.020428430289030075, -0.039420634508132935, -0.010620515793561935, -0.0009661457152105868, -0.013237849809229374, 0.016242586076259613, -0.048529334366321564, 0.016941802576184273, -0.005730732344090939, 0.0047669485211372375, 0.019096141681075096, -0.022129224613308907, 0.02715601772069931, -0.011452015489339828, 0.02895130030810833, 0.02513396181166172, -0.04769783467054367, -0.0032102493569254875, 0.012151231057941914, -0.01697014831006527, 0.03904268145561218, 0.024718211963772774, 0.010355948470532894, 0.022752849385142326, -0.00341339991427958, -0.03628361225128174, -0.05480337515473366, 0.004998445510864258, -0.012056742794811726, 0.00741262873634696, -0.09146494418382645, 0.05151517316699028, -0.0513639897108078, -0.007341762538999319, -0.028535550460219383, -0.0010813036933541298, -0.0229607243090868, -0.02583317644894123, 0.032579660415649414, -0.0024803250562399626, -0.0015330772148445249, 0.02638121135532856, 0.07823654264211655, -0.012623674236238003, -0.019880397245287895, -0.05091044679284096, 0.01334178727120161, 0.043691519647836685, -0.017452040687203407, 0.050230126827955246, 0.006212623789906502, -0.011404771357774734, -0.06557507067918777, -0.02592766471207142, -0.03050091303884983, -0.016365421935915947, -0.03711511194705963, -0.04807578772306442, 0.0014303207863122225, 0.006538609508424997, -0.06103961914777756, 0.03635920584201813, 0.024926086887717247, -0.0007305148174054921, 0.01937015913426876, -0.03469620645046234, 0.00244252965785563, -0.0027118222787976265, -0.00039567091153003275, 0.009037832729518414, -0.05306478589773178, -0.03377021849155426, -0.019974885508418083, -0.0030874141957610846, -0.007696094457060099, -0.013058321550488472, 0.020655203610658646, -0.033902499824762344, -0.00899531226605177, 0.002050402108579874, 0.010100828483700752, 0.014655178412795067, -0.04259544983506203, -0.0591498501598835, -0.05828055366873741, 0.018491415306925774, 0.020655203610658646, -0.032730843871831894, 0.013918166980147362, 0.024264667183160782, -0.018699290230870247, -0.006552782841026783, -0.03547101095318794, 0.05034351348876953, -0.01603471115231514, 0.006703964434564114, -0.012793753296136856, 0.07264281809329987, -0.052649036049842834, -0.08685389906167984, 0.02551191672682762, -0.009968545287847519, 0.021430009976029396, -0.014456752687692642, -0.0802019014954567, 0.053896285593509674, -0.028441062197089195, -0.05185532942414284, 0.00041309226071462035, 0.0018956770654767752, -0.022544974461197853, -0.029215868562459946, -0.0023669388610869646, -0.03511195629835129, -0.000188534235348925, 0.03696393221616745, -0.02949933335185051, -0.01303942408412695, 0.04505215212702751, -0.009094525128602982, 0.0025393804535269737, 0.07090422511100769, 0.009354368783533573, -0.044485222548246384, 0.011896112002432346, 0.01116854976862669, -0.01038429420441389, 0.07249163836240768, -0.007710267789661884, 0.06708689033985138, -0.05393407866358757, 0.018633147701621056, 0.08519089967012405, 0.003085052128881216, -0.02575758658349514, 0.024000098928809166, 0.004837815184146166, -0.02528514340519905, 0.008617358282208443, 0.03259855881333351, 0.0005506912129931152, 0.05820496380329132, 0.016847312450408936, -0.028044208884239197, -0.03414817154407501, -0.04240647330880165, -0.009037832729518414, -0.05548369139432907, 0.038003306835889816, -0.003108674194663763, -0.0676916167140007, -0.0008385861292481422, 0.01883157342672348, 0.028781220316886902, -0.0482269711792469, 0.006708689033985138, 0.0037677320651710033, 0.05869630351662636, 0.038097795099020004, 0.004247261676937342, 0.02093866840004921, -0.01358745712786913, -0.008211057633161545, 0.006467743311077356, 0.09373266994953156, -0.00012667375267483294, 0.04063008725643158, -0.018340233713388443, 0.0025795381516218185, -0.04490097239613533, -0.04645058512687683, 0.012614225037395954, 0.032730843871831894, 0.025020575150847435, -0.053026989102363586, -0.0004166355647612363, 0.012179577723145485, 0.02335757575929165 ]
410
bitmath
__ne__
null
def __ne__(self, other): if isinstance(other, numbers.Number): return self.prefix_value != other else: return self._byte_value != other.bytes
(self, other)
[ 0.009809257462620735, 0.008262277580797672, -0.0008525967714376748, 0.06398870795965195, -0.05808205530047417, -0.03702203556895256, -0.07052820920944214, 0.033471014350652695, 0.05196445435285568, -0.064094178378582, 0.046725817024707794, -0.0362837053835392, 0.03572116792201996, -0.032732684165239334, -0.03162518888711929, -0.003414781764149666, -0.024804413318634033, 0.033488593995571136, 0.04254193976521492, -0.02902344800531864, -0.036529816687107086, 0.05966419354081154, 0.016981618478894234, 0.09401417523622513, 0.007247072644531727, 0.06001577898859978, -0.0019622910767793655, 0.00930824689567089, -0.028777338564395905, 0.04254193976521492, -0.04320995509624481, -0.04985493794083595, 0.05882038548588753, 0.0253142137080431, 0.06043768301606178, -0.01538190059363842, -0.023081639781594276, 0.0449678860604763, -0.10245224833488464, -0.0012129726819694042, 0.026386551558971405, -0.03691656142473221, 0.0029159688856452703, 0.012349468655884266, -0.002584159141406417, -0.04380765184760094, -0.01868681237101555, -0.0012107753427699208, -0.03972925245761871, 0.06708266586065292, -0.0078096105717122555, -0.010723382234573364, -0.01647181808948517, 0.06989535689353943, -0.06989535689353943, 0.025437267497181892, 0.03934250771999359, 0.034297242760658264, -0.08466198295354843, 0.07854437828063965, -0.06493798643350601, 0.03941282257437706, 0.012305520474910736, -0.1088511198759079, -0.004592596087604761, 0.0021996118593961, -0.037725210189819336, -0.008530362509191036, -0.015724696218967438, 0.06687171012163162, -0.042401306331157684, 0.0060560740530490875, -0.002351233270019293, 0.04690160974860191, -0.0040564266964793205, -0.011672665365040302, 0.023450804874300957, 0.09823320806026459, -0.02025137096643448, -0.04208488017320633, 0.0355277955532074, -0.022624578326940536, 0.03842838108539581, -0.0036718794144690037, -0.041205912828445435, 0.019179033115506172, 0.019864626228809357, 0.03751425817608833, 0.05178866162896156, -0.004227824974805117, -0.06033220887184143, -0.0056825135834515095, -0.01188361644744873, -0.04915176331996918, 0.06163307651877403, 0.04025663062930107, 0.0014085426228120923, -0.03269752487540245, 0.02274763397872448, -0.024734096601605415, 0.057414039969444275, 0.039377663284540176, 0.01786058396100998, -0.032047089189291, 0.038744810968637466, 0.006051679141819477, 0.0008926995797082782, -0.02865428291261196, -0.029357455670833588, 0.01768479123711586, -0.05284341797232628, 0.0309571735560894, -0.046374231576919556, -0.006706508342176676, 0.011083757504820824, -0.0065658739767968655, 0.009088505990803242, 0.025947067886590958, 0.018563756719231606, -0.006693324074149132, 0.04169813543558121, 0.04862438514828682, -0.006614217069000006, 0.014845731668174267, 0.031449392437934875, 0.012692265212535858, 0.06891091167926788, 0.012270361185073853, -0.007765662390738726, -0.027705000713467598, 0.05400365591049194, 0.02394302561879158, -0.0036564974579960108, 0.07052820920944214, 0.036037594079971313, 0.05333564057946205, 0.007088858634233475, 0.01757931523025036, 0.0078227948397398, -0.016911299899220467, -0.005937413312494755, 0.008587495423853397, 0.08170865476131439, 0.009651043452322483, -0.0023951816838234663, 0.07523946464061737, -0.06384807080030441, 0.03902607783675194, -0.015584062784910202, -0.003744394052773714, -0.062476884573698044, 0.039272189140319824, 0.0703875795006752, 0.011848458088934422, -0.052737943828105927, 0.035211365669965744, 0.0015590654220432043, -0.0056165908463299274, -0.010213581845164299, 0.013149327598512173, 0.034771885722875595, 0.03157244995236397, 0.04788605123758316, -0.05755467712879181, -0.014898468740284443, -0.01935482583940029, -0.0229234267026186, -0.032556891441345215, -0.009035767987370491, 0.0357387475669384, 0.007409681100398302, -0.010336636565625668, 0.008315015584230423, 0.050698742270469666, 0.009756519459187984, 0.014951206743717194, 0.009466460905969143, -0.0013184485724195838, -0.0399753600358963, 0.023046482354402542, -0.010064157657325268, 0.008692971430718899, -0.039096396416425705, -0.007497577462345362, 0.05924228951334953, 0.0027841238770633936, 0.00038564621354453266, -0.005265004932880402, 0.031713083386421204, -0.005620985757559538, -0.001817261683754623, 0.02561306208372116, 0.004106967244297266, -0.0175968948751688, 0.04015115648508072, -0.04292868450284004, 0.041662976145744324, -0.001556868082843721, 0.023837551474571228, 0.05987514555454254, -0.0175968948751688, -0.03202950954437256, -0.013439386151731014, -0.026720557361841202, -0.03433240205049515, -0.07805215567350388, -0.031713083386421204, 0.023239854723215103, 0.009035767987370491, -0.018721969798207283, 0.009791677817702293, -0.03582664206624031, 0.05569126829504967, 0.051718343049287796, 0.0373736247420311, -0.02081390842795372, -0.006579058710485697, -0.0012107753427699208, -0.017992429435253143, 0.012217624112963676, 0.08747466653585434, 0.012393416836857796, -0.015504955314099789, -0.021868666633963585, -0.010705802589654922, 0.048765018582344055, -0.0011679257731884718, 0.027476469054818153, 0.040748849511146545, 0.0008861073292791843, 0.04110043868422508, 0.037901002913713455, -0.020233791321516037, 0.019847046583890915, 0.020321687683463097, 0.012410996481776237, -0.007712924387305975, -0.0020919383969157934, -0.031449392437934875, -0.0054012443870306015, -0.03202950954437256, -0.029726620763540268, 0.010846436955034733, 0.031994353979825974, 0.045987486839294434, -0.05846880003809929, 0.006007730960845947, 0.058152373880147934, -0.003447743132710457, 0.04679613560438156, 0.0024654988665133715, -0.05031199753284454, -0.028056586161255836, -0.01202425081282854, 0.03396323695778847, -0.024259453639388084, -0.07133685797452927, -0.045073363929986954, 0.05762499198317528, 0.023046482354402542, -0.04226067289710045, -0.009554357267916203, 0.0045310682617127895, -0.024980206042528152, -0.02570095844566822, 0.00797221902757883, -0.010978282429277897, 0.04173329472541809, 0.027652261778712273, 0.0307462215423584, 0.014625989831984043, -0.0690867081284523, -0.010152054019272327, 0.04050274193286896, -0.01859891414642334, -0.012472523376345634, 0.033277641981840134, 0.0010410250397399068, 0.0021688479464501143, -0.024452826008200645, 0.019460301846265793, 0.007356943096965551, -0.005467166658490896, -0.09317036718130112, 0.0016129021532833576, 0.031009910628199577, 0.02505052275955677, -0.07868501543998718, -0.012076988816261292, -0.04155749827623367, 0.04036210477352142, -0.015891700983047485, 0.014784203842282295, 0.00573525158688426, -0.011241971515119076, -0.009193981997668743, 0.0053001632913947105, -0.0003807020257227123, 0.005849516950547695, 0.03726814687252045, -0.013843710534274578, 0.0012173675931990147, -0.033752284944057465, -0.025911910459399223, 0.012068199925124645, -0.006710903253406286, 0.046374231576919556, 0.06676623970270157, 0.022624578326940536, 0.029128924012184143, 0.009317036718130112, 0.03529926389455795, 0.0010377289727330208, -0.010090526193380356, 0.03663529083132744, 0.08227119594812393, 0.05590222030878067, 0.02568337880074978, -0.026755716651678085, 0.09274846315383911, 0.016876142472028732, 0.04422955587506294, -0.07523946464061737, 0.008732524700462818, -0.0495385080575943, -0.05987514555454254, -0.03638917952775955, 0.0328030027449131, -0.030060628429055214, 0.018845025449991226, -0.008033746853470802, -0.02025137096643448, 0.05600769817829132, -0.005405639298260212, 0.02248394303023815, -0.014353509992361069, 0.026509607210755348, 0.01877470873296261, 0.006108812056481838, 0.012437365017831326, 0.027687421068549156, -0.02374965324997902, 0.01451172400265932, -0.05038231611251831, -0.01289442740380764, -0.020567798987030983, -0.06469187885522842, 0.015504955314099789, 0.050522949546575546, 0.06630917638540268, -0.026263495907187462, 0.01684977300465107, 0.02359144017100334, -0.014845731668174267, 0.052808262407779694, -0.011118916794657707, -0.014335931278765202, 0.006315368693321943, -0.00019694326329044998, 0.022993743419647217, -0.007523946464061737, 0.005137554835528135, 0.01321085449308157, -0.002417155774310231, -0.023784812539815903, -0.031009910628199577, -0.03558053448796272, -0.032627206295728683, -0.07052820920944214, 0.006073653232306242, -0.07369248569011688, -0.040854327380657196, -0.03252173215150833, -0.06943829357624054, -0.00398391205817461, -0.05516389012336731, -0.08107580244541168, 0.015197317115962505, -0.022132357582449913, -0.0179748497903347, 0.06838353723287582, -0.010415744036436081, -0.07369248569011688, 0.03529926389455795, -0.008262277580797672, 0.03224046155810356, 0.01693766936659813, -0.005708882585167885, 0.014836941845715046, 0.055937379598617554, -0.012463734485208988, -0.03294363617897034, 0.018089115619659424, 0.013632758520543575, -0.01916145347058773, 0.0017535366350784898, -0.06620369851589203, -0.039166711270809174, -0.045354630798101425, -0.03584422171115875, 0.020673273131251335, 0.03197677433490753, -0.04957366734743118, 0.07031726092100143, 0.050241682678461075, 0.03811195492744446, 0.03856901451945305, 0.009510409086942673, -0.023802392184734344, 0.024839570745825768, -0.05147223174571991, -0.0375845730304718, 0.010837647132575512, -0.027388572692871094, -0.009062136523425579, -0.029884835705161095, -0.02496262639760971, -0.06869996339082718, 0.03621338680386543, -0.007343758828938007, -0.027740158140659332, 0.006486766971647739, 0.01750020682811737, -0.023890288546681404, 0.002166650490835309, -0.007383312098681927, 0.008495204150676727, -0.000695481663569808, -0.03500041365623474, 0.06715298444032669, -0.012059410102665424, -0.027845634147524834, 0.06254719942808151, 0.0022226846776902676, 0.036529816687107086, -0.021956564858555794, -0.020040418952703476, -0.10118653625249863, 0.005414429120719433, 0.017649631947278976, 0.0035224552266299725, 0.0015326965367421508, 0.01840554177761078, 0.01665640063583851, -0.013307541608810425, -0.0061571551486849785, 0.03241625800728798, 0.042788051068782806, 0.017465049400925636, 0.008521572686731815, -0.02090180478990078, -0.036705609411001205, -0.04468661919236183, -0.05298405513167381, -0.008341385051608086, -0.052737943828105927, -0.08079452812671661, -0.016067493706941605, -0.005225451197475195, -0.028865234926342964, -0.05850395932793617, 0.04528431594371796, -0.0819196030497551, -0.016313603147864342, -0.04837827384471893, 0.0625823587179184, 0.033769864588975906, 0.00898302998393774, 0.007985403761267662, 0.0632152184844017, -0.022958584129810333, -0.06704750657081604, 0.007326179184019566, 0.0024830782786011696, -0.03011336550116539, 0.05210508778691292, -0.02229057066142559, 0.008609469048678875, -0.0175968948751688, -0.04299900308251381, 0.0057616205886006355, 0.011778140440583229, -0.01409861072897911, -0.054741986095905304, 0.04528431594371796, -0.02817964181303978, -0.03730330616235733, 0.02513841912150383, 0.04412407800555229, -0.026949089020490646, -0.006205498240888119, -0.009053346700966358, -0.068453848361969, 0.05646475777029991, 0.052737943828105927, -0.015461007133126259, -0.015909280627965927, 0.012595579028129578, 0.0004304185276851058, 0.017465049400925636, -0.04271773621439934, 0.05178866162896156, -0.03930734843015671, -0.003058800706639886, 0.031554870307445526, -0.01026631984859705, 0.004254193976521492, 0.043702177703380585, -0.02993757277727127, 0.018634073436260223, -0.010187212377786636, 0.012569209560751915, 0.047745417803525925, 0.04145202413201332, 0.011329867877066135, 0.02007557824254036, -0.03726814687252045, -0.04872985929250717, -0.020761171355843544, -0.019829466938972473, 0.02485715039074421, 0.00653950497508049, -0.0497494600713253, -0.06296910345554352, -0.03241625800728798, 0.0027291886508464813, -0.07376280426979065, -0.034402716904878616, 0.002533618826419115, -0.049327556043863297, -0.01288563758134842, -0.03656497597694397, 0.0375845730304718, -0.010609116405248642, -0.052737943828105927, 0.0026610686909407377, -0.012006672099232674, 0.020374424755573273, 0.03839322179555893, 0.04141686484217644, -0.024698937311768532, 0.003950951155275106, 0.026105282828211784, 0.0010399263119325042, -0.05305436998605728, 0.0821305587887764, -0.032644785940647125, 0.05435524135828018, -0.0078096105717122555, 0.04419439658522606, -0.016041124239563942, -0.03260963037610054, 0.050241682678461075, -0.01648060791194439, 0.05017136409878731, 0.03638917952775955, -0.030095785856246948, 0.06602790206670761, 0.04050274193286896, 0.010784909129142761, 0.03800647705793381, -0.025191158056259155, 0.07390344142913818, -0.04602264612913132, -0.06254719942808151, 0.00019817930296994746, -0.00635492242872715, -0.07791152596473694, 0.014863310381770134, 0.05966419354081154, -0.007985403761267662, 0.008996214717626572, -0.05066358298063278, 0.012076988816261292, -0.004366262350231409, 0.025947067886590958, -0.03480704128742218, 0.013105379417538643, -0.017895741388201714, -0.09654559940099716, -0.0160235445946455, 0.0013283370062708855, 0.028935551643371582, -0.027388572692871094, 0.03456093370914459, -0.009106084704399109, -0.025841591879725456, 0.0006191214779391885, 0.04134654626250267, -0.02854880690574646, -0.005216661840677261, -0.007985403761267662, 0.02070843242108822, -0.08051326125860214, -0.009097294881939888, 0.035510215908288956, 0.005906649865210056, -0.013184485957026482, -0.008328200317919254, 0.019108714535832405, 0.03326006233692169, 0.0284609105437994, -0.0054891412146389484, -0.03645949810743332, 0.03783068433403969, 0.01567195914685726, -0.02559548243880272, -0.008433676324784756, 0.027757737785577774, -0.01026631984859705, 0.06771551817655563, 0.05526936426758766, -0.01822974905371666, -0.07028210163116455, 0.007844769395887852, -0.007326179184019566, 0.008464439772069454, -0.013826130889356136, -0.08374785631895065, 0.04946819320321083, -0.037725210189819336, 0.030324317514896393, -0.013685496523976326, 0.013131747953593731, -0.054214607924222946, -0.04053790122270584, 0.012384627014398575, 0.029726620763540268, -0.0016216917429119349, -0.025736115872859955, 0.002068865578621626, -0.012243992649018764, 0.012648317031562328, 0.01704314537346363, -0.09113116562366486, -0.06986019760370255, -0.006855932530015707, 0.020110735669732094, -0.019108714535832405, 0.061000220477581024, -0.022730054333806038, 0.0017447469290345907, -0.07657549530267715, 0.05224572494626045, -0.08227119594812393, -0.04908144474029541, 0.02007557824254036, -0.03566842898726463, -0.04640939086675644, -0.012164886109530926, -0.02227299101650715, 0.06493798643350601, 0.012340678833425045, -0.028935551643371582, -0.041487183421850204, 0.016524555161595345, 0.03941282257437706, 0.03698687627911568, 0.01432714145630598, -0.028935551643371582, 0.025753695517778397, -0.027388572692871094, -0.00501889456063509, -0.015047892928123474, 0.04015115648508072, 0.008306225761771202, 0.08051326125860214, -0.02374965324997902, 0.04134654626250267, -0.038920603692531586, -0.06107053905725479, 0.026826033368706703, -0.05495293810963631, -0.06071895360946655, -0.014757834374904633, -0.03260963037610054, -0.010670644231140614, 0.01183087844401598, 0.014740255661308765, 0.0048255217261612415, -0.059171974658966064, -0.007124017458409071, -0.0034675197675824165, -0.0181418526917696, -0.0068471431732177734, 0.036881402134895325, -0.0069394344463944435, 0.04015115648508072, 0.01905597746372223, -0.034121450036764145, 0.00259954109787941, -0.04015115648508072, 0.0007344857440330088, 0.03849869966506958, 0.0008416096679866314, 0.028759758919477463, -0.00005816281191073358, -0.0005358944181352854, -0.012964744120836258, -0.007167965639382601, 0.0010047677205875516, -0.03849869966506958, 0.007444839924573898, 0.0013755813706666231, 0.002375404816120863, -0.009615885093808174, -0.022343309596180916, -0.022888267412781715, 0.030166104435920715, 0.0014052464393898845, -0.04567106068134308, 0.03139665722846985, -0.025824014097452164, -0.08353690057992935, -0.039940204471349716, 0.03948314115405083, 0.022519102320075035, 0.030605586245656013, -0.006324158515781164, 0.02993757277727127, -0.03600243479013443, 0.011672665365040302, 0.0458468534052372, 0.03839322179555893, 0.003153289668262005, 0.025437267497181892, 0.0039641354233026505, -0.06325037777423859, -0.051612868905067444, -0.012094568461179733, 0.047112561762332916, 0.07966945320367813, -0.006231867242604494, -0.013395437970757484, -0.0058758859522640705, 0.010442112572491169, -0.02800384908914566, 0.0010767329949885607, 0.00911487452685833, 0.04531947150826454, 0.007062489632517099, -0.0013777788262814283, 0.052808262407779694, 0.01279774121940136, -0.023433227092027664, 0.028601545840501785, 0.008508387953042984, 0.05147223174571991, -0.01054758857935667, -0.021499501541256905, 0.029990309849381447, -0.005700092762708664, 0.005265004932880402, -0.008126038126647472, 0.058152373880147934, 0.04602264612913132, 0.0012832899810746312, 0.0026830427814275026, -0.003496086224913597, -0.03870965167880058, -0.04633907228708267, 0.018845025449991226, 0.018440701067447662, 0.0384635403752327, -0.0482376404106617, 0.025947067886590958, -0.005568247754126787, 0.05498809739947319 ]
411
bitmath
__neg__
The negative version of this instance
def __neg__(self): """The negative version of this instance""" return (type(self))(-abs(self.prefix_value))
(self)
[ 0.02878359518945217, -0.0022634295746684074, 0.08594727516174316, 0.0073219952173531055, -0.020276295021176338, -0.03755990043282509, -0.011567238718271255, -0.004112842958420515, 0.0428055115044117, -0.05420462042093277, -0.028850845992565155, 0.017149103805422783, 0.046638838946819305, -0.031725842505693436, -0.029052600264549255, 0.05719730630517006, -0.01116373110562563, -0.004837896674871445, 0.020595738664269447, -0.005270827561616898, 0.03349119424819946, -0.0065149785950779915, -0.00915459543466568, 0.023941494524478912, 0.0035475108306854963, 0.02940567024052143, -0.025639591738581657, -0.02426093816757202, -0.027690760791301727, -0.03957744315266609, -0.024529945105314255, -0.009339536540210247, 0.029842805117368698, -0.00021712217130698264, 0.03523973003029823, -0.06573823094367981, -0.05618853494524956, 0.047277726233005524, -0.10524842888116837, 0.028716344386339188, 0.043948784470558167, -0.062173910439014435, -0.006565417163074017, -0.010819067247211933, 0.004493233747780323, 0.0016886403318494558, 0.019923225045204163, -0.0270350594073534, -0.014526300132274628, -0.02532014809548855, 0.035844992846250534, 0.03567686304450035, 0.031120581552386284, -0.0029548578895628452, -0.09549697488546371, 0.07565781474113464, 0.051380060613155365, 0.05756719037890434, -0.073976531624794, 0.057634443044662476, -0.04485667869448662, 0.06079525873064995, -0.009717825800180435, -0.07787711173295975, 0.0213018786162138, -0.0013439770555123687, -0.03712276741862297, -0.009179814718663692, 0.0017863650573417544, 0.05904671922326088, -0.011794212274253368, -0.031843531876802444, -0.00134923099540174, 0.04596632346510887, 0.0697396919131279, -0.06543560326099396, 0.0020059829112142324, 0.00656121363863349, 0.0034655481576919556, -0.048488251864910126, -0.042200248688459396, -0.005611287895590067, 0.033592067658901215, 0.01007089577615261, -0.011911902576684952, -0.035542361438274384, 0.029590612277388573, -0.026715613901615143, 0.04647070914506912, 0.03715639188885689, -0.07168998569250107, -0.012248159386217594, -0.013038363307714462, -0.03742539882659912, 0.02612716518342495, 0.03645025193691254, -0.0004119147779420018, -0.07411102950572968, 0.022478777915239334, -0.0355759859085083, 0.07088296860456467, 0.10302913188934326, 0.01634208858013153, -0.00935634970664978, 0.04939614608883858, 0.007036176510155201, -0.01614874042570591, -0.05440637469291687, 0.005228795576840639, 0.033272624015808105, -0.0012767256703227758, 0.017115479335188866, -0.035643238574266434, -0.01392944436520338, -0.025555528700351715, -0.04357890039682388, -0.0023159696720540524, 0.02982599101960659, 0.007485920563340187, 0.03645025193691254, 0.02858184091746807, 0.012164095416665077, -0.0424020029604435, 0.004690784495323896, -0.011373891495168209, 0.04875725880265236, 0.024244125932455063, 0.0019713062793016434, 0.0062543791718780994, 0.006502368953078985, 0.0025996866170316935, -0.013483903370797634, -0.01770392805337906, 0.05810520052909851, -0.004547875374555588, 0.02745538018643856, 0.09818702936172485, 0.06590636074542999, -0.01229859795421362, 0.08850283175706863, 0.04596632346510887, 0.016619499772787094, 0.07364027202129364, -0.0025471465196460485, -0.01645137183368206, 0.06358619034290314, -0.0053632985800504684, 0.0846022516489029, -0.02160451002418995, 0.013147646561264992, -0.018645448610186577, 0.032230228185653687, 0.07599407434463501, 0.0302463136613369, 0.0426037572324276, 0.0015383755089715123, -0.010314681567251682, -0.033877886831760406, 0.0015593916177749634, -0.021369129419326782, -0.010785441845655441, 0.03308768570423126, 0.0076162200421094894, -0.07807886600494385, -0.0035306978970766068, -0.0027993391267955303, 0.04976603016257286, -0.0046025170013308525, -0.009726231917738914, 0.011432736180722713, -0.03645025193691254, -0.06520022451877594, -0.03391151502728462, 0.04875725880265236, -0.012996330857276917, 0.03692101314663887, 0.02365567721426487, 0.0612996406853199, -0.02819514460861683, 0.03105332888662815, 0.031423211097717285, 0.018662260845303535, -0.07787711173295975, -0.05255696177482605, 0.06617537140846252, -0.003976238425821066, 0.024126436561346054, 0.004058200865983963, 0.00792725756764412, 0.007187492214143276, -0.014795306138694286, 0.01798974722623825, 0.020595738664269447, 0.004728613421320915, 0.012517165392637253, -0.020511673763394356, -0.021217813715338707, 0.00686384504660964, 0.024244125932455063, 0.014072353020310402, -0.020646177232265472, 0.043747030198574066, 0.010045676492154598, -0.015972204506397247, 0.005035447888076305, -0.0019177154172211885, -0.01320649217814207, -0.004606720060110092, -0.09751451760530472, -0.013904225081205368, -0.00843584630638361, -0.007141257170587778, 0.032751426100730896, -0.0037303506396710873, 0.014786899089813232, -0.05087567865848541, -0.015005466528236866, 0.01269370038062334, -0.015106343664228916, 0.07068121433258057, 0.05215345323085785, -0.044184163212776184, -0.0024147452786564827, -0.016426151618361473, 0.031423211097717285, 0.03086838871240616, -0.005670133046805859, -0.025757282972335815, 0.0018693784950301051, 0.01198756042867899, 0.020343545824289322, -0.00904531218111515, -0.03712276741862297, -0.024294564500451088, -0.005371704697608948, 0.05575140193104744, 0.0050858864560723305, 0.04290638864040375, -0.042940013110637665, -0.009213440120220184, -0.036046743392944336, 0.013265336863696575, 0.016426151618361473, 0.06415782868862152, 0.015324910171329975, -0.010457591153681278, 0.05077480152249336, 0.047983866184949875, -0.01862863451242447, 0.023941494524478912, 0.0129122668877244, -0.027808450162410736, -0.00924706645309925, 0.03322218731045723, 0.0663098692893982, -0.03661838173866272, -0.060526251792907715, -0.02716956101357937, 0.013853786513209343, 0.006695716641843319, -0.04216662049293518, -0.055482398718595505, -0.004304089117795229, -0.0532631017267704, -0.022579655051231384, 0.03325581178069115, -0.002330681076273322, -0.0011159527348354459, -0.009608542546629906, 0.06684788316488266, 0.05195169895887375, -0.07424553483724594, -0.04949702322483063, -0.004795864690095186, -0.011432736180722713, 0.02685011737048626, -0.0017044023843482137, 0.010667751543223858, -0.007851599715650082, -0.013164459727704525, 0.007364027202129364, 0.003885869402438402, -0.014896183274686337, -0.04310814291238785, -0.012416288256645203, 0.02817833237349987, 0.011491580866277218, -0.024193687364459038, 0.0016907419776543975, -0.011701742187142372, 0.038938555866479874, 0.020831117406487465, 0.029590612277388573, -0.011449549347162247, 0.08271920680999756, 0.013803347945213318, 0.012239753268659115, -0.02005772665143013, 0.01372769009321928, 0.016888504847884178, 0.0011432736646384, -0.03587861731648445, -0.02057892456650734, 0.009743045084178448, -0.0034634466283023357, 0.02592541091144085, 0.04213299602270126, 0.059820111840963364, 0.04842099919915199, 0.05282596871256828, -0.024109624326229095, -0.004362933803349733, -0.028918098658323288, -0.010583687573671341, -0.0069268932566046715, 0.0619049035012722, 0.03823241591453552, -0.004259955137968063, 0.013584780506789684, 0.06388881802558899, 0.001841006800532341, 0.003139799227938056, -0.05874408781528473, 0.037795282900333405, -0.037694405764341354, -0.03671925887465477, -0.10101158916950226, 0.017098665237426758, -0.0021688572596758604, -0.009389975108206272, -0.018998518586158752, -0.016022643074393272, 0.01320649217814207, -0.032768238335847855, -0.040048204362392426, -0.02313447743654251, 0.0878303125500679, 0.05181719735264778, -0.012584416195750237, -0.0010618363739922643, 0.044688548892736435, 0.012508758343756199, -0.02827920950949192, 0.011432736180722713, 0.0024630820844322443, 0.007872615940868855, -0.04842099919915199, -0.0006147197564132512, 0.10262562334537506, 0.036147620528936386, 0.01506431121379137, -0.012634854763746262, -0.003196542616933584, 0.009474040009081364, 0.07229524105787277, -0.02333623170852661, -0.006275395397096872, -0.013198085129261017, 0.009743045084178448, -0.005392720922827721, 0.01832600310444832, -0.06328355520963669, 0.005127918440848589, 0.004665565211325884, -0.030364003032445908, -0.030515318736433983, -0.00614929897710681, -0.048589129000902176, -0.019721470773220062, -0.01239947509020567, -0.021520445123314857, -0.053632982075214386, -0.023100852966308594, -0.073976531624794, -0.027942951768636703, 0.01780480518937111, -0.019368400797247887, 0.01767030358314514, -0.04172948747873306, -0.032448794692754745, 0.058172453194856644, -0.006666294299066067, -0.07269874960184097, 0.04677334055304527, 0.01750217378139496, 0.014324545860290527, 0.014181637205183506, 0.013475497253239155, 0.01780480518937111, 0.041090600192546844, 0.023504361510276794, -0.06368706375360489, 0.02148681879043579, -0.0438142791390419, -0.014988653361797333, -0.010146553628146648, -0.030364003032445908, -0.024126436561346054, -0.006330037023872137, 0.003089360659942031, 0.02869953028857708, 0.01332418154925108, -0.015568696893751621, 0.04885813593864441, 0.009726231917738914, -0.0004011440323665738, 0.04579819738864899, 0.02695099450647831, -0.001812635106034577, 0.05894584208726883, -0.049026262015104294, -0.024328190833330154, 0.000355696800397709, -0.02713593654334545, 0.03544148430228233, -0.05080842599272728, -0.03283549100160599, 0.0035517141222953796, -0.007124444004148245, -0.03880405053496361, -0.0074060591869056225, -0.013063582591712475, 0.06583911180496216, -0.025471463799476624, 0.024647634476423264, 0.01177740003913641, 0.0009867040207609534, -0.03268417716026306, -0.05770169198513031, 0.0729677602648735, -0.016089895740151405, -0.04257012903690338, 0.008406423963606358, -0.0671168863773346, 0.06018999591469765, -0.04744585603475571, -0.03776165470480919, -0.050976552069187164, -0.059483855962753296, 0.04741223156452179, 0.06486396491527557, -0.01572841964662075, 0.013593187555670738, 0.04011545330286026, 0.017451735213398933, -0.03725726902484894, -0.023403484374284744, 0.003461345098912716, 0.05430549755692482, -0.038299668580293655, 0.0184941329061985, 0.005405330564826727, 0.07552330940961838, -0.0011264607310295105, -0.0224115252494812, -0.024345003068447113, -0.08830107748508453, -0.04599995166063309, -0.017754366621375084, -0.0667133778333664, -0.025656405836343765, 0.0341637060046196, -0.07047946006059647, -0.04596632346510887, -0.03374338522553444, 0.09583323448896408, 0.05111105740070343, -0.03228066861629486, -0.04815199598670006, -0.005317063070833683, -0.01842688024044037, -0.07989465445280075, -0.021923953667283058, -0.054776258766651154, -0.04351164773106575, 0.03772803023457527, -0.05575140193104744, -0.014921402558684349, -0.01300473790615797, -0.038097914308309555, 0.0036336767952889204, -0.05676017329096794, -0.020713428035378456, 0.026866929605603218, 0.014820525422692299, 0.01516518834978342, -0.05296047031879425, 0.027791637927293777, 0.03866954892873764, -0.009936393238604069, 0.01698938198387623, 0.043948784470558167, 0.00437554344534874, 0.020343545824289322, 0.0060316091403365135, 0.015762044116854668, -0.012786170467734337, -0.011869870126247406, -0.01931796222925186, 0.025757282972335815, -0.03581136465072632, 0.015039091929793358, -0.04411691054701805, 0.004610923584550619, 0.018241940066218376, -0.00822988897562027, -0.01654384285211563, 0.00924706645309925, -0.012273378670215607, -0.027505818754434586, 0.002627007430419326, 0.03022949956357479, 0.034298207610845566, 0.04764761030673981, -0.030666634440422058, 0.03342394158244133, -0.032667361199855804, 0.002891809679567814, 0.04425141587853432, -0.010222211480140686, 0.03201166167855263, -0.045730944722890854, -0.06980694085359573, -0.022058455273509026, -0.00924706645309925, -0.0020354052539914846, -0.04929526895284653, -0.05006866157054901, 0.020192230120301247, -0.0006047370843589306, 0.011861464008688927, -0.0514473132789135, 0.009961612522602081, 0.055785030126571655, -0.028127893805503845, 0.08197944611310959, -0.048891760408878326, -0.031204644590616226, -0.003093563951551914, 0.02869953028857708, 0.023941494524478912, -0.007162272930145264, 0.030902013182640076, 0.0027005637530237436, 0.016022643074393272, 0.03705551475286484, -0.09058762341737747, 0.029758740216493607, 0.0030179060995578766, 0.012609635479748249, -0.024714885279536247, -0.03187716007232666, 0.01039033941924572, -0.019284335896372795, 0.07061395794153214, 0.05985373631119728, -0.004942977335304022, 0.05726455897092819, 0.025774095207452774, 0.0600891187787056, 0.003621067153289914, -0.07511980086565018, 0.0906548723578453, -0.037190020084381104, -0.10000281780958176, 0.02685011737048626, 0.008095386438071728, 0.012895453721284866, 0.028329648077487946, -0.007351417560130358, -0.009759858250617981, -0.0532631017267704, 0.009852328337728977, 0.011869870126247406, -0.03085157461464405, 0.07202623784542084, -0.007687674369663, -0.0353742316365242, -0.0135175297036767, -0.02178945019841194, -0.008238295093178749, -0.022293835878372192, -0.03685376048088074, -0.039644695818424225, -0.03587861731648445, 0.02005772665143013, 0.006388882175087929, 0.009213440120220184, 0.0030494302045553923, -0.02693418227136135, 0.0015079022850841284, 0.003492868971079588, -0.0022319054696708918, -0.024563569575548172, -0.029472921043634415, -0.026967806741595268, -0.0038690564688295126, -0.0322638563811779, 0.02098243311047554, 0.046336207538843155, 0.02459719590842724, 0.012550790794193745, 0.03339031711220741, 0.04596632346510887, 0.011911902576684952, 0.00863339751958847, 0.018981704488396645, -0.021755823865532875, -0.05844145640730858, -0.06735226511955261, 0.012676887214183807, -0.002778323134407401, -0.015501445159316063, -0.032549671828746796, 0.027791637927293777, -0.029355231672525406, 0.0035391044802963734, -0.010037270374596119, -0.0627119243144989, -0.00035674762330017984, -0.0870232954621315, 0.007431278470903635, -0.017939308658242226, 0.03870317339897156, -0.025992661714553833, -0.0026375155430287123, 0.026194415986537933, -0.011558832600712776, 0.0010476505849510431, -0.040350835770368576, 0.012735731899738312, 0.004072912503033876, 0.018897641450166702, -0.03866954892873764, -0.07949114590883255, -0.0026207026094198227, 0.0048757256008684635, 0.04115784913301468, -0.0008810982690192759, 0.03917393460869789, 0.0018609720282256603, -0.014635583385825157, -0.032667361199855804, 0.02140275575220585, -0.08890634030103683, -0.017216356471180916, -0.025336962193250656, -0.04636983200907707, -0.044385917484760284, -0.0363830029964447, -0.014929808676242828, 0.03792978450655937, -0.016518622636795044, -0.02530333586037159, -0.01547622587531805, -0.0011474768398329616, 0.02898534946143627, 0.03836691752076149, 0.03611399605870247, -0.04492392763495445, -0.04287276044487953, -0.04095609858632088, -0.013668845407664776, 0.029893243685364723, 0.07619582861661911, 0.010524842888116837, 0.01931796222925186, -0.04203211888670921, 0.05891221761703491, -0.04852187633514404, 0.017552612349390984, 0.03064982034265995, -0.06493121385574341, 0.007296775933355093, -0.04986690729856491, -0.01872951164841652, 0.006241769529879093, 0.010508029721677303, 0.02715274877846241, -0.02858184091746807, 0.007422872353345156, 0.004686581436544657, -0.014929808676242828, -0.007246337365359068, 0.01995684951543808, -0.0343654602766037, 0.0178888700902462, 0.029271166771650314, -0.0003609508275985718, -0.0737747773528099, -0.019166646525263786, -0.04465492442250252, -0.014559926465153694, 0.04048533737659454, 0.04485667869448662, 0.01007930189371109, -0.01564435474574566, -0.004526859149336815, 0.030313564464449883, 0.022915910929441452, 0.03219660371541977, 0.002772018313407898, 0.001069717458449304, 0.0426037572324276, -0.004138062242418528, 0.016922131180763245, 0.030162248760461807, -0.032045286148786545, 0.014257295057177544, -0.00218567019328475, 0.005577662028372288, 0.0902513638138771, -0.006645278073847294, -0.05965198203921318, 0.018561383709311485, 0.01839325577020645, 0.017821619287133217, 0.04832012578845024, -0.015408975072205067, 0.03735814616084099, -0.023605238646268845, -0.01718273013830185, 0.048185620456933975, 0.03702189028263092, -0.009684200398623943, -0.02725362591445446, -0.01901533082127571, -0.03034719079732895, -0.07000869512557983, -0.04092247039079666, 0.01584610901772976, 0.04176311194896698, 0.05491076037287712, -0.02057892456650734, 0.0450248047709465, 0.021032871678471565, 0.0027026652824133635, 0.020713428035378456, 0.0018136859871447086, 0.05608765780925751, 0.017821619287133217, 0.04734497889876366, -0.0063048177398741245, 0.005312860012054443, -0.016812847927212715, 0.05087567865848541, -0.022361086681485176, 0.07693558931350708, 0.014072353020310402, -0.014526300132274628, 0.033272624015808105, -0.019099395722150803, 0.044016033411026, 0.0012746240245178342, 0.02323535457253456, -0.045932698994874954, 0.020797492936253548, -0.015299690887331963, -0.009347943589091301, -0.02716956101357937, -0.06593998521566391, -0.05884496495127678, -0.01543419435620308, 0.07875137776136398, -0.03201166167855263, 0.032969992607831955, -0.010087708942592144, 0.03352481871843338 ]
412
bitmath
__or__
Bitwise or, ex: 100 | 2 Does a "bitwise or". Each bit of the output is 0 if the corresponding bit of x AND of y is 0, otherwise it's 1.
def __or__(self, other): """Bitwise or, ex: 100 | 2 Does a "bitwise or". Each bit of the output is 0 if the corresponding bit of x AND of y is 0, otherwise it's 1.""" ord = int(self.bits) | other return type(self)(bits=ord)
(self, other)
[ -0.019762661308050156, -0.04724946245551109, 0.030165893957018852, 0.04540541023015976, -0.0043752724304795265, -0.05713079124689102, -0.05532153323292732, 0.016613857820630074, 0.010820752941071987, -0.02844361960887909, 0.06499410420656204, 0.04697111248970032, 0.03851631283760071, 0.0363939143717289, -0.017448898404836655, 0.019327742978930473, -0.05553029477596283, 0.026164650917053223, -0.014108730480074883, 0.017066171392798424, 0.0028726316522806883, 0.05281640961766243, 0.06217583641409874, 0.036985404789447784, 0.01819695718586445, 0.10083132237195969, -0.0337844081223011, -0.0010242311982437968, -0.05386020988225937, -0.041299786418676376, 0.0109599269926548, -0.03656788170337677, -0.019205966964364052, 0.002415967872366309, 0.04631003737449646, 0.010377136990427971, -0.003040074836462736, 0.15044674277305603, -0.016352906823158264, 0.04063871130347252, 0.0037163719534873962, -0.09178503602743149, -0.011551414616405964, -0.015117740258574486, -0.055112775415182114, -0.0620366632938385, -0.012047220952808857, -0.005697422195225954, 0.02237216755747795, -0.05810500681400299, 0.027521593496203423, -0.004662318155169487, 0.021641505882143974, -0.02153712511062622, 0.00893320981413126, 0.021050017327070236, 0.015831004828214645, 0.10354521125555038, -0.01524821575731039, 0.038864247500896454, -0.06036657840013504, 0.03935135528445244, -0.04397888109087944, 0.0012242933735251427, 0.018875429406762123, -0.025520971044898033, -0.10410190373659134, -0.009950917214155197, 0.014665425755083561, 0.10806835442781448, -0.021763283759355545, 0.04070829972624779, 0.007719789631664753, 0.02720845304429531, -0.01676172949373722, -0.003603293327614665, -0.022598324343562126, 0.007928550243377686, 0.03044424019753933, -0.003957751207053661, 0.01196023728698492, -0.0003017241833731532, -0.0026095062494277954, 0.012334266677498817, -0.022198200225830078, -0.041682515293359756, -0.04390929266810417, -0.05681765079498291, -0.009246351197361946, -0.07237030565738678, -0.0283044446259737, 0.0024181425105780363, -0.015917988494038582, 0.0025051261764019728, 0.037437718361616135, 0.045057475566864014, -0.045892518013715744, 0.021832870319485664, -0.010029202327132225, -0.017501089721918106, -0.04784094914793968, 0.044465988874435425, -0.029974529519677162, 0.0047753965482115746, 0.046657972037792206, -0.0005931190680712461, -0.02748679928481579, -0.02606027014553547, -0.07264865934848785, -0.0327753983438015, -0.026529980823397636, -0.00400124303996563, -0.004031687509268522, 0.008319975808262825, -0.02966138906776905, 0.023328986018896103, 0.010551104322075844, -0.022737499326467514, -0.003431500867009163, 0.015404785983264446, 0.016396397724747658, 0.028008701279759407, 0.026356013491749763, 0.04056912660598755, 0.060262199491262436, 0.06200186908245087, 0.025694938376545906, -0.027312833815813065, -0.04411805421113968, -0.025486178696155548, 0.014517553150653839, 0.019101586192846298, -0.025712335482239723, 0.028547998517751694, 0.015274310484528542, 0.0025116498582065105, -0.014943772926926613, 0.034341104328632355, -0.02720845304429531, 0.02992234006524086, 0.018666667863726616, 0.009046288207173347, 0.06269773840904236, 0.03952532261610031, -0.011864555068314075, 0.05824417993426323, 0.019432123750448227, 0.039316561073064804, 0.09227214753627777, 0.02296365611255169, 0.008228642866015434, -0.004320907406508923, 0.03225350007414818, 0.09644735604524612, -0.054660458117723465, 0.05953153967857361, 0.009550793096423149, -0.04662318155169487, -0.004273066762834787, 0.005066791549324989, 0.02708667516708374, -0.013021436519920826, -0.03869028016924858, -0.05960112437605858, 0.025103451684117317, -0.01676172949373722, 0.02477291412651539, 0.0150568513199687, 0.06408947706222534, -0.010951228439807892, 0.034549862146377563, -0.04359615221619606, 0.007937248796224594, 0.014213111251592636, 0.014578442089259624, 0.02606027014553547, -0.027330229058861732, -0.0027225848753005266, -0.03114010952413082, -0.028600189834833145, 0.054730046540498734, 0.06885617226362228, -0.06871700286865234, -0.019171172752976418, 0.05177260562777519, 0.019136380404233932, 0.04321342334151268, 0.01663995161652565, 0.00551475677639246, 0.027747750282287598, -0.0219198539853096, -0.013056229799985886, -0.008402610197663307, -0.02160671167075634, 0.02225039154291153, -0.026216840371489525, -0.015839703381061554, 0.0002760368515737355, 0.022615721449255943, 0.06934328377246857, -0.008607021532952785, 0.041578132659196854, 0.013430259190499783, 0.050137314945459366, -0.00023906883143354207, -0.027191055938601494, 0.03761168569326401, 0.03976887837052345, -0.0023681269958615303, -0.04352656751871109, 0.0682646855711937, -0.06638584285974503, -0.00877229031175375, 0.06179311126470566, 0.0070587145164608955, 0.04460516199469566, 0.00918546225875616, 0.00004750116931973025, -0.04331780597567558, 0.03949052840471268, 0.04352656751871109, -0.018457908183336258, 0.009202859364449978, -0.0002773959713522345, 0.05264244228601456, 0.030357256531715393, -0.058000627905130386, -0.0446399562060833, -0.020649893209338188, 0.029678786173462868, 0.05302516743540764, -0.004744952544569969, 0.006854303181171417, -0.020789066329598427, 0.004418764263391495, 0.006054054480046034, 0.06311526149511337, -0.015387388877570629, -0.060644928365945816, -0.007267475128173828, -0.01877104863524437, -0.01038583554327488, 0.047040700912475586, -0.05177260562777519, -0.029887545853853226, -0.042343590408563614, 0.00029221034492366016, -0.00031803359161131084, 0.029383040964603424, -0.01041193027049303, -0.04300466552376747, 0.017631564289331436, -0.003575023729354143, -0.008246039971709251, 0.03715936839580536, -0.009646475315093994, 0.00015031843213364482, -0.049371860921382904, 0.017588073387742043, -0.003975147847086191, -0.021850265562534332, 0.07877229899168015, -0.016805220395326614, -0.04773657023906708, -0.0063628461211919785, -0.05695682391524315, 0.027260642498731613, 0.009646475315093994, 0.016622554510831833, 0.02244175411760807, 0.06179311126470566, -0.05507798120379448, -0.011847158893942833, 0.009002797305583954, -0.06969121843576431, 0.014073937200009823, 0.08183411508798599, -0.02211121656000614, 0.002015843754634261, -0.0043600499629974365, 0.02741721272468567, 0.0637415423989296, -0.06673377752304077, -0.03806399926543236, -0.030739985406398773, 0.027330229058861732, 0.004457906819880009, 0.02701708860695362, -0.008959305472671986, -0.038411933928728104, 0.08517428487539291, 0.05580864101648331, 0.04818888381123543, 0.023903077468276024, 0.04707549512386322, 0.00915936753153801, 0.002200683578848839, -0.010133583098649979, 0.0629412904381752, -0.050206903368234634, -0.02211121656000614, -0.058278974145650864, 0.005271202884614468, 0.0020973908249288797, 0.01986704207956791, -0.018353527411818504, 0.04185648262500763, -0.010507612489163876, 0.007663250435143709, 0.09602983295917511, 0.033767011016607285, -0.018927618861198425, -0.011655795387923717, 0.007263125851750374, 0.01357813086360693, 0.01260391529649496, 0.01760546863079071, 0.03439329192042351, -0.03220130875706673, 0.07348369807004929, -0.0019310347270220518, -0.0003656026965472847, -0.005284250248223543, -0.028878536075353622, -0.00976825226098299, -0.05184219405055046, -0.04693632200360298, -0.015831004828214645, -0.00720658665522933, 0.043109044432640076, -0.06008823215961456, -0.01257782056927681, 0.06186269596219063, 0.03618515282869339, 0.011951538734138012, -0.013230197131633759, 0.06802113354206085, -0.009724760428071022, -0.038411933928728104, -0.014865487813949585, 0.00983783882111311, 0.02372911013662815, -0.03448027744889259, 0.0078676613047719, 0.011099100112915039, -0.018109973520040512, -0.011560113169252872, 0.032340481877326965, 0.04314383864402771, -0.055112775415182114, 0.09088040888309479, -0.025260021910071373, -0.011768873780965805, -0.046205658465623856, 0.029643991962075233, -0.007980740629136562, -0.01106430683284998, 0.08573098480701447, 0.014387078583240509, -0.011560113169252872, 0.03757689148187637, -0.04617086425423622, -0.0003525551874190569, 0.006406337954103947, -0.027782544493675232, 0.02767816372215748, -0.05145946517586708, 0.014534950256347656, -0.052085746079683304, -0.05584343522787094, -0.003570674452930689, -0.013586829416453838, -0.01228207629173994, -0.018979810178279877, 0.017318423837423325, 0.02134576253592968, -0.05354706943035126, -0.01877104863524437, -0.02018018253147602, -0.048989132046699524, 0.011159989051520824, 0.010698975995182991, 0.011968935839831829, 0.02618204616010189, -0.03199254721403122, 0.032288290560245514, -0.032792795449495316, 0.02399006113409996, 0.025433989241719246, 0.07793725281953812, 0.0044339862652122974, -0.012386457063257694, 0.0034293262287974358, -0.03463684767484665, -0.05326872318983078, 0.028982916846871376, 0.016657348722219467, 0.016561666503548622, -0.012917056679725647, -0.05622616410255432, 0.023502953350543976, 0.032671019434928894, -0.010533707216382027, 0.041891276836395264, 0.020980430766940117, 0.03448027744889259, 0.022006837651133537, 0.0024703326635062695, -0.047110289335250854, -0.028287049382925034, -0.10104008764028549, -0.005184219218790531, 0.029313454404473305, 0.0024703326635062695, -0.031383663415908813, -0.030548620969057083, 0.05281640961766243, 0.04606648534536362, 0.05424293875694275, 0.04223920777440071, 0.04425722733139992, -0.04042994976043701, 0.006515067536383867, 0.002896551974117756, -0.003642435884103179, 0.016787823289632797, 0.056330543011426926, 0.04502268135547638, -0.020006215199828148, 0.042795903980731964, -0.033819202333688736, -0.002746505429968238, -0.006001864559948444, -0.044535573571920395, 0.05573905631899834, -0.0665598064661026, 0.0023985712323337793, 0.0017788134282454848, 0.01766635850071907, 0.024285806342959404, 0.057757072150707245, 0.01798819750547409, 0.01350854430347681, -0.019658280536532402, -0.013552036136388779, -0.05967071279883385, 0.007463187910616398, 0.07772849500179291, 0.013639019802212715, -0.005888786166906357, 0.04042994976043701, 0.027434609830379486, 0.028130479156970978, 0.020528117194771767, 0.032079532742500305, 0.01261261384934187, -0.01798819750547409, -0.026095062494277954, -0.0033336442429572344, -0.020267166197299957, -0.019658280536532402, -0.019954025745391846, -0.014665425755083561, -0.01715315505862236, -0.056713271886110306, 0.004766698461025953, 0.034932591021060944, -0.04919789358973503, 0.011716683395206928, 0.04328301176428795, -0.002261572051793337, -0.07835477590560913, 0.003009630599990487, -0.026808328926563263, 0.017814230173826218, 0.024598946794867516, -0.0012634359300136566, -0.01927555352449417, -0.004488350823521614, -0.09227214753627777, -0.039246976375579834, -0.014395776204764843, 0.008446102030575275, -0.03216651454567909, -0.00596272200345993, -0.04269152507185936, 0.007245729211717844, 0.03154023364186287, 0.007445791270583868, -0.0011019727680832148, 0.06958683580160141, 0.0283044446259737, -0.0727878287434578, -0.03719416260719299, 0.004579683765769005, 0.014073937200009823, -0.06572476774454117, 0.005001553799957037, -0.02225039154291153, 0.016039766371250153, -0.008754894137382507, -0.007567568216472864, -0.07181361317634583, -0.03573283925652504, 0.034723829478025436, 0.015891892835497856, 0.0002619020233396441, -0.0465535931289196, -0.009846537373960018, 0.02037154696881771, -0.009716061875224113, -0.04999814182519913, -0.06241939216852188, -0.015117740258574486, -0.0033249459229409695, 0.01798819750547409, 0.022546134889125824, 0.03604597970843315, -0.03771606460213661, -0.02320721000432968, 0.030670396983623505, 0.03192296251654625, -0.04488350823521614, 0.010150979273021221, 0.002766076708212495, -0.057304758578538895, -0.03488039970397949, -0.04780615493655205, 0.009298540651798248, -0.014726313762366772, -0.04377011954784393, -0.07807642966508865, -0.08315626531839371, 0.022215597331523895, -0.045440204441547394, 0.037890031933784485, -0.07383163273334503, 0.05267723277211189, -0.008011184632778168, 0.02399006113409996, 0.030026718974113464, 0.029957132413983345, 0.07758931815624237, -0.011473129503428936, -0.0017548929899930954, 0.03907300904393196, -0.051633432507514954, -0.005401677917689085, 0.047632187604904175, -0.00368375307880342, -0.058731287717819214, -0.03204473853111267, -0.011812365613877773, 0.03663747012615204, 0.036219947040081024, -0.028530603274703026, -0.025555765256285667, 0.008537434972822666, -0.049685001373291016, 0.04978938028216362, 0.020545512437820435, -0.012012427672743797, -0.04881516471505165, -0.03670705482363701, -0.06704691797494888, -0.011403542943298817, 0.03340167924761772, -0.028861140832304955, 0.03044424019753933, 0.04056912660598755, -0.0042948126792907715, 0.048258472234010696, -0.07557130604982376, -0.0001875582674983889, 0.02656477503478527, 0.03310593590140343, -0.027399815618991852, 0.01585710048675537, -0.02663436159491539, -0.007363156881183386, -0.08176453411579132, -0.023624731227755547, -0.01630941405892372, -0.07905064523220062, 0.01657906360924244, -0.06061013415455818, -0.003833799622952938, 0.02632122114300728, 0.005471264943480492, -0.009046288207173347, 0.0314706452190876, -0.00783286802470684, -0.013795590028166771, -0.017509788274765015, -0.015813607722520828, -0.00587138906121254, -0.04871078580617905, -0.0007882883655838668, 0.019623488187789917, 0.03896862640976906, -0.00847654603421688, -0.018753651529550552, 0.00896800309419632, -0.028913330286741257, 0.008198198862373829, 0.008224294520914555, -0.02522522769868374, 0.031835976988077164, -0.015900591388344765, -0.04109102487564087, 0.03541969880461693, 0.006401988677680492, 0.041821688413619995, 0.04175209999084473, 0.013821685686707497, -0.022737499326467514, -0.038411933928728104, 0.011116497218608856, -0.021972043439745903, 0.010107487440109253, -0.06158434972167015, 0.030287669971585274, -0.04359615221619606, 0.02720845304429531, -0.09435974806547165, -0.04488350823521614, 0.033436473459005356, 0.028391428291797638, 0.0638459250330925, 0.028774157166481018, -0.007250078488141298, -0.038725074380636215, 0.05309475585818291, -0.034010566771030426, -0.0693780779838562, -0.0438397079706192, -0.026408204808831215, 0.03684622794389725, 0.0182491485029459, 0.029678786173462868, -0.01979745551943779, 0.04443119466304779, -0.02038894221186638, -0.04999814182519913, -0.021711092442274094, -0.025781922042369843, -0.031227093189954758, 0.012229885905981064, -0.023937871679663658, -0.05358186364173889, -0.04707549512386322, -0.0026529980823397636, 0.01348244957625866, 0.009359429590404034, -0.027225850149989128, -0.05493880808353424, 0.04791053757071495, -0.019971420988440514, 0.04829326272010803, -0.008176453411579132, -0.04606648534536362, -0.04377011954784393, 0.08009444922208786, 0.010664182715117931, -0.01740540750324726, -0.004544890020042658, 0.0033619140740484, -0.04088226705789566, 0.017648961395025253, -0.0014363158261403441, 0.019449520856142044, -0.01325629185885191, -0.043630946427583694, 0.03566325455904007, 0.004562287125736475, -0.002907424932345748, 0.009724760428071022, 0.010968624614179134, 0.0025812366511672735, -0.004601429682224989, 0.005988817196339369, 0.0031683756969869137, 0.004031687509268522, -0.0456489659845829, 0.006080149672925472, -0.010029202327132225, -0.026477791368961334, 0.03340167924761772, 0.03256664052605629, -0.08628767728805542, -0.030844364315271378, -0.034341104328632355, 0.007250078488141298, -0.002987884683534503, -0.03397577255964279, 0.023120226338505745, -0.01663995161652565, -0.052851200103759766, 0.06043616682291031, 0.02470332756638527, 0.03044424019753933, -0.029574405401945114, -0.023398572579026222, -0.015222120098769665, -0.032984159886837006, -0.03291457146406174, -0.01798819750547409, -0.032531846314668655, 0.08127742260694504, -0.023433366790413857, -0.032531846314668655, 0.08774899691343307, -0.022337373346090317, -0.041960861533880234, 0.02058030664920807, -0.029939735308289528, -0.03303635120391846, 0.06099286302924156, -0.007550171576440334, 0.005553899332880974, -0.01038583554327488, -0.023642128333449364, 0.031227093189954758, 0.00980304554104805, 0.038864247500896454, -0.01851009763777256, -0.009672570042312145, -0.006497670896351337, -0.01038583554327488, 0.014326189644634724, 0.004905872046947479, 0.005466915667057037, -0.01048151683062315, -0.05121590942144394, -0.021206587553024292, 0.005362535361200571, 0.0025094752199947834, -0.019693074747920036, 0.009550793096423149, 0.04074309393763542, -0.018266543745994568, 0.02606027014553547, 0.0447443351149559, -0.015917988494038582, -0.009785648435354233, -0.004251320846378803, 0.04909351095557213, 0.025747129693627357, 0.01405654102563858, 0.01927555352449417, -0.005406027194112539, 0.006502020172774792, 0.08830569684505463, -0.006632495205849409, 0.06134079396724701, 0.011516621336340904, -0.02425101213157177, 0.030461637303233147, -0.02811308205127716, -0.0066977329552173615, -0.04895433783531189, -0.025642748922109604, 0.010716373100876808, -0.027521593496203423, 0.03232308477163315, -0.0024790309835225344, 0.027399815618991852, 0.01946691796183586 ]
413
bitmath
__pos__
null
def __pos__(self): return (type(self))(abs(self.prefix_value))
(self)
[ 0.027723141014575958, 0.008290993981063366, 0.023855963721871376, 0.007546017877757549, 0.018900619819760323, 0.0033168159425258636, 0.021947486326098442, 0.010664033703505993, 0.031707506626844406, -0.05906234309077263, -0.01135878637433052, 0.010220397263765335, 0.0493190661072731, -0.023922927677631378, -0.017879417166113853, 0.027488766238093376, 0.015527302399277687, 0.0006115706637501717, -0.031071346253156662, 0.040078017860651016, 0.019653964787721634, 0.022098155692219734, 0.026383858174085617, -0.01601279154419899, 0.005336202215403318, 0.03162379935383797, -0.02238275296986103, -0.02206467278301716, 0.01868298649787903, -0.07660693675279617, -0.038236506283283234, -0.018230978399515152, 0.037734273821115494, -0.01703399419784546, 0.044899433851242065, -0.05383914336562157, -0.010186915285885334, 0.04951995611190796, -0.005993287544697523, 0.014790697023272514, 0.03887266293168068, -0.04654005542397499, -0.04510032758116722, -0.01705910637974739, 0.013032888993620872, 0.024056855589151382, 0.00728653185069561, -0.031556837260723114, 0.006696410942822695, -0.013819717802107334, 0.02517850510776043, -0.011651754379272461, 0.01309985388070345, -0.04342622309923172, -0.07178552448749542, 0.057488687336444855, 0.02424100786447525, 0.027672916650772095, -0.07078105956315994, 0.06810249388217926, -0.0068470798432827, 0.07466498017311096, 0.022332530468702316, -0.05119406059384346, 0.029280055314302444, -0.05507797747850418, 0.001526572392322123, -0.003710230113938451, -0.02499435283243656, 0.0491851381957531, -0.018180755898356438, -0.03555794060230255, 0.014464247040450573, -0.0007575314957648516, 0.03783472254872322, -0.04181908443570137, 0.009977651759982109, 0.017134441062808037, 0.06512259691953659, -0.028325816616415977, -0.04787933826446533, 0.010278990492224693, 0.039174001663923264, 0.006307181902229786, 0.009667943231761456, -0.020323606207966805, 0.006650372873991728, 0.005227385554462671, 0.030853712931275368, 0.04382800683379173, -0.04965388402342796, -0.008906226605176926, -0.013401191681623459, -0.011049077846109867, -0.025831405073404312, 0.03666285052895546, 0.006696410942822695, -0.06773419678211212, 0.020993247628211975, -0.008144509978592396, 0.026467563584446907, 0.1271648406982422, -0.01816401444375515, -0.007098195608705282, 0.0173939261585474, 0.030368221923708916, -0.024090338498353958, -0.02822537161409855, -0.02062494494020939, 0.024810202419757843, -0.011635013855993748, -0.007215382531285286, -0.0017546688904985785, 0.007897579111158848, 0.0018477907869964838, -0.0380021296441555, 0.0013905515661463141, 0.01680799014866352, 0.003469577757641673, 0.03160705789923668, 0.03455347940325737, -0.0040031978860497475, -0.014464247040450573, -0.0015652859583497047, -0.011392268352210522, 0.023387214168906212, 0.044397205114364624, 0.03462044522166252, -0.001646898570470512, -0.02814166620373726, 0.046807911247015, -0.028526710346341133, -0.02999992109835148, 0.0491851381957531, 0.026651713997125626, 0.037131596356630325, 0.0825667455792427, 0.04114944487810135, -0.10426311194896698, 0.0821649581193924, 0.052499860525131226, 0.03338160738348961, 0.0525333434343338, -0.03455347940325737, -0.048214156180620193, 0.06549089401960373, 0.0014386819675564766, 0.08979886770248413, -0.004507521633058786, -0.001062532071955502, -0.03793516755104065, -0.005440833512693644, 0.10265597701072693, 0.060100287199020386, 0.007366051897406578, -0.0549105666577816, -0.01766178384423256, -0.047109249979257584, 0.019218698143959045, 0.002486042445525527, -0.008470959961414337, -0.0005228954833000898, -0.02087606117129326, -0.10124973207712173, -0.007102380506694317, 0.05333691090345383, -0.018013345077633858, -0.02010597288608551, -0.016573617234826088, -0.03462044522166252, -0.018950842320919037, -0.023186322301626205, -0.002624155953526497, 0.04808022826910019, -0.021395033225417137, 0.013484897091984749, -0.032276701182127, 0.08464263379573822, -0.0029778101015836, 0.009115489199757576, 0.04014498367905617, 0.028945235535502434, -0.06190831586718559, -0.06716500222682953, 0.029179610311985016, 0.05012263357639313, 0.046941839158535004, 0.02010597288608551, 0.03209254890680313, -0.0015726102283224463, -0.02730461396276951, 0.023671811446547508, 0.014338689856231213, -0.022600386291742325, 0.012028427794575691, 0.005917952861636877, 0.00701030483469367, 0.012321395799517632, 0.01106581836938858, 0.03428562358021736, -0.02593185007572174, 0.030117107555270195, -0.012262802571058273, 0.04198649525642395, 0.0005106013268232346, 0.041685156524181366, 0.030786748975515366, 0.02121088095009327, -0.111495241522789, -0.021729853004217148, -0.01643131859600544, -0.04027891159057617, 0.011735459789633751, -0.009617719799280167, 0.005729616619646549, -0.05286816135048866, -0.040412839502096176, 0.0031703319400548935, 0.009148971177637577, 0.045401666313409805, 0.09140601009130478, -0.00038661310099996626, 0.03575883433222771, -0.04272310063242912, 0.04004453495144844, -0.003645358607172966, -0.024877166375517845, -0.0428905114531517, -0.004112014546990395, -0.005838433280587196, 0.03179121017456055, -0.06297974288463593, -0.019871598109602928, -0.007215382531285286, 0.0303179994225502, 0.03776775673031807, 0.03108808770775795, 0.03723204508423805, -0.03448651358485222, -0.0036035061348229647, -0.05568065494298935, 0.027857068926095963, 0.04985477775335312, 0.06726544350385666, -0.013543490320444107, -0.002871086122468114, 0.04382800683379173, 0.01975441165268421, -0.008496071211993694, 0.03267848491668701, -0.008483515121042728, 0.00498464098200202, 0.010412918403744698, 0.006089548580348492, 0.06451991945505142, -0.019955303519964218, -0.06686366349458694, 0.015292927622795105, -0.007399533875286579, 0.0006821968709118664, -0.08778994530439377, -0.031205274164676666, 0.024626050144433975, -0.06451991945505142, -0.026718679815530777, 0.04493291676044464, 0.007336754817515612, 0.02695305272936821, -0.03837043419480324, 0.06549089401960373, 0.06023421511054039, -0.03987712785601616, -0.05869403854012489, 0.028342558071017265, -0.0067717451602220535, 0.017276739701628685, -0.019653964787721634, 0.015142259187996387, -0.00825751107186079, -0.04091506823897362, 0.007123306859284639, -0.0029966437723487616, -0.043894972652196884, -0.027321355417370796, -0.0114927152171731, 0.017979862168431282, 0.038571324199438095, -0.0004036157042719424, 0.02087606117129326, -0.010496623814105988, 0.009090377949178219, -0.010044615715742111, -0.012229320593178272, -0.01774548925459385, 0.06462036073207855, 0.02273431420326233, 0.018699727952480316, 0.01582864113152027, 0.010262249037623405, 0.025479843840003014, -0.010873297229409218, -0.06130564212799072, -0.06910695880651474, 0.021813558414578438, 0.011794053018093109, 0.07660693675279617, 0.04948647692799568, 0.019285662099719048, 0.03981016203761101, 0.023420697078108788, -0.045502111315727234, -0.0034067989327013493, -0.04520077258348465, -0.02594859153032303, -0.004327555652707815, 0.041685156524181366, -0.011576419696211815, 0.01603790372610092, 0.023470919579267502, 0.10292383283376694, -0.025195244699716568, 0.03431910648941994, -0.05809136480093002, 0.008525367826223373, -0.023169580847024918, -0.00624858820810914, -0.08665155619382858, 0.0022977059707045555, 0.014246613718569279, -0.012748291715979576, -0.052165038883686066, -0.02964835800230503, -0.0025718403048813343, -0.0022307417821139097, -0.017762228846549988, -0.009015043266117573, 0.06950874626636505, 0.0743301585316658, -0.019201958552002907, -0.028677379712462425, 0.04741058871150017, -0.005306905601173639, -0.00836214330047369, 0.026718679815530777, 0.040345873683691025, 0.015485449694097042, -0.019218698143959045, 0.029112646356225014, 0.11075863242149353, 0.02424100786447525, 0.003938326612114906, -0.034921783953905106, -0.0038692697416990995, -0.03666285052895546, 0.079352468252182, -0.018046826124191284, 0.004444742575287819, -0.05179673805832863, 0.005758913233876228, 0.06753329932689667, 0.05032352730631828, -0.09287922084331512, 0.0151589997112751, -0.04640612751245499, -0.018800172954797745, -0.004323370289057493, -0.029598135501146317, -0.020139455795288086, 0.010153432376682758, -0.0011781497159972787, -0.01891736127436161, -0.019118253141641617, -0.041517745703458786, -0.0628792941570282, -0.05229896679520607, 0.04670746624469757, 0.01678287982940674, 0.02676890231668949, -0.07707569003105164, -0.0727899819612503, 0.07319176942110062, -0.004829786252230406, -0.028074702247977257, 0.07513372600078583, -0.011810794472694397, 0.011249969713389874, -0.0007099241483956575, 0.014146167784929276, -0.013710901141166687, 0.056551188230514526, 0.005737986881285906, -0.04992174357175827, 0.009559126570820808, -0.06318063288927078, 0.002024617977440357, 0.013719271868467331, -0.011082559823989868, -0.045502111315727234, -0.003814861411228776, -0.005202274303883314, 0.04332577809691429, -0.04088158905506134, -0.030301257967948914, 0.057488687336444855, 0.028526710346341133, -0.018632762134075165, 0.03380013257265091, 0.029330279678106308, -0.03179121017456055, 0.0493190661072731, -0.07071410119533539, -0.02373877540230751, 0.016456428915262222, -0.032310180366039276, -0.0012252338929101825, -0.058827970176935196, -0.04171863943338394, 0.01781245321035385, -0.01439728308469057, -0.035022228956222534, -0.0302510354667902, -0.022449716925621033, 0.03753338381648064, 0.0036181544419378042, 0.019235439598560333, -0.009559126570820808, 0.0007381746545433998, -0.01843187026679516, -0.038973111659288406, 0.08236585557460785, -0.025663994252681732, -0.035859279334545135, -0.008613258600234985, -0.03743293508887291, 0.03944186121225357, -0.03837043419480324, -0.033147234469652176, -0.033749911934137344, -0.03204232454299927, 0.022198602557182312, 0.061707425862550735, 0.03006688505411148, 0.025881627574563026, 0.06559134274721146, 0.027505507692694664, -0.03304678574204445, -0.03659588471055031, -0.013819717802107334, 0.015468709170818329, -0.02079235576093197, -0.004896750207990408, -0.0076925018802285194, 0.0533703938126564, -0.002303983783349395, 0.01559426635503769, -0.023521142080426216, -0.12837019562721252, -0.03244411200284958, -0.010119950398802757, -0.05641726031899452, 0.004867453593760729, 0.04573648422956467, -0.03877221792936325, -0.04951995611190796, -0.07292391359806061, 0.08316942304372787, 0.015686342492699623, -0.002165870275348425, -0.04315836727619171, -0.00012810809130314738, 0.02281801961362362, -0.06515607982873917, -0.04627219960093498, -0.07426319271326065, -0.03225995972752571, 0.0525333434343338, -0.03559142351150513, 0.0053320168517529964, 0.017946381121873856, -0.03639499098062515, -0.004093180876225233, -0.06863821297883987, -0.0013832272961735725, 0.01952003687620163, 0.0014794882154092193, 0.015477078966796398, -0.06210920959711075, 0.018465353175997734, -0.037299007177352905, -0.026568010449409485, 0.024123819544911385, 0.06863821297883987, -0.009550755843520164, -0.0034946894738823175, 0.03676329553127289, 0.0298994742333889, 0.027907291427254677, 0.001956607447937131, -0.050993166863918304, 0.008822521194815636, -0.0194195918738842, 0.005888656247407198, -0.0151589997112751, 0.009450309909880161, 0.01360208448022604, -0.02862715534865856, -0.0028899197932332754, -0.009826982393860817, -0.03040170483291149, -0.04011150076985359, 0.0298994742333889, 0.0027831958141177893, -0.002178426133468747, 0.028526710346341133, -0.020055750384926796, 0.03083697147667408, -0.006901488173753023, -0.02290172502398491, 0.009324751794338226, -0.03257803991436958, 0.001834188704378903, -0.0652565211057663, -0.046774428337812424, -0.027605952695012093, -0.02332025021314621, 0.014012239873409271, -0.01410431507974863, -0.023788999766111374, -0.006160697899758816, 0.001986950635910034, 0.019905081018805504, -0.03867177292704582, 0.01106581836938858, 0.061037782579660416, -0.003258222248405218, 0.0695757046341896, -0.019302403554320335, -0.034268882125616074, 0.023889444768428802, 0.07787925750017166, 0.014204761013388634, -0.028928494080901146, -0.0037332489155232906, -0.049285583198070526, 0.05162932723760605, 0.03431910648941994, -0.06726544350385666, -0.013802976347506046, -0.015426856465637684, 0.013953645713627338, 0.011007225140929222, -0.052600305527448654, 0.016079755499958992, -0.015485449694097042, 0.04198649525642395, 0.06666276603937149, -0.020641686394810677, 0.013032888993620872, 0.022951947525143623, 0.038906145840883255, 0.019302403554320335, -0.02127784490585327, 0.060267698019742966, 0.011107671074569225, -0.11049077659845352, 0.0025425434578210115, -0.026902830228209496, -0.0046163382939994335, 0.02094302512705326, 0.012045169249176979, -0.0017745489021763206, -0.024006633087992668, -0.018482094630599022, -0.02213163673877716, -0.019453072920441628, 0.038906145840883255, -0.020172936841845512, -0.03776775673031807, 0.011141153052449226, -0.0493190661072731, 0.008098471909761429, 0.006240217946469784, 0.01724325679242611, -0.00801895186305046, 0.012472065165638924, 0.036127135157585144, 0.004474039655178785, 0.026735419407486916, -0.025228727608919144, -0.08069174736738205, -0.01781245321035385, -0.011794053018093109, -0.02323654480278492, -0.03539052978157997, -0.020557980984449387, -0.03649543970823288, -0.014012239873409271, -0.03930792957544327, 0.014941366389393806, 0.00950890313833952, 0.030368221923708916, 0.03195862099528313, -0.006725707557052374, 0.02864389680325985, 0.018733208999037743, -0.015569155104458332, 0.04436372220516205, 0.016841473057866096, -0.007022860925644636, -0.023554624989628792, 0.01680799014866352, -0.009291269816458225, -0.008755557239055634, -0.036127135157585144, -0.039073556661605835, -0.03361598029732704, 0.029631618410348892, 0.0013790420489385724, -0.03616061806678772, 0.021980969235301018, -0.08310245722532272, 0.014079203829169273, -0.003164054127410054, 0.01851557567715645, 0.002316539641469717, 0.01893410086631775, 0.03853784501552582, -0.020491017028689384, 0.06257795542478561, -0.04466506093740463, 0.030552374199032784, 0.051060132682323456, 0.04349318891763687, -0.0806247889995575, -0.09736581146717072, -0.00020690863311756402, -0.030719785019755363, 0.011969834566116333, -0.033766649663448334, 0.020055750384926796, -0.019151734188199043, 0.009852094575762749, -0.025965332984924316, 0.0419195331633091, -0.04446416720747948, -0.02939724363386631, 0.0007491609430871904, -0.026735419407486916, -0.02332025021314621, -0.02904568240046501, 0.005080901551991701, 0.02542961947619915, -0.022667350247502327, 0.029531171545386314, 0.002167962957173586, -0.00031467899680137634, 0.010571958497166634, 0.014229873195290565, 0.021478736773133278, -0.052165038883686066, -0.054073516279459, -0.04098203405737877, 0.0002796274784486741, 0.018398389220237732, 0.04081462323665619, 0.0013424210483208299, 0.02820863015949726, -0.01975441165268421, 0.036629367619752884, -0.04754451662302017, 0.006340663880109787, 0.015627749264240265, -0.053102537989616394, -0.03589276224374771, -0.03843739628791809, -0.019536778330802917, 0.04433023929595947, 0.02906242199242115, 0.039073556661605835, -0.032393887639045715, 0.030970899388194084, -0.005285979248583317, -0.004149681888520718, -0.006679669953882694, 0.033147234469652176, 0.003819046774879098, 0.02584814466536045, -0.006160697899758816, 0.031138310208916664, -0.04225435107946396, -0.010714257135987282, -0.0452677384018898, 0.006558297201991081, 0.04637264460325241, 0.001737927901558578, 0.029782287776470184, -0.022784536704421043, 0.008261696435511112, 0.04161819443106651, -0.014414024539291859, 0.04382800683379173, 0.00089459860464558, 0.0018791803158819675, 0.011191376484930515, -0.0038629919290542603, -0.013032888993620872, 0.024776719510555267, -0.006960081867873669, 0.0059053972363471985, 0.05203111097216606, 0.005277608521282673, 0.05008915066719055, -0.02737157978117466, -0.06475429236888885, 0.0027852882631123066, 0.019369367510080338, 0.01643131859600544, 0.0670645534992218, -0.012045169249176979, 0.05330342799425125, -0.02603229694068432, -0.02492738887667656, 0.034854818135499954, 0.043961938470602036, 0.010036245919764042, -0.019369367510080338, 0.025580288842320442, 0.0024358194787055254, -0.11812468618154526, -0.022667350247502327, -0.0069349706172943115, 0.021897263824939728, 0.0030259406194090843, -0.01123322919011116, 0.028443004935979843, 0.02737157978117466, 0.0011739644687622786, -0.0031347572803497314, -0.02440841682255268, 0.03693070635199547, 0.010103209875524044, 0.03904007375240326, -0.018967583775520325, 0.01858253963291645, -0.031205274164676666, 0.032494332641363144, -0.011224858462810516, 0.04864942282438278, -0.012765033170580864, 0.006587594281882048, 0.03984364494681358, 0.0241740420460701, 0.05025656148791313, -0.0326952263712883, -0.0023709479719400406, -0.050993166863918304, 0.015544043853878975, -0.013593713752925396, -0.010797962546348572, -0.01027061976492405, -0.08966494351625443, -0.06599313020706177, -0.027907291427254677, 0.07660693675279617, -0.016213685274124146, 0.022081414237618446, -0.02027338370680809, 0.03699766844511032 ]
414
bitmath
__radd__
null
def __radd__(self, other): # num + bm = num return other + self.value
(self, other)
[ -0.04449845477938652, -0.05090188980102539, 0.024401793256402016, 0.12083319574594498, -0.013105337508022785, -0.05205957219004631, -0.05506231263279915, -0.011658232659101486, 0.018152112141251564, -0.05173397436738014, 0.006534579675644636, -0.011323589831590652, 0.05546026676893234, 0.08349791169166565, -0.02479974739253521, 0.042581040412187576, 0.03950594365596771, 0.014498175121843815, -0.0005050732870586216, -0.015303126536309719, -0.03711822256445885, 0.03111273981630802, 0.024058107286691666, 0.05918655917048454, -0.019752971827983856, 0.07336818426847458, 0.04272574931383133, -0.030678609386086464, -0.05336196720600128, 0.011775810271501541, -0.018025491386651993, -0.046994708478450775, -0.0013103076489642262, -0.049888916313648224, 0.028851639479398727, -0.04207455366849899, -0.033934593200683594, 0.07090810686349869, -0.08082076907157898, 0.028616484254598618, 0.05242135003209114, -0.03688306733965874, 0.032179977744817734, -0.01764562726020813, 0.025885075330734253, -0.022629091516137123, -0.0019366323249414563, 0.011757721193134785, 0.027458801865577698, -0.009912663139402866, 0.009786042384803295, 0.0005375765613280237, -0.000635934469755739, 0.014154487289488316, -0.006516491062939167, 0.061791349202394485, 0.019734883680939674, 0.023551620543003082, -0.052819304168224335, 0.051878683269023895, 0.0015488537028431892, -0.007240043021738529, -0.010202084667980671, -0.03968683257699013, 0.009641331620514393, -0.005480906926095486, -0.08393204212188721, -0.012580761685967445, 0.022665269672870636, 0.06909922510385513, -0.014688107185065746, 0.02514343522489071, 0.0028851639945060015, -0.01501370593905449, 0.008221360854804516, 0.013222914189100266, 0.02773013338446617, 0.014425819739699364, 0.04178513213992119, -0.046849995851516724, 0.042798105627298355, -0.007818885147571564, 0.02924959361553192, -0.0017331333365291357, -0.05495378002524376, -0.036032892763614655, -0.04120629280805588, -0.04377490282058716, -0.017681803554296494, -0.03306632861495018, -0.02876119501888752, -0.020548880100250244, -0.021815095096826553, 0.012354651466012001, 0.04504111781716347, -0.0016788669163361192, -0.03004550002515316, -0.03979536518454552, -0.023497354239225388, -0.016750231385231018, -0.016994429752230644, 0.0558943971991539, -0.03672026842832565, -0.05336196720600128, 0.04464316368103027, -0.036973509937524796, -0.022050250321626663, -0.04511347413063049, -0.004443062003701925, 0.053976986557245255, -0.00856504775583744, 0.013684178702533245, -0.0552070252597332, 0.013078204356133938, -0.05954833701252937, 0.009397132322192192, -0.028254708275198936, 0.012074275873601437, 0.02259291335940361, 0.09095049649477005, 0.05603910982608795, 0.011196968145668507, 0.023334555327892303, 0.03874621540307999, 0.0020146402530372143, 0.0250529907643795, 0.06765212118625641, 0.0010084507521241903, -0.043051350861787796, -0.08096548169851303, -0.00995788536965847, 0.0024985158815979958, -0.0022588390856981277, 0.048622701317071915, 0.03939741104841232, 0.03719057887792587, 0.0477544367313385, 0.004526722710579634, 0.03563493862748146, 0.015863878652453423, 0.03351854905486107, 0.022665269672870636, 0.0705101490020752, 0.01398264430463314, -0.005887905135750771, 0.013141514733433723, -0.004560639150440693, 0.08342555910348892, -0.04391961172223091, 0.016632653772830963, 0.0004960288642905653, 0.026518184691667557, 0.07231903076171875, 0.04601791128516197, 0.015619680285453796, 0.06732652336359024, 0.0582459419965744, -0.0013679657131433487, -0.06229783594608307, -0.03986772149801254, 0.004063197411596775, 0.013322402723133564, 0.025559477508068085, -0.0423639751970768, 0.020566968247294426, 0.002555043203756213, 0.02561374381184578, -0.02818235382437706, -0.04782679304480553, -0.001208558096550405, 0.0005166613846085966, -0.10969049483537674, 0.00269297044724226, 0.028688840568065643, -0.007027499843388796, -0.004825187847018242, -0.043159883469343185, 0.01455244142562151, -0.02993696741759777, 0.016099033877253532, 0.04891212284564972, 0.007981684058904648, -0.03297588601708412, -0.0426533967256546, 0.04062744975090027, -0.012472229078412056, -0.004427234176546335, -0.0009253552998416126, 0.05506231263279915, -0.009767953306436539, 0.03831208124756813, 0.00020010737353004515, -0.009433310478925705, -0.016632653772830963, -0.02422090619802475, -0.04330459237098694, -0.03445916995406151, 0.011983831413090229, 0.08320848643779755, 0.08045899122953415, -0.05180633068084717, -0.015221727080643177, 0.0090579679235816, 0.02248438075184822, 0.01252649538218975, -0.06414289027452469, -0.020313724875450134, 0.02062123455107212, -0.00648935791105032, 0.0009462704765610397, 0.030570074915885925, 0.002148045226931572, 0.0403018519282341, 0.044426098465919495, 0.0029959578532725573, -0.034404899924993515, -0.01344902440905571, -0.019355017691850662, 0.010446283034980297, 0.022900423035025597, 0.029177237302064896, -0.030353009700775146, 0.025776542723178864, -0.048152390867471695, 0.024311350658535957, -0.013150558806955814, -0.03223424404859543, -0.03351854905486107, 0.0036245437804609537, 0.005851727444678545, 0.07879482209682465, 0.018486754968762398, -0.015104149468243122, -0.027060847729444504, 0.00561657315120101, 0.038601502776145935, -0.013575646094977856, -0.003007263410836458, -0.03496565297245979, 0.014796639792621136, -0.05296401306986809, 0.022213049232959747, 0.020530790090560913, 0.029737990349531174, -0.04287046194076538, -0.010202084667980671, 0.01789887063205242, 0.06435995548963547, -0.01854102313518524, 0.035580672323703766, -0.007760096341371536, -0.034169748425483704, -0.015049883164465427, 0.015176504850387573, -0.00047511368757113814, -0.012309430167078972, 0.0025301713030785322, -0.01794409193098545, 0.00994884129613638, 0.000023335262085311115, 0.05694355070590973, 0.004639777820557356, 0.025993607938289642, -0.04627115651965141, -0.06537292897701263, 0.021109631285071373, 0.0013702267315238714, 0.02154376357793808, 0.02214069478213787, 0.022104516625404358, 0.13371242582798004, -0.04507729411125183, -0.020711679011583328, 0.010156862437725067, -0.039071813225746155, 0.010907547548413277, 0.02188745141029358, 0.06204459071159363, -0.023099400103092194, -0.040699806064367294, -0.004565161652863026, 0.0024985158815979958, -0.02678951621055603, -0.045004941523075104, -0.04283428192138672, 0.03787795081734657, 0.015040839090943336, -0.01052768249064684, -0.01921030879020691, -0.046741463243961334, 0.053868453949689865, -0.0013419629540294409, 0.03380797058343887, 0.04041038453578949, 0.08689860254526138, -0.024962546303868294, -0.033355750143527985, -0.008311804383993149, 0.01438059750944376, 0.08009721338748932, -0.030949940904974937, 0.0039863199926912785, -0.022412026301026344, -0.019065598025918007, -0.014850907027721405, -0.057015903294086456, 0.10086315870285034, 0.038854748010635376, -0.015574458986520767, 0.03936123475432396, -0.0072897872887551785, 0.03715439885854721, -0.01921030879020691, 0.023714419454336166, 0.03288544341921806, -0.04493258520960808, 0.014480086043477058, 0.0249082800000906, 0.012209941633045673, 0.0271151140332222, 0.00012407788017299026, -0.04297899454832077, -0.04457080736756325, -0.032179977744817734, -0.00022158781939651817, -0.0054221185855567455, -0.06204459071159363, -0.008311804383993149, 0.00215708976611495, 0.0051824417896568775, -0.07582826167345047, -0.01653316430747509, 0.023316465318202972, 0.06530057638883591, -0.024148551747202873, -0.04008478671312332, 0.04355783388018608, -0.001197252538986504, -0.023732507601380348, 0.004698566161096096, 0.019988127052783966, 0.01491421740502119, -0.04084451496601105, -0.0009818827966228127, 0.021616118028759956, -0.004458889830857515, -0.006973233073949814, -0.009975974448025227, 0.061321038752794266, -0.000609931827057153, -0.013105337508022785, -0.03389841690659523, -0.024383705109357834, -0.040482740849256516, 0.023913396522402763, 0.04789914935827255, -0.03529125452041626, 0.012616939842700958, 0.028923993930220604, -0.049310073256492615, 0.013367624953389168, -0.0024374660570174456, -0.016207566484808922, 0.06240636855363846, -0.04760972782969475, 0.01873999834060669, -0.11005227267742157, -0.014235887676477432, 0.007732962723821402, -0.047935325652360916, -0.0017523526912555099, -0.024528415873646736, 0.0036765490658581257, 0.02237584814429283, -0.00919815618544817, 0.03483903408050537, -0.03889092430472374, 0.018233513459563255, -0.009930752217769623, -0.04026567190885544, 0.019951948896050453, 0.023678241297602654, -0.046415865421295166, 0.01736525073647499, 0.006249681115150452, 0.06511969119310379, 0.044534631073474884, -0.03664791211485863, 0.01570107974112034, 0.06106779724359512, -0.008583136834204197, -0.00859670341014862, 0.01194765418767929, -0.01123314630240202, -0.10983520746231079, -0.014434863813221455, 0.019047508016228676, -0.04203837737441063, -0.0633469820022583, -0.04109776020050049, 0.04377490282058716, 0.03583391755819321, -0.019282663241028786, 0.01875808835029602, 0.010075462982058525, -0.02271953597664833, 0.000734857574570924, 0.005132697522640228, -0.01584579050540924, 0.024076195433735847, -0.1032508835196495, -0.05907802656292915, -0.005340718664228916, -0.02876119501888752, -0.014977527782320976, -0.07394701987504959, 0.04203837737441063, -0.048260923475027084, 0.06978660076856613, 0.031981002539396286, 0.04189366474747658, 0.019409283995628357, -0.04496876150369644, 0.028128087520599365, -0.03655746951699257, 0.010808059014379978, 0.04004860669374466, 0.01968061737716198, -0.0659879520535469, 0.028381330892443657, 0.003210762282833457, -0.03769706189632416, 0.03004550002515316, -0.004915631841868162, 0.00622707000002265, -0.04381107911467552, -0.021525675430893898, -0.05882478505373001, 0.014679063111543655, 0.02644582837820053, 0.041640423238277435, 0.0060959262773394585, -0.027549246326088905, -0.01908368617296219, -0.02214069478213787, -0.095508873462677, 0.03178202360868454, -0.009632287546992302, -0.0352550745010376, -0.02785675600171089, 0.03380797058343887, 0.005503518041223288, 0.009695597924292088, 0.026861870661377907, 0.0005867555155418813, -0.031492605805397034, -0.005770327989012003, -0.07228285074234009, 0.011459256522357464, -0.02467312663793564, -0.019752971827983856, 0.018278734758496284, -0.040699806064367294, 0.033464282751083374, -0.04145953431725502, 0.05527937784790993, 0.06692856550216675, -0.04095304757356644, -0.04413667693734169, 0.01681354083120823, 0.03635849058628082, -0.06996748596429825, -0.01251745130866766, -0.053398143500089645, -0.015429748222231865, 0.024745481088757515, -0.022791890427470207, -0.03053389862179756, -0.0066566793248057365, -0.05538791045546532, -0.005214097443968058, -0.023262199014425278, -0.004415928851813078, 0.0029959578532725573, 0.034061215817928314, 0.05831829831004143, 0.0186314657330513, 0.032089535146951675, 0.07959073036909103, 0.022158782929182053, 0.006557190790772438, 0.02796528860926628, -0.025704188272356987, 0.04178513213992119, -0.07380231469869614, 0.020548880100250244, -0.04008478671312332, -0.03587009385228157, 0.01899324171245098, 0.03252366557717323, -0.03972300887107849, -0.03223424404859543, -0.07221049815416336, -0.015339304693043232, 0.00849269237369299, 0.03483903408050537, -0.059910111129283905, 0.01023826189339161, -0.020548880100250244, 0.037914130836725235, -0.014000732451677322, -0.011278368532657623, -0.0047573549672961235, 0.02072976715862751, 0.032559845596551895, -0.0009750995086506009, 0.005006075836718082, 0.03704586625099182, -0.0416765995323658, -0.06587941944599152, 0.028471775352954865, -0.008800202049314976, -0.05860771983861923, -0.04254486411809921, -0.010382972657680511, -0.006507446523755789, -0.09442354738712311, -0.04294281452894211, -0.004153641406446695, 0.028598396107554436, -0.049888916313648224, -0.013014893047511578, -0.017184361815452576, 0.011377856135368347, -0.040229495614767075, 0.021272432059049606, -0.006023570895195007, -0.008388682268559933, -0.009975974448025227, -0.008709758520126343, 0.0058065056800842285, -0.006724512204527855, 0.04891212284564972, -0.0019264573929831386, -0.0477544367313385, 0.06428760290145874, -0.01944546215236187, -0.012472229078412056, -0.004257651977241039, -0.03751617670059204, -0.05426640808582306, -0.021489497274160385, 0.002051948569715023, 0.06497497856616974, 0.08096548169851303, -0.013593735173344612, -0.012020008638501167, 0.014000732451677322, 0.007240043021738529, 0.03165540471673012, 0.03670217841863632, 0.015185549855232239, 0.026626717299222946, -0.041061580181121826, -0.037660885602235794, -0.005820072256028652, -0.023316465318202972, -0.014073087833821774, 0.007692262995988131, 0.013105337508022785, -0.02830897457897663, -0.04015713930130005, -0.044534631073474884, -0.008049516938626766, -0.017889825627207756, 0.051082778722047806, -0.02829088643193245, 0.018830442801117897, -0.03364517167210579, -0.008474604226648808, -0.06548146158456802, 0.01570107974112034, 0.026735249906778336, -0.06866509467363358, 0.037914130836725235, -0.0016008589882403612, -0.031167006120085716, 0.04055509343743324, -0.005309063475579023, 0.013901244848966599, -0.032903529703617096, -0.003222067840397358, -0.03420592471957207, -0.05849918723106384, -0.01194765418767929, -0.029159149155020714, -0.03529125452041626, 0.022430114448070526, -0.0002796698536258191, 0.03351854905486107, 0.04446227476000786, -0.04666911065578461, 0.047103241086006165, 0.0014007516438141465, -0.03458578884601593, 0.03856532648205757, -0.03946976736187935, -0.009867441840469837, -0.037226755172014236, -0.015411659143865108, 0.03957829996943474, -0.0006969841779209673, 0.021851273253560066, -0.009053445421159267, -0.004431756678968668, -0.02910488285124302, -0.05343431979417801, 0.010826148092746735, -0.022502470761537552, 0.046632930636405945, -0.034404899924993515, 0.03867385908961296, -0.051082778722047806, -0.0008168224594555795, -0.04554760456085205, 0.018152112141251564, 0.017564227804541588, -0.01910177432000637, 0.03704586625099182, 0.013150558806955814, -0.04355783388018608, 0.015411659143865108, 0.0633469820022583, -0.024980636313557625, -0.023262199014425278, -0.04359401389956474, 0.018577199429273605, 0.0748152881860733, 0.0002605917979963124, -0.027060847729444504, 0.01899324171245098, 0.007253609597682953, -0.10556624829769135, -0.025830809026956558, -0.04703088477253914, 0.03577965125441551, -0.052095748484134674, -0.05535173416137695, 0.0016585170524194837, -0.0025595654733479023, -0.04504111781716347, 0.02668098360300064, 0.004278001841157675, 0.016180433332920074, 0.030588164925575256, -0.021380964666604996, 0.050142157822847366, 0.03565302863717079, 0.022846156731247902, 0.011857209727168083, -0.04247250780463219, -0.034748587757349014, 0.029737990349531174, -0.032179977744817734, -0.020585056394338608, 0.030208298936486244, 0.010491505265235901, -0.001107939169742167, 0.04200219735503197, -0.04102540388703346, -0.006796867586672306, -0.00622707000002265, -0.048405636101961136, 0.018450578674674034, -0.009822219610214233, -0.013684178702533245, -0.012996803969144821, -0.0005081822746433318, 0.007303353864699602, -0.007357620168477297, -0.015294082462787628, 0.0318182036280632, -0.010681437328457832, -0.005842682905495167, -0.011631099507212639, 0.014977527782320976, -0.01612616702914238, 0.09666655957698822, -0.004214690998196602, -0.04623497650027275, 0.007547552697360516, -0.05567733198404312, 0.036159515380859375, -0.012436051853001118, -0.011622055433690548, 0.08096548169851303, -0.02621067501604557, -0.04124246910214424, 0.0048387544229626656, -0.0009327038424089551, 0.009216244332492352, -0.006285858806222677, 0.015384525991976261, -0.007791751530021429, -0.0034120003692805767, 0.013729400932788849, 0.026409652084112167, -0.0024532938841730356, 0.034061215817928314, -0.01822446845471859, 0.014299198053777218, 0.08574092388153076, -0.03599671646952629, -0.04413667693734169, 0.005955738015472889, 0.004289307165890932, 0.020747855305671692, 0.0352008081972599, -0.050105981528759, 0.05799270048737526, -0.05546026676893234, 0.020548880100250244, 0.10621744394302368, -0.0070501104928553104, 0.0015567675000056624, 0.0034640056546777487, 0.047465015202760696, -0.04847798869013786, -0.02631920762360096, 0.016759274527430534, 0.022773802280426025, 0.07705830037593842, 0.044787872582674026, 0.017889825627207756, 0.0016539948992431164, 0.022050250321626663, -0.012264207936823368, 0.0013329186476767063, 0.017392383888363838, 0.05162544175982475, -0.0007212909986265004, 0.004802577197551727, 0.019373107701539993, -0.03257793188095093, 0.020241370424628258, 0.00977699737995863, 0.030787141993641853, 0.08067605644464493, 0.0024012885987758636, -0.016668831929564476, 0.03322913125157356, 0.02959327958524227, 0.055858220905065536, 0.03299397602677345, 0.027567334473133087, 0.028725018724799156, 0.03274073079228401, -0.004049630369991064, 0.03199909254908562, -0.039542119950056076, -0.032071445137262344, -0.025450944900512695, 0.008574091829359531, 0.04681381955742836, -0.0007094201864674687, 0.034983742982149124, -0.0211819875985384, 0.04724794998764992 ]
415
bitmath
__rdiv__
null
def __rdiv__(self, other): # num / bm = num return other / float(self.value)
(self, other)
[ -0.005453083198517561, -0.04038158431649208, -0.003864235244691372, 0.09785036742687225, 0.002863849513232708, -0.03021644428372383, -0.016485659405589104, -0.04603082314133644, -0.031245164573192596, 0.02861233986914158, 0.046867746859788895, -0.017183097079396248, 0.06991802901029587, 0.06562879681587219, -0.021236946806311607, 0.030268752947449684, 0.030268752947449684, 0.040939535945653915, 0.025770286098122597, 0.004389492329210043, -0.031506702303886414, 0.01596258208155632, 0.0073884702287614346, 0.051889289170503616, -0.02693849243223667, 0.030722087249159813, 0.026799004524946213, -0.021376434713602066, -0.03476721793413162, -0.004324107430875301, 0.03211696073412895, -0.007623855024576187, 0.010949756018817425, -0.000296683021588251, 0.004799236077815294, -0.06461750715970993, -0.00846077874302864, 0.06810469180345535, -0.1361396461725235, 0.04236928001046181, 0.0036637221928685904, -0.017775917425751686, 0.017906688153743744, 0.004415646195411682, -0.004075645934790373, -0.031541574746370316, 0.038254402577877045, -0.015143094584345818, 0.021324127912521362, 0.023555925115942955, -0.024636952206492424, 0.018883097916841507, -0.04899492859840393, 0.036231838166713715, -0.012292321771383286, 0.08466881513595581, 0.008687445893883705, 0.03190772980451584, -0.03391285985708237, 0.008277702145278454, -0.020277971401810646, -0.007174880243837833, 0.006412058603018522, -0.024514900520443916, 0.007379752118140459, -0.008395394310355186, -0.03616209328174591, 0.05572519078850746, -0.021725153550505638, 0.03828927502036095, -0.05307493358850479, 0.03944004699587822, 0.005126159638166428, 0.006882828660309315, 0.02488105371594429, 0.06015391647815704, 0.023555925115942955, 0.03658055514097214, 0.07971701771020889, -0.048890311270952225, 0.07260315865278244, 0.018499508500099182, 0.037173375487327576, -0.019005149602890015, -0.052970316261053085, -0.0673375129699707, -0.026223620399832726, -0.03814978897571564, 0.019946688786149025, -0.0187959186732769, -0.06231597065925598, -0.006791289895772934, -0.004258722998201847, 0.01149026956409216, -0.012693348340690136, 0.04400825500488281, -0.057503655552864075, -0.018883097916841507, -0.012414373457431793, -0.03675491362810135, 0.01415796484798193, 0.10050062835216522, -0.010592320002615452, -0.005888981278985739, 0.03319798782467842, -0.008007445372641087, -0.006185391917824745, -0.04669338837265968, -0.02645028755068779, 0.04488005116581917, -0.053458523005247116, 0.05080826207995415, -0.08989959210157394, 0.05133134126663208, -0.055167242884635925, -0.00044379857718013227, -0.03345952555537224, 0.032657474279403687, 0.06908110529184341, 0.03940517455339432, 0.03394773229956627, 0.018394893035292625, -0.0022928230464458466, 0.03581337630748749, 0.01970258727669716, 0.06357135623693466, 0.04289235547184944, 0.0010009306715801358, -0.05666673183441162, 0.01001693494617939, 0.026415415108203888, 0.03944004699587822, -0.010191293433308601, -0.022928232327103615, 0.0672677680850029, 0.05865442752838135, -0.0031537215691059828, -0.011716936714947224, 0.07678777724504471, -0.0011965398443862796, 0.003267055144533515, -0.0027570545207709074, 0.07636931538581848, -0.011045653373003006, 0.0016324378084391356, 0.08020522445440292, 0.057991862297058105, 0.060816481709480286, -0.014489247463643551, 0.0437990240752697, 0.02317233383655548, 0.06029340252280235, 0.15831813216209412, -0.007885393686592579, 0.004032055847346783, 0.02737439051270485, 0.023102590814232826, -0.013652323745191097, -0.03386055305600166, -0.0006102570914663374, 0.004921287763863802, -0.032465677708387375, 0.06636109948158264, -0.0437990240752697, 0.022265667095780373, -0.009406677447259426, 0.021045152097940445, -0.060014426708221436, -0.02972823940217495, 0.017767200246453285, 0.027496442198753357, -0.08236727118492126, -0.057643141597509384, 0.012623604387044907, 0.0034741065464913845, 0.009075394831597805, -0.02709541656076908, -0.009441548958420753, -0.043729282915592194, 0.02709541656076908, 0.07019700109958649, -0.0344533734023571, -0.0006723725819028914, -0.016660019755363464, 0.03365132212638855, 0.01276309136301279, 0.0024650029372423887, -0.013922580517828465, 0.028420545160770416, -0.010888730175793171, 0.028124134987592697, -0.031384650617837906, -0.04679800197482109, -0.03300619125366211, 0.005291800945997238, -0.03488926962018013, 0.006128725130110979, -0.03665030002593994, 0.08794676512479782, 0.06779085099697113, -0.06747700273990631, -0.0068566747941076756, -0.03553440049290657, 0.016372326761484146, -0.015491812489926815, -0.031977470964193344, 0.004145389422774315, 0.042962100356817245, 0.02472413145005703, -0.026049260050058365, -0.04111389443278313, 0.00994719099253416, 0.014776940457522869, 0.024654386565089226, 0.014358477666974068, -0.032465677708387375, 0.0005334300803951919, -0.002462823409587145, 0.0485067218542099, 0.03853337839245796, 0.00862206146121025, -0.05129646882414818, 0.008866163901984692, -0.024933362379670143, -0.022649256512522697, -0.0037269273307174444, -0.049343645572662354, -0.032936450093984604, -0.016860531643033028, -0.0074887266382575035, 0.04714672267436981, 0.007915906608104706, -0.012789245694875717, -0.03190772980451584, -0.011307192966341972, 0.015927711501717567, -0.028891315683722496, 0.02409643866121769, -0.05352826789021492, 0.013242579065263271, -0.0195630993694067, -0.01707848161458969, 0.014341042377054691, 0.01860412396490574, 0.0012499373406171799, -0.05460929498076439, -0.0005451448378153145, 0.04958774894475937, -0.027897467836737633, 0.043729282915592194, -0.06705854088068008, -0.04240415245294571, -0.0026960286777466536, -0.0016335275722667575, 0.05080826207995415, 0.023555925115942955, -0.0179764311760664, 0.003083977848291397, 0.03002464957535267, 0.00708770053461194, 0.011350782588124275, -0.05513237044215202, 0.011621039360761642, -0.036999017000198364, -0.03944004699587822, 0.021341562271118164, -0.009249754250049591, 0.03384311497211456, 0.03487183526158333, 0.048471849411726, 0.0704759806394577, -0.02221335843205452, -0.029954906553030014, -0.021097460761666298, -0.024602079764008522, 0.011446679942309856, 0.030233880504965782, 0.024323105812072754, 0.02125438302755356, -0.028995931148529053, -0.0012619245098903775, -0.039370302110910416, -0.04324107617139816, -0.0008124047890305519, -0.010670781135559082, 0.036371324211359024, 0.027932340279221535, -0.06454776972532272, 0.030303625389933586, -0.009023087099194527, 0.012074372731149197, -0.011350782588124275, -0.05042467266321182, 0.04725133627653122, 0.040660560131073, -0.02348618023097515, -0.01167334709316492, -0.050006210803985596, 0.009336933493614197, 0.049064673483371735, -0.05753852799534798, -0.05112211033701897, -0.027880031615495682, 0.051889289170503616, -0.0025500028859823942, -0.005535903852432966, 0.1064288392663002, 0.031681060791015625, 0.023712847381830215, 0.01268463023006916, -0.02801951952278614, 0.06747700273990631, -0.03565645217895508, 0.031698498874902725, 0.04916928708553314, -0.010766679421067238, 0.044182613492012024, 0.055027756839990616, -0.005535903852432966, 0.04006773978471756, -0.025700543075799942, 0.026171311736106873, -0.009328216314315796, 0.04864621162414551, 0.025909774005413055, -0.01846463605761528, -0.04097440466284752, 0.01706104539334774, -0.002611028729006648, 0.046274926513433456, -0.09492113441228867, -0.012928732670843601, 0.0391261987388134, 0.010156421922147274, -0.014044631272554398, -0.056875962764024734, 0.0704759806394577, -0.0059935967437922955, 0.009642062708735466, -0.021812332794070244, 0.03609234839677811, -0.04362466558814049, -0.007135649211704731, -0.011115397326648235, -0.01785437949001789, 0.010853858664631844, 0.012928732670843601, -0.026676954701542854, 0.043729282915592194, -0.015413351356983185, -0.023538488894701004, -0.034348756074905396, 0.021777460351586342, -0.025543618947267532, -0.0050869290716946125, 0.001838399562984705, -0.06085135042667389, -0.0010118280770257115, -0.01909232884645462, -0.01703489199280739, 0.00567103223875165, 0.04209030419588089, -0.02944926545023918, 0.0136959133669734, -0.06249032914638519, -0.00485154427587986, -0.11375192552804947, -0.00442218454554677, -0.0011017320211976767, -0.023433873429894447, -0.04160209745168686, -0.03902158513665199, -0.016642583534121513, -0.029623623937368393, 0.0156312994658947, 0.03727799281477928, -0.04836723580956459, -0.003899106988683343, -0.004559492226690054, -0.0033411576878279448, 0.032640036195516586, 0.0258051585406065, -0.02831592969596386, -0.001997502287849784, -0.009772831574082375, 0.034366194158792496, 0.029606187716126442, -0.02486361935734749, 0.015465659089386463, 0.05544621869921684, -0.03304106369614601, -0.013181553222239017, 0.019493356347084045, -0.0265897735953331, -0.10566166043281555, 0.03234362602233887, 0.036999017000198364, -0.03689440339803696, -0.02767080068588257, -0.04808825999498367, 0.03021644428372383, 0.021794896572828293, -0.026066696271300316, 0.0329015776515007, 0.029170289635658264, -0.03349439799785614, 0.03804517164826393, 0.019301561638712883, -0.0072446237318217754, 0.014506683684885502, -0.081321120262146, -0.03504619374871254, -0.012780527584254742, 0.026328235864639282, -0.017958994954824448, -0.04885544255375862, 0.0007105136173777282, -0.06336212158203125, 0.0063379560597240925, 0.04348517954349518, 0.007440777961164713, 0.011071807704865932, 0.01580565981566906, 0.01196975726634264, 0.0203302800655365, 0.0004081094521097839, 0.046867746859788895, -0.005649237427860498, -0.029466699808835983, 0.0344185009598732, 0.008879240602254868, 0.006054622586816549, -0.02709541656076908, -0.006795648951083422, 0.03194260224699974, -0.03548209369182587, -0.0025347464252263308, 0.032186705619096756, 0.018046174198389053, -0.007318726275116205, 0.06594263762235641, 0.03957953304052353, 0.017575405538082123, -0.04177645966410637, 0.010487704537808895, -0.0735098272562027, 0.02454977110028267, -0.0000355188713001553, -0.06503596901893616, -0.05551595985889435, 0.0033542346209287643, 0.0014133991207927465, 0.0010772127425298095, 0.017217967659235, 0.013477964326739311, -0.03665030002593994, -0.046379540115594864, -0.04243902489542961, 0.018813354894518852, -0.0042935945093631744, -0.021951820701360703, 0.0485067218542099, -0.06120007112622261, 0.019685151055455208, -0.0422297939658165, 0.038568250834941864, 0.0673375129699707, -0.024985669180750847, -0.0035329528618603945, -0.001962630543857813, 0.01399232354015112, -0.02219592221081257, -0.004247825592756271, 0.007327444385737181, -0.03318054974079132, 0.00535718584433198, -0.05373749881982803, -0.032169267535209656, -0.020609254017472267, -0.0658031553030014, -0.04177645966410637, 0.010400524362921715, -0.007789496332406998, -0.018081046640872955, 0.03318054974079132, 0.006333597004413605, -0.011071807704865932, 0.05255185440182686, 0.06758161634206772, -0.00454205647110939, -0.03412209078669548, 0.03082670271396637, -0.057852376252412796, 0.014811811968684196, -0.0704759806394577, -0.001865643193013966, 0.006547186989337206, 0.023677976801991463, 0.02128925547003746, -0.009214882738888264, 0.007336162496358156, -0.05293544754385948, -0.039370302110910416, -0.015413351356983185, 0.003853337839245796, 0.03323286026716232, -0.0437641516327858, 0.0077459062449634075, -0.01548309437930584, 0.02409643866121769, -0.02441028505563736, -0.023712847381830215, -0.0033782089594751596, 0.05401647090911865, 0.012545142322778702, -0.04285748675465584, -0.06228109821677208, 0.016476942226290703, -0.007789496332406998, -0.019371304661035538, 0.015674889087677002, -0.012301039882004261, -0.06698879599571228, -0.03427901491522789, -0.03415696322917938, -0.010662063956260681, -0.07678777724504471, -0.03408721834421158, 0.019475920125842094, -0.03745235130190849, -0.07762470841407776, -0.06782571971416473, 0.00806847121566534, 0.05293544754385948, -0.03148926794528961, 0.03155900910496712, -0.0705108493566513, 0.0019506432581692934, -0.009572318755090237, 0.009267190471291542, -0.008800779469311237, -0.006281289272010326, 0.0658031553030014, -0.014794375747442245, 0.014410785399377346, 0.008094624616205692, -0.005971801932901144, 0.025090284645557404, 0.01782822608947754, -0.016651300713419914, -0.003960132598876953, -0.08529651165008545, 0.024357976391911507, 0.011481551453471184, 0.02756618522107601, 0.022265667095780373, -0.027932340279221535, 0.00634231511503458, 0.028594905510544777, -0.00939795933663845, 0.040765173733234406, 0.012789245694875717, 0.08808625489473343, -0.007641290780156851, -0.007754624355584383, -0.0020454509649425745, 0.025142593309283257, 0.015195402316749096, -0.013190271332859993, 0.0052743651904165745, -0.05977032706141472, 0.04006773978471756, 0.018342584371566772, 0.02564823441207409, 0.029954906553030014, 0.03363388404250145, 0.0010172767797484994, -0.02943182922899723, -0.035778503865003586, -0.046240054070949554, -0.0437990240752697, -0.0532144196331501, 0.02472413145005703, -0.023887207731604576, 0.010679499246180058, -0.021341562271118164, -0.01657284051179886, 0.03431388735771179, 0.028455417603254318, 0.043554920703172684, -0.05753852799534798, -0.03269234672188759, -0.025072850286960602, -0.03555183485150337, 0.0018830790650099516, -0.06196724995970726, -0.06695391982793808, -0.021219512447714806, -0.0117256548255682, 0.00727949570864439, 0.022753871977329254, -0.023381564766168594, 0.035447221249341965, 0.031245164573192596, -0.016084633767604828, 0.011664628982543945, 0.0028093622531741858, -0.0045376974157989025, -0.030233880504965782, -0.048262618482112885, 0.018342584371566772, 0.031227728351950645, 0.01768873818218708, 0.02097540907561779, 0.031681060791015625, -0.010662063956260681, -0.016311300918459892, -0.041532356292009354, -0.03393029421567917, 0.031245164573192596, -0.041392866522073746, 0.02625849097967148, -0.039823636412620544, 0.00836923997849226, -0.04348517954349518, 0.01938874088227749, 0.052342623472213745, -0.027897467836737633, 0.02690361998975277, -0.009476421400904655, -0.0038511583115905523, 0.005610006395727396, 0.034366194158792496, -0.0312800370156765, -0.027513878419995308, -0.02270156517624855, 0.009860011748969555, 0.05056416243314743, -0.0040124403312802315, 0.02549131214618683, 0.04634466767311096, -0.012946168892085552, -0.052830830216407776, -0.007432059850543737, -0.03569132462143898, -0.02847285382449627, -0.04777441546320915, -0.012693348340690136, 0.00021617813035845757, 0.020696433261036873, -0.047355953603982925, 0.04522877186536789, 0.05178467556834221, -0.02817644365131855, -0.03037336841225624, -0.031105676665902138, 0.0751836746931076, -0.005784365814179182, -0.00034953566500917077, 0.028682084754109383, -0.06353648006916046, -0.00985129363834858, -0.010348216630518436, -0.0016760275466367602, -0.008879240602254868, 0.011315910145640373, 0.002092309994623065, -0.010583601891994476, -0.049971338361501694, -0.06133955717086792, 0.007946419529616833, 0.028228750452399254, -0.07124315947294235, -0.011254885233938694, -0.06761648505926132, -0.01237078383564949, -0.001368719502352178, -0.01167334709316492, 0.006481802556663752, 0.003639747854322195, -0.01645078882575035, 0.05823596566915512, -0.04571697488427162, -0.002375643700361252, 0.029030803591012955, -0.014968735165894032, -0.0375918373465538, 0.08048419654369354, 0.000622789200861007, -0.028455417603254318, -0.002521669492125511, -0.027444133535027504, -0.007806932087987661, -0.032029781490564346, -0.05865442752838135, 0.04352005198597908, -0.007379752118140459, -0.022021563723683357, 0.014149246737360954, 0.0391261987388134, -0.004576928447932005, -0.03244824334979057, 0.0015496171545237303, 0.0030316701158881187, -0.017488224431872368, 0.004339363891631365, 0.024323105812072754, 0.011167705059051514, -0.016947712749242783, -0.04299697279930115, 0.03143696114420891, 0.0782523974776268, -0.02366054058074951, -0.039056453853845596, 0.03209952265024185, 0.03961440548300743, 0.005780006758868694, 0.03661542758345604, -0.0008750651031732559, 0.041253380477428436, -0.06925546377897263, 0.003711670869961381, 0.1313273310661316, 0.05589955300092697, -0.017906688153743744, 0.007248982787132263, 0.06824418157339096, 0.008870523422956467, -0.016197968274354935, 0.02784516103565693, -0.02081848494708538, 0.04519389942288399, 0.0022514129523187876, -0.031088240444660187, 0.011036936193704605, -0.010801550932228565, -0.017784636467695236, -0.023817462846636772, 0.04268312454223633, 0.014898991212248802, 0.04352005198597908, -0.030739523470401764, 0.010252319276332855, -0.05052928999066353, -0.0008946805028244853, 0.03461029753088951, 0.016180532053112984, 0.09213139116764069, -0.00014629824727308005, -0.039858508855104446, 0.04048620164394379, -0.01009539607912302, 0.047042105346918106, 0.018412329256534576, 0.049343645572662354, 0.009310780093073845, 0.022771308198571205, -0.012719501741230488, 0.026799004524946213, 0.0029750033281743526, -0.01009539607912302, -0.024218490347266197, -0.023416437208652496, 0.08962061256170273, -0.02125438302755356, 0.032134395092725754, 0.0007219559629447758, 0.021149767562747 ]
416
bitmath
__repr__
Representation of this object as you would expect to see in an interpreter
def __repr__(self): """Representation of this object as you would expect to see in an interpreter""" global _FORMAT_REPR return self.format(_FORMAT_REPR)
(self)
[ 0.032229337841272354, -0.0566413477063179, 0.0490640252828598, 0.024566298350691795, 0.04107526317238808, -0.05156693980097771, -0.015548941679298878, -0.01658610813319683, 0.03198933228850365, -0.004135812632739544, -0.015180361457169056, 0.004386533051729202, 0.0075601800344884396, 0.06428724527359009, -0.05403557047247887, 0.022954832762479782, 0.0012225290993228555, -0.06168146803975105, -0.02346912957727909, -0.004658682271838188, 0.006497297435998917, 0.04676682874560356, 0.03706374019384384, -0.013080311007797718, 0.016997547820210457, 0.020674778148531914, 0.0005582275916822255, -0.018669014796614647, -0.035692278295755386, -0.0010307388147339225, -0.0370294526219368, -0.05568132549524307, -0.006711588241159916, 0.005961570423096418, 0.005117264576256275, -0.013577465899288654, -0.0437496118247509, 0.030497867614030838, -0.0650758370757103, -0.005378699395805597, 0.023314841091632843, -0.0017411129083484411, 0.00984023418277502, -0.04049239307641983, -0.059589989483356476, -0.010800257325172424, 0.07063025236129761, -0.005965856369584799, -0.02355484664440155, -0.06706445664167404, 0.036309435963630676, 0.01853187009692192, -0.007650182116776705, 0.016894686967134476, -0.07474463433027267, 0.010525965131819248, 0.04086954519152641, 0.06103002279996872, 0.005695849657058716, -0.01896045170724392, -0.05372699350118637, 0.04200099781155586, 0.016980404034256935, -0.01507750153541565, 0.009763089008629322, -0.021189074963331223, -0.059658560901880264, 0.024840591475367546, -0.01603752374649048, 0.011297411285340786, -0.017863282933831215, 0.005811566952615976, -0.054995592683553696, 0.001163599081337452, 0.010080239735543728, -0.013920331373810768, -0.045189645141363144, 0.011760279536247253, 0.000529566197656095, 0.0003297399962320924, 0.01385175809264183, 0.005588704254478216, 0.022200528532266617, 0.001423962414264679, 0.014811781235039234, -0.10848258435726166, -0.020571917295455933, 0.010045953094959259, 0.018120430409908295, 0.007984476163983345, -0.02134336531162262, 0.002535060280933976, -0.02664063312113285, 0.03552084416151047, -0.05506416782736778, -0.029212122783064842, 0.005807281006127596, -0.061338603496551514, 0.05317840725183487, -0.048824019730091095, -0.007247315254062414, 0.02196052297949791, -0.0600014291703701, -0.05821852758526802, -0.027103502303361893, -0.0029636418912559748, -0.008991642855107784, 0.03245219960808754, -0.024926306679844856, 0.009865948930382729, -0.01468320656567812, 0.055269885808229446, -0.027840662747621536, -0.02319483831524849, 0.04549822583794594, -0.0016007523518055677, -0.049269743263721466, 0.010954546742141247, 0.06319007277488708, -0.012891734950244427, -0.014708921313285828, 0.02477201819419861, -0.01103169098496437, -0.0027493510860949755, -0.025440605357289314, 0.011160265654325485, -0.01736612804234028, 0.029880711808800697, 0.00824591051787138, -0.07364746928215027, 0.034526534378528595, 0.030720731243491173, -0.058698538690805435, 0.02232053130865097, 0.050401199609041214, 0.009128788486123085, -0.01957760937511921, -0.0014164622407406569, 0.016268959268927574, 0.09963665902614594, 0.026263482868671417, -0.026434915140271187, 0.034783683717250824, 0.043955329805612564, -0.04474392160773277, 0.005545846186578274, 0.03368651494383812, 0.09277935326099396, 0.00044090335723012686, -0.0038336627185344696, 0.05643562972545624, 0.034183669835329056, 0.07018452882766724, -0.0033193647395819426, 0.016903258860111237, 0.01674897037446499, 0.014760350808501244, -0.007615895476192236, 0.010405962355434895, -0.003169361036270857, 0.004542965441942215, -0.03538369759917259, 0.03891521319746971, -0.03384080529212952, 0.016191814094781876, 0.05873282626271248, 0.02187480591237545, -0.07467605918645859, 0.018909022212028503, 0.024120574817061424, 0.0074487486854195595, -0.10580822825431824, -0.08756779879331589, 0.027583513408899307, 0.027497796341776848, 0.07159027457237244, -0.013551751151680946, 0.08791065961122513, -0.0249605942517519, 0.02221767231822014, 0.05088121071457863, -0.08167051523923874, -0.07111026346683502, -0.0018096859566867352, 0.0432010293006897, -0.03586370870471001, 0.03219505026936531, -0.034166526049375534, 0.018669014796614647, 0.00908593088388443, 0.03114931285381317, 0.02681206725537777, -0.039532370865345, 0.008370199240744114, -0.038503773510456085, -0.06490439921617508, -0.016191814094781876, -0.06387580931186676, 0.026949211955070496, 0.02266339585185051, -0.04145241528749466, 0.022611966356635094, -0.023949140682816505, 0.008580204099416733, 0.034886542707681656, -0.005070120561867952, -0.006900164298713207, -0.012094573117792606, 0.000047880603233352304, -0.03572656586766243, -0.0004963511019013822, -0.018669014796614647, 0.04940688982605934, 0.020571917295455933, 0.025166312232613564, 0.009814519435167313, -0.04673254117369652, 0.026314912363886833, -0.04505250230431557, 0.038058049976825714, 0.04402390494942665, -0.04261815547943115, -0.04196671396493912, -0.04323531314730644, -0.052629824727773666, -0.015934664756059647, 0.012446010485291481, 0.017400413751602173, -0.013063168153166771, -0.0285949669778347, 0.02628062479197979, -0.03915521875023842, -0.05177266150712967, 0.024720588698983192, 0.01304602436721325, 0.011785994283854961, -0.027840662747621536, 0.04145241528749466, -0.020177623257040977, 0.02028048224747181, -0.02936641313135624, 0.035589419305324554, 0.038949497044086456, -0.03829805552959442, 0.028423532843589783, -0.03138931840658188, 0.035589419305324554, 0.06685873121023178, -0.04594394937157631, -0.019080454483628273, 0.000575370853766799, -0.022200528532266617, -0.029846424236893654, -0.011948855593800545, 0.039738088846206665, -0.002247910713776946, -0.04004666581749916, 0.03668658807873726, 0.028354959562420845, 0.056744206696748734, -0.008738779462873936, 0.010311674326658249, 0.0036815162748098373, 0.01861758530139923, 0.06007000058889389, 0.010388818569481373, -0.07152169942855835, 0.029794994741678238, 0.018120430409908295, -0.009557370096445084, 0.09065358340740204, 0.005490130744874477, -0.08475629985332489, 0.047041118144989014, -0.0622643381357193, -0.014708921313285828, -0.011597419157624245, 0.027943521738052368, -0.03253791853785515, -0.05537274479866028, 0.046423960477113724, -0.01124598179012537, 0.02451486885547638, 0.0036686586681753397, 0.008528774604201317, 0.0018879020353779197, -0.0031886473298072815, 0.02900640480220318, 0.009145932272076607, 0.009137360379099846, 0.06164718046784401, 0.04940688982605934, 0.02053763158619404, 0.05317840725183487, 0.059041403234004974, 0.009540227241814137, 0.03942950814962387, -0.016200385987758636, -0.019611895084381104, 0.014974641613662243, -0.037269458174705505, -0.04940688982605934, 0.04230957850813866, 0.03279506787657738, -0.03750946372747421, 0.0009423438459634781, 0.006553012877702713, 0.021309077739715576, 0.005558703560382128, 0.006750160828232765, 0.0011807424016296864, 0.037338029593229294, 0.03248648717999458, 0.06271006166934967, -0.0039429510943591595, 0.031097883358597755, 0.0023679134901612997, -0.010963117703795433, 0.02521774359047413, 0.03483511507511139, -0.04090382903814316, 0.021394794806838036, 0.00400938093662262, 0.03517797961831093, 0.028166385367512703, -0.04302959516644478, -0.04542965069413185, 0.04522393271327019, 0.025440605357289314, 0.023709135130047798, -0.014520345255732536, -0.04892687872052193, 0.010157384909689426, 0.04494963958859444, 0.03164646774530411, -0.017083263024687767, 0.008794494904577732, -0.02497773803770542, -0.03696088120341301, -0.043543893843889236, 0.0846877321600914, 0.03025786206126213, -0.028646396473050117, -0.0034007951617240906, -0.0008994856616482139, 0.04789828136563301, -0.029606418684124947, 0.036652300506830215, 0.0417952798306942, -0.017931854352355003, -0.07933902740478516, -0.0011689563980326056, 0.0008191266097128391, 0.018034715205430984, -0.037543751299381256, -0.0297264214605093, -0.015334650874137878, -0.0009927022038027644, -0.03696088120341301, 0.022560536861419678, 0.03658372908830643, 0.026160622015595436, -0.025457749143242836, 0.0033043643925338984, -0.05592133104801178, -0.02187480591237545, -0.016294673085212708, 0.013354603201150894, 0.04782970994710922, 0.009068787097930908, -0.041760992258787155, -0.006570156197994947, -0.01327745895832777, -0.06418438255786896, -0.05029834061861038, 0.05400128662586212, 0.004350103437900543, 0.016191814094781876, -0.022971974685788155, -0.08125907927751541, 0.047761134803295135, 0.018771875649690628, -0.0012482439633458853, -0.006985880434513092, 0.007941617630422115, -0.0028543537482619286, 0.0005582275916822255, 0.046629682183265686, -0.009643086232244968, 0.03500654548406601, -0.06497297435998917, 0.010303102433681488, 0.03025786206126213, 0.008931641466915607, -0.07776185125112534, -0.01968046836555004, 0.026434915140271187, 0.017057549208402634, -0.08681349456310272, 0.004431534092873335, 0.035760849714279175, 0.004495821427553892, -0.05341841280460358, -0.012248862534761429, -0.011554560624063015, 0.0110745495185256, 0.06435582041740417, 0.03104645386338234, 0.0012793161440640688, -0.016817543655633926, -0.0031822186429053545, -0.027652086690068245, -0.052629824727773666, -0.055887043476104736, 0.06469868123531342, -0.02117193304002285, -0.008880211040377617, -0.01721183769404888, 0.010611681267619133, 0.013868901878595352, -0.02638348564505577, 0.04806971549987793, 0.04189813882112503, 0.07577323168516159, 0.0077444701455533504, 0.03737231716513634, -0.01817186176776886, 0.021326221525669098, 0.06387580931186676, 0.04196671396493912, -0.06236719712615013, -0.021909093484282494, 0.00965165812522173, -0.02883497253060341, 0.0361722894012928, -0.08009333163499832, 0.016071811318397522, -0.013020309619605541, -0.02434343658387661, 0.05900711938738823, 0.05955570191144943, -0.020520487800240517, -0.004470106214284897, -0.010585966520011425, -0.01870330236852169, -0.009985951706767082, -0.02187480591237545, -0.002335769822821021, -0.005164408590644598, -0.0077573275193572044, 0.025817757472395897, 0.04985261335968971, -0.008173051290214062, -0.028783541172742844, 0.015643229708075523, -0.07920188456773758, 0.009960236959159374, -0.006938736420124769, -0.014177479781210423, -0.029932141304016113, -0.044778209179639816, 0.047863997519016266, -0.019646182656288147, 0.023589132353663445, -0.016483249142766, -0.04896116629242897, 0.06864163279533386, 0.021291935816407204, -0.09161360561847687, -0.02144622430205345, 0.006587299518287182, 0.028954975306987762, -0.05424129217863083, 0.0049844044260680676, -0.017186123877763748, 0.054995592683553696, -0.044229622930288315, -0.015283220447599888, -0.06805875897407532, -0.0292978398501873, -0.08050477504730225, -0.07419604808092117, -0.031612180173397064, 0.007954474538564682, -0.01561751402914524, 0.006754446309059858, 0.02655491791665554, 0.02292054519057274, 0.004954403731971979, -0.0033450794871896505, 0.001389675890095532, 0.08386485278606415, -0.061784327030181885, 0.002912212163209915, 0.00038759849849157035, 0.02832067385315895, -0.033377937972545624, 0.0017507559387013316, -0.045121073722839355, -0.030463581904768944, 0.01692040264606476, -0.03217791020870209, -0.012506011873483658, -0.0003618836053647101, 0.04275530204176903, 0.005181551910936832, 0.04861829802393913, 0.03925807774066925, -0.001013595494441688, 0.008747351355850697, 0.005365842022001743, -0.04673254117369652, 0.0326579213142395, 0.018309006467461586, -0.02302340418100357, -0.027892092242836952, 0.0031907903030514717, 0.0024557728320360184, -0.043441034853458405, 0.012960308231413364, 0.01817186176776886, -0.0034157955087721348, -0.042035285383462906, -0.049166884273290634, -0.03610371798276901, 0.040629539638757706, -0.028252100571990013, 0.025440605357289314, -0.022594822570681572, 0.055715613067150116, 0.0075730374082922935, 0.008764494210481644, 0.019869044423103333, -0.018360435962677002, -0.023400556296110153, 0.10951117426156998, -0.038949497044086456, 0.00943736732006073, 0.023074835538864136, 0.0249605942517519, 0.025252029299736023, -0.013131741434335709, -0.027806375175714493, -0.05530417338013649, 0.006634443532675505, -0.02717207558453083, 0.039120931178331375, -0.015857519581913948, -0.008713064715266228, -0.027892092242836952, 0.0003385794989299029, -0.08249339461326599, 0.017674706876277924, 0.030309293419122696, 0.012163146398961544, 0.05880139768123627, 0.033377937972545624, 0.04824114963412285, 0.03881235048174858, 0.021017642691731453, -0.007131598424166441, 0.013637467287480831, 0.062058620154857635, -0.009720231406390667, -0.01041453331708908, 0.029949283227324486, -0.01913188397884369, 0.027446366846561432, -0.04182956740260124, -0.01728898286819458, 0.04241243749856949, -0.0008491273620165884, 0.08050477504730225, -0.002053977455943823, -0.03706374019384384, 0.018051858991384506, -0.009094501845538616, 0.03888092562556267, 0.020229052752256393, -0.005584418773651123, -0.029143551364541054, -0.0030922163277864456, -0.037440892308950424, -0.077967569231987, -0.018857590854167938, 0.02345198579132557, -0.022697683423757553, 0.010937402956187725, 0.048481155186891556, -0.011194552294909954, -0.020674778148531914, -0.03123502805829048, 0.012008856981992722, -0.031200742349028587, 0.06408152729272842, -0.03428652882575989, -0.0075987521559000015, -0.003923664800822735, -0.0035979426465928555, 0.019526178017258644, 0.006231576669961214, 0.02592061646282673, 0.017777565866708755, 0.00520726665854454, 0.017160408198833466, -0.03493797406554222, 0.03792090341448784, 0.02444629557430744, -0.007821614854037762, 0.011528845876455307, -0.041246697306632996, 0.042549584060907364, 0.0026829210110008717, -0.08544203639030457, -0.015540369786322117, -0.014211766421794891, -0.017417557537555695, 0.005605847574770451, -0.030446438118815422, 0.03936093673110008, 0.0041208122856915, 0.05307554826140404, -0.059589989483356476, 0.00921450462192297, 0.005091549828648567, 0.040012381970882416, -0.014871782623231411, -0.06439010053873062, 0.044229622930288315, -0.05818424001336098, 0.03678944706916809, 0.025286316871643066, -0.0030707872938364744, -0.045018214732408524, -0.045738231390714645, -0.03802376240491867, -0.0090430723503232, 0.045395366847515106, -0.025783469900488853, 0.05122407525777817, 0.03634372353553772, -0.03219505026936531, -0.04841258004307747, -0.031800758093595505, -0.01632038876414299, 0.0031415033154189587, -0.03464653715491295, -0.07357889413833618, 0.05540703237056732, -0.02372627891600132, -0.04258387163281441, 0.04594394937157631, 0.03853806108236313, 0.030720731243491173, -0.03138931840658188, 0.008177337236702442, -0.02276625670492649, 0.019629038870334625, -0.02364056184887886, 0.01486321073025465, -0.0446067750453949, -0.0040179528295993805, -0.03802376240491867, -0.04950974881649017, 0.06185290217399597, 0.043543893843889236, -0.05880139768123627, 0.04594394937157631, -0.008164480328559875, -0.03545227274298668, -0.009068787097930908, 0.043955329805612564, -0.008490202017128468, -0.007264458574354649, -0.06103002279996872, -0.008837353438138962, 0.0075858947820961475, -0.01291745062917471, 0.03509226441383362, -0.00966023001819849, 0.006587299518287182, -0.0038122334517538548, -0.043886758387088776, -0.07632181793451309, 0.014451772905886173, 0.04525822028517723, -0.035246554762125015, 0.0723445788025856, -0.008965927176177502, -0.05883568525314331, -0.0499211885035038, -0.018977593630552292, 0.007350174710154533, -0.03428652882575989, 0.008318769745528698, -0.0011775280581787229, 0.01588323526084423, -0.06847020238637924, 0.021017642691731453, -0.023966284468770027, 0.027754945680499077, 0.04834400862455368, 0.03675515949726105, -0.003951522521674633, 0.018583299592137337, 0.042995307594537735, 0.028252100571990013, -0.007984476163983345, -0.02638348564505577, -0.016611823812127113, 0.009497368708252907, 0.14770637452602386, 0.018754731863737106, -0.03709802404046059, 0.004367246758192778, -0.004422962199896574, 0.014606061391532421, 0.044058192521333694, -0.016723254695534706, 0.002453629858791828, -0.045635372400283813, 0.017966141924262047, 0.052355531603097916, 0.011434557847678661, 0.003861520439386368, 0.07549893856048584, -0.05094978213310242, -0.051189787685871124, 0.003998666536062956, -0.03291507065296173, -0.009488796815276146, 0.06301864236593246, -0.052184097468853, -0.017143264412879944, 0.016620395705103874, -0.026657776907086372, 0.0029400698840618134, -0.03145788982510567, 0.04659539461135864, 0.010620253160595894, -0.010971689596772194, 0.0040929545648396015, -0.014186051674187183, -0.00005400798181653954, 0.004650110844522715, 0.04337245970964432, 0.005117264576256275, 0.057292792946100235, -0.023211980238556862, 0.051121216267347336, 0.047418270260095596, 0.015334650874137878, -0.019594751298427582, -0.0038379484321922064, 0.08256196230649948, -0.006355865392833948, -0.004817257635295391, 0.04621824249625206, 0.023606276139616966, -0.022200528532266617, -0.06956736743450165, -0.046526823192834854, 0.0245320126414299, 0.04782970994710922, -0.03245219960808754, 0.04145241528749466, -0.01596038043498993, -0.023760564625263214 ]
417
bitmath
__rmul__
null
def __rmul__(self, other): # num * bm = bm return self * other
(self, other)
[ -0.01758519373834133, -0.025348346680402756, 0.04591936990618706, 0.08763183653354645, -0.06392347067594528, -0.05593749135732651, -0.03449300304055214, -0.030660448595881462, -0.02477792091667652, 0.0011096586240455508, -0.014189369976520538, -0.023940104991197586, 0.04460025578737259, 0.08649098873138428, -0.04517068341374397, 0.0427820198237896, 0.02606138028204441, -0.0010478253243491054, 0.030874358490109444, -0.003654297674074769, -0.016774117946624756, 0.0781484916806221, 0.05636531114578247, 0.10003862529993057, -0.042389851063489914, 0.054119255393743515, 0.03037523478269577, -0.03306693583726883, -0.04816542565822601, -0.013369381427764893, 0.007116967346519232, 0.05080365017056465, 0.031302180141210556, 0.006960991304367781, 0.01457262597978115, -0.05073234438896179, 0.01232656929641962, 0.05807659402489662, -0.08763183653354645, -0.0034849520307034254, 0.04770195484161377, -0.05372708663344383, 0.08763183653354645, 0.010463769547641277, 0.010588550008833408, -0.04231854900717735, 0.026827892288565636, -0.008155322633683681, -0.02770135924220085, -0.004320538602769375, -0.0028387652710080147, -0.001075121108442545, 0.004021955654025078, 0.039573367685079575, -0.022585341706871986, 0.07964586466550827, 0.007014468777924776, 0.016711726784706116, -0.046988919377326965, 0.03326302021741867, -0.0519801564514637, 0.006074155680835247, -0.011889836750924587, -0.06912861764431, 0.025045307353138924, -0.03857512027025223, -0.07429810613393784, 0.032514337450265884, 0.026346594095230103, 0.07657981663942337, -0.03315606713294983, 0.03722035884857178, -0.0003782420826610178, 0.014011112041771412, 0.03786208853125572, 0.009051071479916573, 0.025205740705132484, 0.004732761066406965, 0.022175347432494164, -0.051374077796936035, 0.04802281782031059, 0.007830001413822174, 0.028093526139855385, 0.019857987761497498, -0.02288838103413582, -0.03925250470638275, 0.028253959491848946, -0.026631807908415794, -0.016346296295523643, -0.04160551354289055, -0.05497489497065544, -0.027843965217471123, -0.019358864054083824, 0.0203036330640316, 0.007402180694043636, 0.017567366361618042, -0.06866514682769775, 0.031177397817373276, 0.011711577884852886, -0.019251909106969833, 0.02875308319926262, 0.03171217441558838, -0.008395971730351448, -0.01736236922442913, 0.06110698729753494, 0.006239044480025768, -0.0038169585168361664, -0.05768442526459694, -0.018155619502067566, 0.044208087027072906, -0.015588698908686638, 0.0658843144774437, -0.09597433358430862, 0.014430019073188305, -0.04941323399543762, 0.028396565467119217, -0.04281767085194588, -0.020588846877217293, 0.04356635734438896, 0.08820226788520813, 0.006230131722986698, -0.0030838707461953163, 0.0029234380926936865, -0.005820137448608875, 0.020963190123438835, 0.03992988541722298, 0.06221218779683113, -0.01868148148059845, -0.016542380675673485, -0.03048218972980976, -0.0016789714572951198, 0.02447488158941269, -0.01156897097826004, 0.05772007629275322, 0.0317656509578228, 0.0144834965467453, 0.024278797209262848, -0.013021777383983135, 0.06513562798500061, 0.026471374556422234, -0.01616803929209709, 0.06919991970062256, 0.07429810613393784, 0.04770195484161377, -0.015339137054979801, 0.028574824333190918, 0.0373629629611969, 0.06577735394239426, -0.03219347074627876, 0.041142042726278305, -0.016408687457442284, 0.06288956850767136, 0.13668856024742126, 0.01882408931851387, 0.009911168366670609, 0.05194450169801712, 0.033833447843790054, -0.002402032259851694, -0.06727472692728043, -0.006715885829180479, 0.018360616639256477, 0.029216554015874863, -0.019127128645777702, -0.046668052673339844, -0.000159179195179604, -0.06042960286140442, 0.07162423431873322, -0.022032741457223892, -0.03636471927165985, 0.014144805260002613, -0.029109599068760872, -0.10524377226829529, 0.017692148685455322, 0.011809620074927807, 0.014447844587266445, 0.007415550295263529, -0.05169494077563286, -0.008948572911322117, -0.0071481624618172646, 0.006479693576693535, 0.042853325605392456, 0.002869960619136691, -0.019162779673933983, -0.06374520808458328, 0.03046436421573162, 0.015276746824383736, -0.03340562805533409, 0.013850679621100426, 0.002651593880727887, -0.006559909787029028, 0.016925636678934097, -0.030999138951301575, -0.02579399384558201, -0.018128881230950356, -0.0100181233137846, -0.01571347936987877, -0.039644673466682434, 0.008859443478286266, 0.07301464676856995, 0.046810660511255264, -0.0657060518860817, 0.020998841151595116, -0.013476336374878883, 0.012495915405452251, 0.04199768230319023, -0.0729076936841011, -0.01752280257642269, 0.0302326288074255, 0.025366172194480896, -0.01740693487226963, 0.04738108813762665, 0.011684839613735676, 0.05650791898369789, 0.04039335623383522, 0.018396269530057907, -0.0101518165320158, -0.008204343728721142, -0.0032509879674762487, 0.010463769547641277, 0.032246947288513184, 0.020927539095282555, -0.04631153866648674, -0.01880626380443573, -0.026988323777914047, -0.028539173305034637, 0.04388722404837608, -0.025027481839060783, 0.026489201933145523, 0.003337888978421688, 0.01512522716075182, 0.05012626573443413, -0.013413946144282818, 0.004683739971369505, -0.016889985650777817, -0.005334383342415094, 0.004567871801555157, -0.029270032420754433, 0.01900234818458557, -0.04210463911294937, 0.03714905306696892, -0.035312991589307785, -0.006586648523807526, 0.06656169146299362, 0.05222971737384796, 0.00023382491781376302, 0.0005977227701805532, -0.006738168187439442, 0.051195818930864334, -0.016346296295523643, 0.04053596407175064, -0.054119255393743515, -0.03484952077269554, 0.008226625621318817, 0.020909711718559265, 0.058326154947280884, 0.02140883542597294, 0.020517544820904732, -0.05083930119872093, -0.0016823138576000929, 0.005526010878384113, 0.039822932332754135, -0.033904749900102615, 0.03137348219752312, -0.024100538343191147, -0.048593245446681976, 0.017995188012719154, -0.01602543145418167, 0.04741673916578293, -0.013966547325253487, 0.03199738636612892, 0.11836358904838562, -0.04720282927155495, 0.013458510860800743, -0.0065732793882489204, -0.035562556236982346, 0.0010662081185728312, 0.019893638789653778, 0.07715024054050446, -0.01231765653938055, -0.04627588391304016, 0.014225021935999393, -0.03918119892477989, -0.012380046769976616, -0.01752280257642269, -0.06770254671573639, 0.038432516157627106, 0.017959535121917725, 0.004445319529622793, 0.01004486158490181, -0.026863543316721916, 0.03517038747668266, 0.0013971003936603665, 0.003634243505075574, 0.044136784970760345, 0.055759232491254807, -0.026542678475379944, -0.04791586473584175, 0.014635016210377216, 0.014866752550005913, 0.06246174871921539, -0.07401289790868759, -0.03017915040254593, -0.024813571944832802, 0.0073665292002260685, 0.007509136106818914, -0.04748804122209549, 0.07240857183933258, -0.007321964483708143, 0.0246353130787611, 0.06517127901315689, 0.024189667776226997, 0.029216554015874863, -0.04616893082857132, 0.027754835784435272, 0.03850381821393967, -0.007112510967999697, 0.0377194806933403, 0.03850381821393967, 0.014991533011198044, 0.04624023288488388, 0.025900948792696, -0.03907424584031105, -0.04335244745016098, -0.005312100984156132, 0.005040256772190332, -0.035473424941301346, -0.07094684988260269, -0.004247006960213184, 0.022478386759757996, -0.008257821202278137, -0.08449449390172958, -0.009518999606370926, 0.012843519449234009, 0.022496212273836136, -0.01457262597978115, -0.06759559363126755, 0.0289669930934906, -0.013369381427764893, -0.02611485868692398, -0.029519593343138695, 0.01717519946396351, -0.019840162247419357, -0.05351317673921585, -0.004097715485841036, -0.01732671819627285, 0.030981313437223434, -0.008097388781607151, -0.028289610520005226, 0.04663240164518356, -0.011292670853435993, 0.005214058794081211, -0.02042841538786888, 0.03010784648358822, -0.011435277760028839, 0.032389555126428604, 0.03618646040558815, -0.05529576167464256, -0.0014427790883928537, -0.019786683842539787, -0.014741971157491207, 0.0044943406246602535, 0.0035941353999078274, -0.011301583610475063, -0.008694554679095745, -0.006818384397774935, -0.020553195849061012, -0.09433435648679733, -0.027968745678663254, -0.030999138951301575, -0.016373036429286003, -0.032282598316669464, -0.04495677351951599, -0.02187230810523033, 0.007045663893222809, -0.01862800493836403, 0.03711340203881264, -0.09526129812002182, 0.0291452519595623, -0.035437773913145065, 0.01743367314338684, 0.02155144326388836, 0.004750587046146393, -0.011943314224481583, 0.007575982715934515, -0.0005278120515868068, 0.05194450169801712, -0.016346296295523643, 0.0006317032966762781, 0.016569120809435844, 0.0893431231379509, 0.005646335426717997, -0.032621290534734726, 0.03896728903055191, -0.03479604423046112, -0.08435188233852386, 0.017014766111969948, 0.005129386205226183, -0.017041504383087158, -0.07715024054050446, -0.057185299694538116, 0.03326302021741867, 0.07133901864290237, -0.06067916750907898, 0.03338780254125595, -0.016292819753289223, -0.014964794740080833, -0.006127633154392242, 0.031034789979457855, -0.008208800107240677, 0.026239639148116112, -0.0682373195886612, -0.022496212273836136, -0.0005289261462166905, -0.04153421148657799, 0.013235687278211117, -0.0723729208111763, 0.027897441759705544, -0.09019876271486282, 0.07141032069921494, 0.04299592971801758, 0.04773760586977005, -0.0008283446077257395, 0.029840460047125816, -0.024760093539953232, -0.009028788655996323, -0.011239193379878998, 0.01884191483259201, -0.004111084621399641, -0.07629460096359253, 0.03563385829329491, -0.0274339709430933, -0.012513740919530392, 0.05194450169801712, -0.006666864734143019, 0.042710717767477036, -0.04424373805522919, -0.026346594095230103, -0.005182863678783178, 0.010169642977416515, -0.007255117874592543, 0.0701981633901596, 0.0023151312489062548, -0.012237440794706345, -0.03213999420404434, -0.02606138028204441, -0.06656169146299362, 0.021337533369660378, 0.008338037878274918, -0.025562256574630737, -0.010499420575797558, 0.03588341921567917, 0.0322112962603569, 0.008623250760138035, -0.0582905039191246, 0.042532458901405334, -0.04064292088150978, -0.022157521918416023, -0.06199827790260315, 0.011069848202168941, -0.01887756586074829, -0.03281737491488457, -0.0058335065841674805, -0.02443922869861126, 0.02606138028204441, -0.027754835784435272, 0.048557594418525696, 0.07750675827264786, -0.03033958375453949, 0.002213746774941683, 0.0070679462514817715, 0.030749578028917313, -0.02600790373980999, -0.0029234380926936865, -0.0018527734791859984, -0.03025045432150364, 0.011604622937738895, -0.06492171436548233, -0.0017636442789807916, -0.004986779298633337, -0.07515375316143036, 0.01221961434930563, -0.0026337681338191032, 0.04203333705663681, -0.011684839613735676, 0.002769690239802003, -0.0012544936034828424, 0.017772363498806953, 0.03593689575791359, 0.06795211136341095, 0.011230280622839928, -0.039680324494838715, 0.019162779673933983, -0.0229240320622921, 0.0404290109872818, -0.06666865199804306, 0.008195430971682072, -0.024243144318461418, -0.014064589515328407, 0.009051071479916573, 0.0022950770799070597, -0.021373184397816658, -0.01363676879554987, -0.03354823589324951, -0.0213910099118948, 0.019144954159855843, 0.05768442526459694, -0.015463917516171932, -0.0001261038996744901, -0.04812977463006973, 0.023726195096969604, -0.044208087027072906, -0.022139696404337883, -0.03484952077269554, 0.036970797926187515, 0.026382246986031532, -0.00938530545681715, -0.06060786172747612, 0.024136189371347427, 0.00936747994273901, -0.04784455895423889, 0.04648979753255844, 0.015535221435129642, -0.0815710499882698, -0.035116907209157944, -0.01306634210050106, -0.03563385829329491, -0.07750675827264786, -0.04723848029971123, 0.026685286313295364, 0.009973558597266674, -0.05490359291434288, -0.048593245446681976, -0.029929589480161667, 0.018948869779706, -0.06221218779683113, -0.002798657165840268, -0.06873644888401031, -0.02194361202418804, 0.05814789608120918, 0.0031930538825690746, 0.006230131722986698, 0.007210553158074617, 0.0781484916806221, 0.009599216282367706, -0.07137466967105865, 0.06274696439504623, -0.055367063730955124, 0.03427909314632416, 0.013003951869904995, -0.012032443657517433, -0.039644673466682434, -0.051088862121105194, -0.02306663990020752, 0.04310288652777672, 0.0554027184844017, 0.008329124189913273, 0.012032443657517433, 0.031248701736330986, 0.024920526891946793, 0.019162779673933983, 0.0029479486402124166, 0.0215692687779665, 0.054154906421899796, -0.04203333705663681, -0.014100240543484688, -0.003170771524310112, -0.011096586473286152, 0.004182388074696064, 0.011943314224481583, 0.006296978797763586, -0.0203036330640316, -0.029965240508317947, 0.0030237084720283747, 0.025419650599360466, -0.011052021756768227, 0.018182359635829926, 0.010160730220377445, -0.015330224297940731, -0.007526961620897055, -0.032621290534734726, -0.032621290534734726, 0.012406785972416401, -0.0008734662551432848, -0.024884875863790512, 0.012460263445973396, -0.04720282927155495, -0.023334026336669922, -0.01615912653505802, 0.020856235176324844, 0.02042841538786888, -0.009180308319628239, -0.017995188012719154, -0.010454855859279633, -0.033708665519952774, -0.029715677723288536, -0.01374372374266386, -0.02442140318453312, 0.017620844766497612, -0.01724650152027607, 0.06944947689771652, 0.03591907024383545, -0.03761252760887146, 0.04082117974758148, 0.004498797003179789, -0.020695801824331284, 0.019091477617621422, -0.03640037029981613, -0.03900294378399849, -0.012023529969155788, 0.001567560015246272, 0.009314002469182014, 0.01021420769393444, 0.010374640114605427, 0.023387504741549492, -0.007763154339045286, -0.04609762877225876, -0.0287887342274189, -0.015651090070605278, -0.003716688137501478, 0.013939808122813702, -0.08577795326709747, 0.022175347432494164, -0.03581211715936661, -0.01295938715338707, -0.04424373805522919, 0.009429870173335075, -0.0013803886249661446, -0.009296176955103874, 0.02877090871334076, 0.04631153866648674, -0.028093526139855385, -0.004438634496182203, 0.055509671568870544, -0.03189042955636978, -0.016595859080553055, -0.03171217441558838, -0.0013569921720772982, 0.0635313019156456, -0.013913069851696491, 0.022264476865530014, 0.038111649453639984, -0.008837161585688591, -0.04880715534090996, -0.03461778536438942, -0.06805906444787979, -0.0030237084720283747, -0.032585639506578445, 0.005534924101084471, 0.01002703607082367, 0.005517098121345043, -0.05023322254419327, 0.036792539060115814, 0.0377194806933403, 0.01070441771298647, -0.03057131916284561, -0.026703111827373505, 0.024011408910155296, 0.021034494042396545, 0.0215692687779665, -0.021034494042396545, -0.04224724695086479, -0.023975757881999016, -0.012558305636048317, -0.03422561660408974, 0.0026359963230788708, -0.002711756154894829, 0.019786683842539787, -0.012495915405452251, -0.024260971695184708, -0.025312695652246475, -0.009928993880748749, 0.0371847078204155, -0.049520187079906464, -0.035509075969457626, -0.04805846884846687, 0.0010444829240441322, -0.009233785793185234, -0.03301345929503441, 0.006889687851071358, 0.023726195096969604, -0.03315606713294983, 0.010401378385722637, -0.0322112962603569, 0.019644077867269516, 0.017834754660725594, 0.05326361581683159, -0.04445764794945717, 0.09297959506511688, -0.02165839821100235, -0.03183695301413536, 0.02308446541428566, -0.0229240320622921, 0.013369381427764893, -0.01524109486490488, -0.046775009483098984, 0.0978282243013382, -0.020767105743288994, -0.02886003814637661, 0.025366172194480896, 0.025187915191054344, -0.0012745476560667157, -0.01900234818458557, -0.0008199887233786285, -0.0006094209966249764, -0.03889598697423935, 0.03517038747668266, 0.004835259635001421, 0.002229344332590699, -0.0010561811504885554, -0.006894144229590893, 0.010829199105501175, 0.07593808323144913, 0.009750735945999622, -0.035241689532995224, 0.04017944633960724, 0.0036364716943353415, -0.01164027489721775, 0.035116907209157944, -0.010927241295576096, 0.048379335552453995, -0.029965240508317947, 0.02283490262925625, 0.08385276049375534, -0.014287412166595459, -0.00856086052954197, 0.009670519270002842, 0.022763600572943687, -0.029323510825634003, -0.009723996743559837, 0.006252414081245661, 0.010071600787341595, 0.058433108031749725, 0.025669211521744728, 0.003224249230697751, -0.011604622937738895, -0.007094684988260269, -0.020553195849061012, -0.02593659982085228, 0.029323510825634003, 0.020891886204481125, -0.032585639506578445, -0.003293324261903763, 0.021907959133386612, 0.033993881195783615, -0.04235420003533363, 0.025205740705132484, 0.0013636768562719226, 0.06805906444787979, 0.041427258402109146, -0.03786208853125572, 0.014421106316149235, -0.011248106136918068, 0.019180605188012123, 0.010953979566693306, 0.02447488158941269, -0.00795032549649477, 0.05654357001185417, -0.025027481839060783, -0.009617041796445847, -0.05023322254419327, -0.036935143172740936, 0.006247957702726126, 0.011096586473286152, 0.0698416456580162, -0.025098785758018494, 0.03213999420404434, 0.02026798203587532, -0.0005255838041193783 ]
418
bitmath
__rshift__
Right shift, ex: 100 >> 2 A right shift by n bits is equivalent to division by pow(2, n).
def __rshift__(self, other): """Right shift, ex: 100 >> 2 A right shift by n bits is equivalent to division by pow(2, n).""" shifted = int(self.bits) >> other return type(self)(bits=shifted)
(self, other)
[ -0.0568464957177639, 0.00859987735748291, 0.002083591418340802, 0.056306470185518265, 0.004738708026707172, -0.03126737102866173, -0.04892614856362343, 0.03448951244354248, 0.0045654503628611565, -0.021474942564964294, 0.04881814122200012, 0.04766609147191048, 0.06303876638412476, 0.062354736030101776, -0.018594816327095032, 0.053642354905605316, -0.010683468542993069, 0.028045231476426125, -0.004164932761341333, -0.0023108513560146093, 0.011376499198377132, 0.014490636065602303, 0.06271475553512573, 0.03578557074069977, -0.0024076057597994804, 0.07862745225429535, -0.0008977894322015345, 0.006466784048825502, -0.054002370685338974, -0.01053946278989315, -0.0426618717610836, -0.042553868144750595, 0.01062046643346548, -0.005454239435493946, -0.011799518018960953, -0.05328233912587166, -0.06656692177057266, 0.06440682709217072, -0.05353435128927231, 0.059114594012498856, 0.01583169400691986, -0.012429545633494854, 0.019062837585806847, -0.0662069022655487, -0.018126795068383217, -0.05839456245303154, 0.004484446719288826, -0.0267131719738245, 0.008950892835855484, -0.03106936439871788, 0.005089723505079746, 0.02287900447845459, -0.0030398834496736526, -0.014913654886186123, 0.041617825627326965, 0.021816957741975784, 0.014814650639891624, 0.02698318473994732, -0.00825786218047142, 0.005872757639735937, -0.023761043325066566, 0.03409349545836449, -0.02714519202709198, 0.028189238160848618, 0.041113805025815964, -0.03313945606350899, -0.0812915712594986, -0.043993931263685226, 0.0039939251728355885, 0.06069866567850113, -0.02986331097781658, 0.049034152179956436, 0.02826124057173729, 0.003300894983112812, -0.01647072285413742, 0.013590596616268158, -0.01840580813586712, -0.053894367069005966, 0.0700230747461319, -0.012564551085233688, 0.03697362169623375, 0.028369246050715446, 0.0107644721865654, 0.03515554219484329, -0.045974016189575195, -0.0474860854446888, 0.018423808738589287, -0.05115824565291405, 0.01181751862168312, -0.08035552501678467, -0.04438994824886322, -0.011826518923044205, -0.022410983219742775, -0.022572990506887436, 0.011322497390210629, -0.004644203931093216, -0.04208584874868393, -0.008419869467616081, -0.04943016916513443, -0.02084491401910782, -0.027433203533291817, 0.03790966421365738, -0.04791810363531113, -0.007996850647032261, 0.05094223469495773, 0.01843280903995037, -0.015300671570003033, -0.024193061515688896, -0.09490016847848892, -0.005985262803733349, 0.00815435778349638, 0.02586713619530201, -0.06599089503288269, 0.020196886733174324, -0.054506391286849976, 0.04172583296895027, 0.011970525607466698, 0.017343761399388313, 0.01042245700955391, 0.01904483512043953, 0.057746533304452896, -0.020808912813663483, 0.03115936741232872, 0.0578545406460762, 0.008937392383813858, 0.0612746886909008, 0.028639256954193115, -0.012222536839544773, -0.024031054228544235, -0.03195140138268471, -0.00044270692160353065, -0.004369691945612431, -0.045469995588064194, 0.032401423901319504, 0.040177762508392334, 0.043921928852796555, 0.05529842525720596, 0.026677170768380165, -0.0019260845147073269, -0.012456546537578106, 0.024697083979845047, 0.03619958832859993, 0.09180402755737305, 0.039997756481170654, -0.007366823498159647, 0.009495416656136513, 0.028495250269770622, 0.08467571437358856, 0.0597626231610775, 0.028027230873703957, 0.03565956652164459, -0.005967261735349894, 0.06393880397081375, 0.08395568281412125, -0.005985262803733349, 0.08546774834394455, 0.015597684308886528, -0.0020093382336199284, -0.0372256338596344, 0.006817799061536789, -0.006772797089070082, -0.017280759289860725, -0.011151489801704884, -0.07517129927873611, 0.018198799341917038, -0.011907522566616535, 0.07502729445695877, -0.01996287703514099, 0.03303144872188568, 0.015336672775447369, 0.04669404774904251, -0.04619002714753151, 0.016371717676520348, -0.025075100362300873, -0.03371547907590866, 0.04226585477590561, -0.0367756150662899, 0.02005288004875183, -0.022068968042731285, -0.007231817580759525, 0.055010415613651276, -0.008617877960205078, -0.07171514630317688, -0.04593801498413086, 0.05378635972738266, 0.0008961018174886703, -0.004275187849998474, 0.01302357204258442, 0.02673117257654667, 0.03690161928534508, 0.023347023874521255, -0.0039984253235161304, -0.0004691455978900194, -0.028459249064326286, 0.021150927990674973, -0.03866569697856903, -0.03423750400543213, 0.018036792054772377, 0.07689937204122543, 0.08359567075967789, -0.022933006286621094, 0.08201160281896591, 0.024229062721133232, 0.030097320675849915, 0.0072858198545873165, -0.024175060912966728, 0.04763009026646614, 0.02475108578801155, -0.0327974408864975, -0.01815379597246647, 0.02397705242037773, -0.012096530757844448, 0.041365817189216614, 0.002242223359644413, 0.016848739236593246, -0.005202228203415871, -0.06314677000045776, -0.007038308773189783, 0.03049333766102791, -0.008374867960810661, 0.02723519504070282, -0.011115487664937973, -0.07401924580335617, -0.004117680713534355, 0.04907015338540077, -0.0055622439831495285, -0.029251283034682274, -0.10318052768707275, -0.012096530757844448, 0.027505207806825638, 0.0735512301325798, 0.016686731949448586, 0.01450863666832447, -0.04489396885037422, 0.028297241777181625, -0.014715645462274551, -0.010512460954487324, -0.010449458844959736, -0.0011531756026670337, 0.035803571343421936, -0.05061822012066841, 0.03668560832738876, 0.029341287910938263, 0.013365586288273335, 0.0061427694745361805, -0.014868652448058128, 0.004117680713534355, 0.04619002714753151, 0.028495250269770622, 0.04968218132853508, -0.010026440024375916, -0.045361991971731186, -0.03592957556247711, 0.039313726127147675, 0.050834231078624725, 0.01663273014128208, -0.019944874569773674, -0.0558384507894516, -0.007398324552923441, -0.006322777364403009, 0.006858300883322954, 0.02928728610277176, 0.003195140277966857, -0.08496373146772385, -0.03303144872188568, -0.03826967999339104, -0.010035440325737, 0.021294934675097466, 0.03132137656211853, 0.04968218132853508, 0.08553975075483322, -0.026335155591368675, -0.051014240831136703, 0.02098892070353031, -0.048098109662532806, -0.013284582644701004, 0.0617787130177021, 0.015417676419019699, 0.01831580325961113, -0.05846656486392021, 0.008464871905744076, 0.03544355556368828, -0.028873266652226448, -0.009360411204397678, -0.055874451994895935, 0.026353156194090843, 0.021618949249386787, 0.00015891322982497513, 0.00308488542214036, -0.009675424546003342, 0.07481128722429276, 0.042985886335372925, 0.00755583168938756, 0.0011492379708215594, 0.09274007380008698, -0.004230185877531767, -0.062354736030101776, -0.020700909197330475, 0.05529842525720596, 0.03988974913954735, -0.05565844103693962, -0.07819543033838272, -0.04791810363531113, 0.04287788271903992, 0.008874389342963696, -0.04561400040984154, 0.05796254426240921, -0.002542611677199602, -0.01173651497811079, 0.07920347899198532, -0.007627834565937519, 0.007015808019787073, -0.05709850788116455, -0.004896214697510004, 0.027433203533291817, -0.038809701800346375, -0.0003223266394343227, 0.059798624366521835, -0.016209712252020836, 0.08071554452180862, 0.013050572946667671, -0.026785176247358322, -0.012438545934855938, -0.013473591767251492, -0.005782753694802523, -0.031015360727906227, -0.09036396443843842, -0.028045231476426125, 0.012069529853761196, 0.011628510430455208, -0.0715351402759552, 0.009927435778081417, 0.04320189729332924, 0.010368455201387405, -0.017685776576399803, -0.011439502239227295, 0.06343478709459305, 0.03166338801383972, -0.027361201122403145, -0.011790517717599869, 0.03988974913954735, -0.0036519102286547422, 0.00595826143398881, -0.01434662938117981, 0.03421950340270996, 0.021654950454831123, -0.009112900123000145, 0.01656072773039341, 0.009702425450086594, -0.0020475899800658226, 0.05411037430167198, -0.08561176061630249, -0.01382460631430149, -0.02210497111082077, -0.004635203629732132, -0.0014366880059242249, -0.0031051363330334425, 0.024985097348690033, 0.002801372902467847, -0.04892614856362343, -0.012105531059205532, -0.021636949852108955, -0.00802835263311863, 0.026245152577757835, -0.04035777226090431, 0.025903137400746346, -0.0876278430223465, 0.01954885758459568, -0.01922484301030636, -0.00757833244279027, -0.008325365372002125, -0.027019185945391655, -0.024787086993455887, -0.01369860116392374, -0.015003658831119537, 0.034273505210876465, -0.021996965631842613, 0.013887609355151653, -0.017865784466266632, -0.048098109662532806, 0.021636949852108955, -0.012564551085233688, -0.03346346691250801, 0.022428983822464943, 0.005746752023696899, 0.061850715428590775, -0.015939699485898018, 0.020358894020318985, 0.03618158772587776, 0.043237898498773575, -0.04867413640022278, 0.01827080175280571, 0.008721382357180119, -0.05094223469495773, -0.07322721183300018, 0.0034494013525545597, -0.015129663981497288, 0.024445073679089546, 0.008865389041602612, -0.020376894623041153, 0.02176295593380928, 0.035623565316200256, -0.0039939251728355885, 0.02304101176559925, 0.05119424685835838, 0.036163587123155594, 0.018918830901384354, -0.0019553357269614935, -0.022482987493276596, -0.0445699580013752, -0.09093999117612839, -0.010908478870987892, 0.0031546384561806917, -0.019656863063573837, 0.04284188151359558, -0.06170670688152313, 0.04233785718679428, 0.021816957741975784, 0.02741520293056965, 0.037009622901678085, 0.008644879795610905, -0.0051392256282269955, -0.0037464143242686987, 0.0001753670658217743, 0.00002320414387213532, 0.04194184020161629, 0.014796649105846882, 0.04795410484075546, -0.08395568281412125, 0.07038308680057526, -0.005836755968630314, -0.0007779716397635639, -0.023959051817655563, 0.013131576590240002, 0.041365817189216614, -0.06915903836488724, -0.024643082171678543, 0.028549253940582275, -0.029683303087949753, 0.04586601257324219, 0.059798624366521835, 0.010512460954487324, 0.019908873364329338, -0.0416538268327713, 0.011754515580832958, -0.05778253450989723, 0.044425949454307556, 0.028639256954193115, -0.06199472025036812, -0.0009951061801984906, 0.020790912210941315, 0.008334365673363209, 0.022068968042731285, 0.039385728538036346, -0.006493784952908754, -0.0631827712059021, -0.051770273596048355, -0.037441644817590714, 0.0035146542359143496, -0.04637003690004349, -0.008433369919657707, -0.025039099156856537, -0.044677961617708206, 0.019422853365540504, -0.017226755619049072, 0.006889802403748035, 0.00441919406875968, -0.05079822987318039, -0.030169324949383736, 0.005931260529905558, 0.010125444270670414, -0.05511841922998428, -0.006367779336869717, -0.01191652286797762, 0.009747427888214588, 0.029935313388705254, -0.03173539415001869, -0.04291388392448425, -0.002983630867674947, -0.06379479914903641, -0.02997131459414959, -0.01653372496366501, -0.006453283131122589, -0.0037576649338006973, 0.0008240986499004066, -0.053066328167915344, -0.01408561784774065, 0.0387376993894577, 0.02406705543398857, 0.026155147701501846, 0.018162796273827553, 0.06390280276536942, -0.07085110992193222, 0.03569556772708893, -0.008406369015574455, 0.009720426984131336, -0.06246274337172508, 0.026587167754769325, -0.00048686511581763625, 0.016866739839315414, -0.015813693404197693, -0.04197784140706062, -0.06051865592598915, -0.01792878657579422, 0.015597684308886528, 0.02509310096502304, -0.058682575821876526, 0.007609833963215351, 0.022590991109609604, -0.0021195930894464254, 0.018846826627850533, 0.01692974381148815, -0.019998878240585327, 0.03020532615482807, -0.009981438517570496, -0.024715084582567215, -0.016389720141887665, 0.07311920821666718, -0.024985097348690033, -0.00078415940515697, 0.030439335852861404, -0.03331946209073067, -0.030799351632595062, -0.026857178658246994, -0.002207346959039569, -0.04176183417439461, -0.0040006753988564014, -0.03992575407028198, 0.03357147425413132, 0.015255669131875038, -0.06131068989634514, -0.028837265446782112, -0.04395793005824089, 0.01583169400691986, 0.004137931391596794, 0.05565844103693962, -0.0720391646027565, 0.049826186150312424, 0.041797835379838943, -0.04302188754081726, -0.018252801150083542, -0.01503065973520279, 0.051950279623270035, 0.024013053625822067, -0.06588289141654968, 0.04975418373942375, -0.032491426914930344, 0.006066266447305679, -0.02664116956293583, -0.025237107649445534, -0.09619621932506561, -0.05652248114347458, 0.04039377346634865, 0.024553077295422554, 0.01592169888317585, -0.013545594178140163, -0.019062837585806847, 0.016074705868959427, 0.021978965029120445, 0.040501777082681656, 0.002333352342247963, 0.02244698442518711, 0.048350121825933456, -0.01809079386293888, -0.053210336714982986, 0.010008439421653748, 0.044101934880018234, -0.022825002670288086, -0.03740564361214638, 0.027703216299414635, -0.01382460631430149, 0.056126464158296585, -0.009477416053414345, 0.016623729839920998, 0.007267818786203861, 0.044785965234041214, 0.013887609355151653, -0.016641730442643166, -0.0012206785613670945, -0.010827475227415562, -0.05857457220554352, -0.0010491085704416037, 0.02440907061100006, -0.07689937204122543, -0.009243405424058437, -0.04651404172182083, -0.026767175644636154, 0.029305286705493927, -0.026911180466413498, 0.03610958531498909, 0.03340946510434151, 0.007501829415559769, -0.03902571275830269, -0.04539799317717552, 0.02340102754533291, -0.06462283432483673, -0.03232941776514053, -0.0181357953697443, -0.014589640311896801, 0.008770884945988655, 0.013986613601446152, -0.021402940154075623, 0.028405247256159782, -0.00015103787882253528, -0.015345673076808453, 0.014004615135490894, -0.011322497390210629, 0.01674073562026024, -0.048458125442266464, -0.039385728538036346, -0.009909435175359249, -0.0009276032214984298, 0.05025820434093475, 0.013932611793279648, -0.006453283131122589, -0.011079486459493637, -0.029161280021071434, -0.04745008423924446, -0.025633124634623528, -0.05807054787874222, -0.045794010162353516, 0.003915172070264816, -0.04590201377868652, 0.010692468844354153, -0.05328233912587166, 0.0013883109204471111, 0.006858300883322954, 0.02235698141157627, 0.0455779992043972, 0.000944478961173445, -0.027127191424369812, -0.03322945907711983, 0.09533218294382095, -0.07088711112737656, -0.030349332839250565, -0.018540814518928528, -0.03074534982442856, 0.06483884900808334, -0.0006806548917666078, 0.01169151347130537, 0.024139059707522392, 0.019152840599417686, -0.04874613881111145, -0.024967096745967865, -0.05119424685835838, -0.038881707936525345, 0.02219497412443161, -0.0026326156221330166, -0.033679477870464325, -0.010791474021971226, -0.05022220313549042, 0.04244586452841759, -0.009054397232830524, 0.03202340379357338, 0.01045845914632082, -0.0662069022655487, 0.078483447432518, 0.004452945664525032, 0.016074705868959427, -0.04345390573143959, -0.017937786877155304, -0.024265065789222717, 0.012780561111867428, 0.013365586288273335, -0.02901727333664894, 0.020790912210941315, 0.000526523101143539, -0.00402542669326067, 0.004900715313851833, -0.03587557375431061, 0.02869325876235962, -0.05439838767051697, -0.03916971758008003, -0.010944480076432228, -0.004050177987664938, -0.03306744992733002, -0.015723690390586853, -0.005922259762883186, 0.013500592671334743, -0.011700513772666454, -0.06044665351510048, 0.03859369456768036, -0.0362715907394886, -0.00787084549665451, 0.02005288004875183, -0.0215289443731308, -0.008721382357180119, 0.05346234515309334, -0.06422682106494904, -0.04240985959768295, 0.044425949454307556, 0.022554989904165268, -0.002688867971301079, -0.012267538346350193, -0.04831412062048912, 0.004124430939555168, -0.010917479172348976, -0.05994262918829918, 0.08885189890861511, -0.03600158169865608, 0.013914610259234905, -0.03029532916843891, 0.03348147124052048, -0.01815379597246647, -0.023779043927788734, 0.00499521940946579, 0.0011053610360249877, -0.018054792657494545, 0.04150982201099396, 0.0034088995307683945, 0.008572876453399658, 0.09007595479488373, 0.004927716217935085, -0.0166777316480875, 0.005337234120815992, -0.040933795273303986, -0.008280363865196705, 0.039313726127147675, -0.038881707936525345, 0.048602133989334106, -0.03160938620567322, -0.010863476432859898, 0.042553868144750595, 0.01792878657579422, 0.017487768083810806, -0.01815379597246647, 0.018558815121650696, 0.022410983219742775, -0.02415706031024456, 0.02971930429339409, 0.027127191424369812, -0.0018405808368697762, 0.019872872158885002, 0.023671038448810577, 0.057674530893564224, 0.01561568584293127, -0.02757721021771431, -0.005877257790416479, 0.08618777990341187, 0.022212974727153778, 0.026245152577757835, 0.02502109855413437, 0.04284188151359558, -0.03715363144874573, 0.01605670526623726, 0.019692864269018173, 0.016731733456254005, 0.06350678950548172, 0.0009219779749400914, -0.018378807231783867, 0.0431658960878849, -0.037441644817590714, 0.04003375768661499, -0.045541997998952866, 0.0057287514209747314, 0.0106654679402709, -0.016200711950659752, -0.008266862481832504, 0.0028531253337860107, 0.0352635495364666, -0.03304944932460785, -0.0602666437625885, -0.015570683404803276, 0.02935928851366043, 0.02971930429339409, -0.0012038028798997402, 0.027973227202892303, 0.016578728333115578 ]
419
bitmath
__rsub__
null
def __rsub__(self, other): # num - bm = num return other - self.value
(self, other)
[ 0.024300577118992805, -0.03787776827812195, 0.019388575106859207, 0.08274303376674652, -0.053755298256874084, -0.0705668032169342, -0.021291110664606094, 0.010247753001749516, 0.023159056901931763, -0.051403071731328964, -0.008267384953796864, 0.0006723736296407878, 0.0410601943731308, 0.030976751819252968, -0.048843298107385635, 0.051748987287282944, 0.04541873186826706, 0.04140610992908478, 0.014182543382048607, -0.01261727511882782, -0.015721868723630905, 0.005975693929940462, -0.00483849598094821, 0.04659484326839447, -0.014822487719357014, 0.07333412766456604, 0.011657359078526497, -0.03919224813580513, -0.020409027114510536, -0.011657359078526497, -0.016361812129616737, 0.0013328564818948507, 0.007584201637655497, -0.02926446869969368, -0.007891202345490456, -0.06835294514894485, -0.012349190190434456, 0.06907936930656433, -0.08052917569875717, 0.045799240469932556, 0.024767564609646797, -0.0686296746134758, 0.07540962100028992, 0.014182543382048607, 0.03201449662446976, -0.029039623215794563, 0.010524485260248184, -0.009953724220395088, -0.007999300956726074, 0.022138604894280434, -0.0009231625008396804, 0.022415338084101677, 0.006818863097578287, 0.030976751819252968, -0.039123065769672394, 0.07561717182397842, 0.03697839006781578, 0.07617063820362091, -0.03026762418448925, 0.03367489203810692, -0.018437307327985764, -0.009028399363160133, -0.049050845205783844, -0.06257615238428116, 0.02132570371031761, -0.023470381274819374, -0.03953816369175911, 0.002414924092590809, 0.001026937272399664, 0.06835294514894485, -0.01919832080602646, 0.041475292295217514, 0.024300577118992805, 0.0063043138943612576, 0.025632353499531746, -0.0021046807523816824, 0.043619971722364426, 0.03863878548145294, 0.03562931716442108, -0.05735282227396965, 0.06295666098594666, -0.002879748120903969, 0.054239582270383835, 0.012418373487889767, -0.037566445767879486, -0.0332597941160202, 0.01504733320325613, -0.05268296226859093, 0.00429584039375186, 0.0004096939228475094, -0.06686550378799438, -0.005396285094320774, -0.02253640815615654, -0.015194347128272057, 0.01919832080602646, 0.02018418163061142, -0.039123065769672394, -0.0037769670598208904, -0.014122008346021175, -0.05403203144669533, 0.0393306165933609, 0.07361086457967758, -0.05396284908056259, -0.03125348314642906, 0.04998482018709183, 0.00791282206773758, -0.003377001965418458, -0.044830676168203354, -0.012651867233216763, 0.023470381274819374, -0.025632353499531746, 0.10280614346265793, -0.08530281484127045, 0.03225664049386978, -0.05721445754170418, -0.004687157925218344, -0.05520814657211304, -0.006563750561326742, 0.009893189184367657, 0.05434335768222809, 0.026773875579237938, -0.003074325853958726, 0.0066934688948094845, 0.04057591035962105, -0.0067021166905760765, 0.04323946312069893, 0.054758455604314804, -0.001317722606472671, -0.021308407187461853, -0.045972198247909546, -0.0064167361706495285, -0.010801217518746853, -0.025355620309710503, 0.03210097551345825, 0.03787776827812195, 0.01565268635749817, 0.06371767073869705, 0.012167585082352161, 0.03587145730853081, 0.007761483546346426, 0.031218891963362694, 0.027655960991978645, 0.09132174402475357, 0.03009466640651226, 0.002393304370343685, 0.008379807695746422, 0.02033984288573265, 0.04725208505988121, -0.022951506078243256, 0.03953816369175911, -0.024854043498635292, 0.058252204209566116, 0.08986889570951462, -0.02539021335542202, 0.03130537271499634, 0.05531192198395729, 0.024127619341015816, -0.0291088055819273, -0.04891248047351837, -0.014346853829920292, 0.023504972457885742, 0.057110682129859924, 0.008267384953796864, -0.04251303896307945, 0.022657478228211403, -0.00512820016592741, 0.07713919878005981, -0.04424261674284935, -0.0572490468621254, 0.01192544400691986, -0.0014539269031956792, -0.07201965153217316, -0.03227393329143524, 0.031530216336250305, -0.02035713940858841, 0.00200090603902936, -0.010732034221291542, 0.019630715250968933, -0.01747739128768444, 0.04680239409208298, 0.05060746893286705, -0.0011134161613881588, -0.017728179693222046, -0.015168403275310993, 0.03391703590750694, -0.02625500224530697, -0.01695851795375347, 0.03988407924771309, 0.060293108224868774, -0.01751198247075081, 0.005396285094320774, -0.02523455023765564, -0.002280881628394127, -0.04251303896307945, -0.028365086764097214, -0.03178965300321579, -0.05167980492115021, 0.009434850886464119, 0.06620826572179794, 0.04898166283965111, -0.06167677044868469, -0.020772237330675125, -0.023107169196009636, -0.02238074503839016, 0.005050369072705507, -0.04047213867306709, -0.00019295609672553837, -0.015099219977855682, -0.0008496554219163954, -0.0189907718449831, 0.004427720792591572, 0.0005772468284703791, 0.07547880709171295, -0.0018863215809687972, 0.04109478369355202, -0.05230245366692543, -0.021602435037493706, -0.0013555571204051375, 0.029005032032728195, 0.04237467423081398, 0.02402384579181671, -0.049189213663339615, 0.011934091337025166, -0.02743111550807953, -0.009201358072459698, 0.01633586920797825, -0.00008904626884032041, -0.02774243988096714, 0.013715557754039764, -0.0014614937826991081, 0.05915158614516258, 0.016041841357946396, 0.01819516532123089, -0.04725208505988121, -0.009045695886015892, 0.0528213270008564, -0.044000476598739624, -0.008924624882638454, -0.044311802834272385, 0.017209306359291077, -0.03045787662267685, 0.006438355892896652, 0.03767022117972374, 0.05531192198395729, -0.005642749834805727, -0.012530796229839325, 0.025476692244410515, 0.06440950185060501, -0.02571883238852024, 0.023937366902828217, -0.04393129423260689, -0.05600375309586525, -0.04005703702569008, 0.03805072605609894, 0.01933668740093708, -0.0340208075940609, -0.014917614869773388, -0.05365152657032013, 0.014277670532464981, 0.021931055933237076, 0.029022326692938805, -0.05935913324356079, 0.00436718575656414, -0.06288747489452362, -0.038777150213718414, 0.038777150213718414, -0.009711583144962788, 0.026946833357214928, 0.0185064896941185, 0.03946898132562637, 0.07167373597621918, -0.06734978407621384, -0.025615056976675987, -0.002061441307887435, -0.05413580685853958, 0.02035713940858841, -0.0009042452438734472, 0.018420010805130005, 0.02475026808679104, -0.04880870506167412, 0.0013879867037758231, -0.02205212600529194, -0.0483936071395874, -0.02658362127840519, -0.0216889139264822, 0.0020938708912581205, 0.024819452315568924, -0.06340634822845459, 0.0008220903109759092, -0.007372328545898199, 0.022449929267168045, -0.02822672203183174, 0.001686339033767581, 0.032585259526968, 0.04424261674284935, -0.02270936593413353, -0.013568543829023838, -0.03666706383228302, 0.02808835543692112, 0.07347249239683151, -0.025615056976675987, -0.023072578012943268, -0.06503215432167053, -0.003195396391674876, -0.02390277571976185, -0.04116396978497505, 0.07713919878005981, 0.03839664161205292, 0.028797483071684837, 0.03485100716352463, 0.018402716144919395, 0.010619612410664558, -0.013075613416731358, 0.015254882164299488, 0.029333651065826416, -0.005776792299002409, 0.03481641411781311, 0.009694287553429604, 0.018748631700873375, 0.05534651130437851, 0.012738346122205257, -0.049050845205783844, -0.06530888378620148, 0.01304102223366499, 0.01713147573173046, -0.035214219242334366, -0.07347249239683151, 0.02134299837052822, 0.0232282392680645, 0.03383055701851845, -0.08890033513307571, 0.012496205046772957, 0.053720708936452866, 0.0015068952925503254, 0.0027413819916546345, -0.03452238813042641, 0.043654561042785645, 0.03059624321758747, -0.019232913851737976, 0.004605002701282501, 0.03950357437133789, -0.0015912122325971723, -0.042616814374923706, -0.008544118143618107, 0.01244431734085083, 0.017070939764380455, -0.029022326692938805, -0.02137758955359459, 0.05251000449061394, 0.0018690257566049695, -0.003229987807571888, -0.0023046634159982204, -0.011890851892530918, -0.014787896536290646, -0.002620311453938484, 0.01700175739824772, -0.03722053021192551, -0.015341361053287983, 0.00542222848162055, -0.06821457296609879, 0.00873437151312828, -0.005322777666151524, -0.030509764328598976, -0.008794906549155712, -0.06423654407262802, -0.04317028075456619, -0.11263015121221542, -0.0294028352946043, -0.030233033001422882, -0.04676780104637146, -0.01682879962027073, -0.03009466640651226, 0.01902536302804947, -0.01352530438452959, 0.0037056219298392534, -0.002784621436148882, -0.09415825456380844, 0.01950964517891407, -0.0008961378480307758, 0.0036861642729490995, 0.051541440188884735, 0.023504972457885742, -0.06295666098594666, 0.014433332718908787, -0.012582683935761452, 0.058771077543497086, -0.017563870176672935, -0.027846213430166245, 0.051022566854953766, 0.054239582270383835, -0.020218772813677788, -0.016750967130064964, 0.008306301198899746, -0.024698380380868912, -0.06005096435546875, 0.006883722264319658, 0.02402384579181671, -0.037912361323833466, -0.018454601988196373, -0.03396892175078392, 0.02895314432680607, 0.08101345598697662, -0.031149709597229958, 0.03140914440155029, 0.028001876547932625, -0.01184761244803667, 0.04541873186826706, 0.044484760612249374, -0.029662271961569786, 0.008639244362711906, -0.0784536823630333, -0.05251000449061394, -0.02506159245967865, -0.028157537803053856, 0.011181725189089775, -0.0894538015127182, 0.014156600460410118, -0.029800638556480408, 0.04036836326122284, -0.01186490897089243, 0.0040039741434156895, -0.000838305102661252, 0.006088116206228733, -0.05143766477704048, -0.03030221536755562, 0.018420010805130005, 0.019405871629714966, -0.01618020609021187, -0.05033073574304581, 0.04493444785475731, -0.014199839904904366, -0.05773333087563515, 0.010904992930591106, -0.010204513557255268, 0.03275821730494499, -0.027119791135191917, -0.00950403418391943, -0.0241968035697937, 0.019111841917037964, 0.04517659172415733, 0.0572490468621254, 0.01847189851105213, 0.018627559766173363, 0.005046045407652855, -0.009815357625484467, -0.05752578005194664, 0.0319972038269043, 0.0058286795392632484, -0.01092228852212429, -0.043135687708854675, 0.046698618680238724, 0.029644975438714027, 0.0002788945275824517, -0.024093028157949448, -0.023176351562142372, -0.06472082436084747, -0.03839664161205292, -0.030976751819252968, 0.01683744601905346, -0.019059956073760986, -0.04202875867486, 0.044000476598739624, -0.06084657087922096, 0.0032516075298190117, -0.037012979388237, 0.05347856879234314, 0.09713312983512878, -0.04265140742063522, -0.024698380380868912, 0.011570880189538002, 0.013075613416731358, -0.07444106042385101, -0.014952206052839756, -0.020927900448441505, -0.021412182599306107, 0.04804769158363342, -0.03832745924592018, -0.03697839006781578, -0.014398741535842419, -0.03784317895770073, 0.013732853345572948, 0.004985509905964136, -0.01885240525007248, -0.014087417162954807, 0.028520749881863594, -0.002494917018339038, -0.04828983172774315, 0.04310109466314316, 0.057283639907836914, 0.00483849598094821, -0.03367489203810692, 0.009235949255526066, -0.0501231849193573, 0.054931413382291794, -0.046456478536129, -0.002360874554142356, -0.031080525368452072, -0.0044406927190721035, 0.031547512859106064, 0.0008615463157184422, -0.025148071348667145, -0.018420010805130005, -0.04825523868203163, -0.026514438912272453, -0.031530216336250305, 0.023003393784165382, -0.037739403545856476, 0.011735190637409687, -0.006939933635294437, 0.012150288559496403, -0.017070939764380455, -0.003575903596356511, 0.03600982576608658, 0.03396892175078392, 0.005677341483533382, -0.0129631906747818, -0.05230245366692543, 0.0360444150865078, 0.014320909976959229, -0.0340208075940609, 0.037566445767879486, -0.01701040379703045, -0.048704929649829865, -0.028883961960673332, 0.006170271430164576, -0.04424261674284935, -0.08820850402116776, -0.045660872012376785, 0.02519995905458927, -0.015185698866844177, -0.06022392213344574, -0.05410121753811836, 0.01798761636018753, 0.033207908272743225, -0.02353956364095211, 0.02706790342926979, -0.042616814374923706, -0.025165367871522903, -0.0031305369921028614, 0.026946833357214928, -0.00016376946587115526, 0.004514199681580067, 0.07298821210861206, 0.002066846238449216, -0.05565783753991127, 0.04873952269554138, -0.05143766477704048, 0.020132293924689293, 0.004399615339934826, 0.034712642431259155, -0.021273816004395485, -0.042305491864681244, 0.032395005226135254, 0.02537291683256626, 0.0410601943731308, 0.015021389350295067, -0.04462312534451485, 0.02575342357158661, 0.024352464824914932, 0.017702236771583557, 0.01683744601905346, 0.014398741535842419, 0.09457335621118546, -0.018091391772031784, -0.0028970439452677965, 0.03248148411512375, 0.009305132552981377, 0.01119037251919508, 0.00424611521884799, -0.0020700893364846706, -0.020460912957787514, -0.013360993936657906, -0.024663789197802544, 0.03351923078298569, -0.025148071348667145, 0.06904477626085281, 0.0010112628806382418, -0.008513850159943104, -0.017598461359739304, 0.018264349550008774, -0.03109782189130783, -0.023297421634197235, 0.009953724220395088, -0.026151226833462715, 0.014692769385874271, 0.026116635650396347, -0.007891202345490456, 0.02827860787510872, 0.010135330259799957, 0.015704572200775146, 0.00058265175903216, 0.0009264054824598134, 0.0037639951333403587, -0.05344397574663162, -0.02857263758778572, -0.013810683973133564, -0.01714877039194107, -0.0129631906747818, -0.02722356654703617, 0.034228358417749405, 0.044830676168203354, -0.048186056315898895, 0.07617063820362091, 0.020114997401833534, -0.027673255652189255, 0.03939979895949364, -0.019094547256827354, -0.05503518879413605, -0.02907421439886093, -0.0054308767430484295, 0.02922987751662731, 0.0027197622694075108, 0.005391960963606834, -0.03853501006960869, 0.026514438912272453, -0.008864089846611023, -0.02220778726041317, -0.011553584598004818, -0.04860115423798561, 0.013257219456136227, -0.04216712340712547, 0.05143766477704048, -0.04275517910718918, 0.021100858226418495, -0.03417647257447243, 0.005071988794952631, 0.03408999368548393, 0.0037877769209444523, -0.004669861868023872, 0.024819452315568924, -0.013058317825198174, -0.008526821620762348, 0.03718593716621399, 0.0021414344664663076, -0.03227393329143524, -0.03227393329143524, 0.016932573169469833, 0.053755298256874084, 0.0030462201684713364, 0.037912361323833466, 0.04486526548862457, -0.03343275189399719, -0.051921945065259933, 0.011968683451414108, -0.09305132180452347, -0.011813021264970303, -0.04503822326660156, -0.0033143048640340567, -0.03680543228983879, 0.005928130354732275, -0.019717194139957428, 0.04825523868203163, 0.010135330259799957, -0.011536289006471634, -0.03479912132024765, -0.029627680778503418, 0.07886877655982971, 0.029990890994668007, 0.028486158698797226, 0.020478209480643272, -0.019942039623856544, -0.018765926361083984, -0.00849655456840992, -0.02974875085055828, 0.029679566621780396, 0.009988316334784031, 0.04334323853254318, 0.007052356377243996, 0.010204513557255268, -0.026116635650396347, 0.011138485744595528, -0.008206849917769432, -0.09104501456022263, -0.011423866264522076, -0.04223630577325821, -0.03552554175257683, -0.00169390591327101, -0.00932242814451456, 0.02556317113339901, 0.020806830376386642, 0.002661388833075762, 0.041648250073194504, -0.012556740082800388, -0.00760582135990262, 0.041786618530750275, 0.034384019672870636, -0.03562931716442108, 0.09803251177072525, -0.006209186743944883, -0.057767923921346664, 0.01919832080602646, -0.03815450146794319, -0.012703754007816315, -0.035075850784778595, -0.01042935810983181, 0.0983092412352562, -0.01268645841628313, -0.02475026808679104, 0.012496205046772957, 0.03967653214931488, -0.014545755460858345, -0.02775973454117775, 0.007346384692937136, 0.014433332718908787, -0.02774243988096714, -0.0033813260961323977, 0.007290173321962357, -0.023816296830773354, 0.038431234657764435, -0.04898166283965111, 0.01504733320325613, 0.0859946459531784, -0.011043358594179153, -0.05583079531788826, 0.016707727685570717, 0.016223445534706116, -0.02203482948243618, 0.019423166289925575, -0.018765926361083984, 0.06914854794740677, -0.04880870506167412, -0.00984994973987341, 0.1391964852809906, 0.01747739128768444, -0.015747811645269394, 0.012305950745940208, 0.05586538463830948, -0.032706327736377716, -0.042132534086704254, -0.007450159639120102, -0.004252600949257612, 0.061815135180950165, 0.025165367871522903, 0.008881385438144207, 0.017581164836883545, 0.02791539765894413, -0.03133996203541756, -0.032861992716789246, 0.0332597941160202, 0.05804465338587761, 0.031530216336250305, 0.002274395665153861, 0.001978205516934395, 0.007458807434886694, -0.019475053995847702, 0.05465468019247055, -0.032585259526968, 0.0796297937631607, 0.019423166289925575, -0.05845975503325462, -0.003597523318603635, 0.010074795223772526, 0.03365759924054146, 0.02104897052049637, 0.012599979527294636, 0.018281644210219383, 0.03549095243215561, -0.00009877514821710065, 0.001750117284245789, -0.02203482948243618, -0.024802155792713165, 0.032204750925302505, -0.015298121608793736, 0.07478697597980499, -0.02421409823000431, 0.05008859187364578, -0.011121190153062344, 0.0311324130743742 ]
420
bitmath
__rtruediv__
null
def __rtruediv__(self, other): # num / bm = num return other / float(self.value)
(self, other)
[ -0.022798890247941017, -0.042246028780937195, 0.04441070184111595, 0.08484119921922684, 0.018940884619951248, -0.021995864808559418, -0.021594353020191193, -0.06916477531194687, -0.05191722512245178, 0.03592658042907715, 0.03854513540863991, -0.001945368479937315, 0.05739873647689819, 0.05495474860072136, -0.0468197725713253, 0.04437578469514847, 0.037497714161872864, 0.0387895330786705, 0.024963561445474625, 0.0005433502374216914, -0.040709808468818665, 0.00805642269551754, 0.0072533986531198025, 0.053907327353954315, -0.025993527844548225, 0.026133183389902115, 0.0036856168881058693, -0.04482967033982277, -0.028559710830450058, -0.021018272265791893, 0.0018068032804876566, 0.01279600802809, 0.01192315574735403, -0.010928104631602764, 0.024177994579076767, -0.05673536658287048, 0.011574015021324158, 0.03453001752495766, -0.13351140916347504, 0.027686860412359238, 0.021611811593174934, -0.04256025329232216, 0.03388410806655884, 0.022554490715265274, -0.031527407467365265, -0.026936206966638565, 0.01909799687564373, -0.011460544541478157, 0.011940612457692623, 0.009845768101513386, -0.02471916377544403, -0.0017544321017339826, -0.007528346963226795, 0.03690417483448982, -0.0328192263841629, 0.08686621487140656, 0.023636827245354652, 0.025120675563812256, -0.04186197370290756, 0.037497714161872864, -0.0030069744680076838, -0.014227484352886677, 0.016706382855772972, -0.03456493094563484, 0.003587421029806137, 0.0098108546808362, -0.04776244983077049, 0.06277550011873245, -0.01888851262629032, 0.07052642852067947, -0.017710164189338684, 0.012307210825383663, 0.0018166227964684367, 0.017107894644141197, 0.05928409472107887, 0.05285990610718727, -0.003528503468260169, 0.04008135572075844, 0.03746280074119568, -0.05701468139886856, 0.08756449073553085, -0.01682858355343342, 0.042036544531583786, -0.018836142495274544, -0.034739501774311066, -0.0426999107003212, -0.0468197725713253, -0.05687502399086952, 0.016566727310419083, -0.011835870333015919, -0.07974374294281006, -0.005739000625908375, -0.008772160857915878, 0.03318582475185394, 0.016784939914941788, 0.05355818569660187, -0.04723874107003212, -0.036485206335783005, -0.006515838671475649, -0.023793939501047134, 0.049089185893535614, 0.10194908827543259, 0.007467247080057859, -0.003484860761091113, 0.038300737738609314, -0.014899580739438534, -0.015292364172637463, -0.03959255665540695, 0.001214355113916099, 0.01578988879919052, -0.04280465468764305, 0.04783228039741516, -0.07960408180952072, 0.04580726474523544, -0.06850141286849976, -0.012420681305229664, -0.038894277065992355, 0.01712535321712494, 0.06022677570581436, 0.060750484466552734, 0.044655099511146545, 0.019307482987642288, 0.01374741643667221, 0.037567541003227234, -0.009226043708622456, 0.02726789005100727, 0.0518823117017746, -0.018207687884569168, -0.055722858756780624, -0.0013136420166119933, 0.02391614019870758, 0.038824450224637985, -0.00466539291664958, 0.009898139163851738, 0.03222569078207016, 0.019010713323950768, 0.019010713323950768, 0.004257334861904383, 0.10502152889966965, 0.02288617379963398, -0.006162333767861128, 0.01925511099398136, 0.058934953063726425, -0.017343565821647644, 0.024911191314458847, 0.08002305775880814, 0.03585675358772278, 0.053104303777217865, -0.002625101711601019, 0.03679943084716797, 0.0025705485604703426, 0.06172807887196541, 0.13805024325847626, -0.030270500108599663, 0.015754975378513336, 0.002262868219986558, 0.03652011975646019, -0.03851022198796272, -0.041582658886909485, -0.00876779668033123, 0.005883021280169487, -0.012699994258582592, 0.025207960978150368, -0.03238280117511749, 0.024614421650767326, -0.004743949510157108, 0.02464933507144451, -0.02573167160153389, -0.033569879829883575, 0.030602185055613518, 0.008409927599132061, -0.09000848233699799, -0.08993864804506302, 0.04668011516332626, 0.03252245858311653, -0.031090982258319855, 0.00037723564309999347, -0.0025509095285087824, -0.0122810248285532, 0.014114013873040676, 0.05107928812503815, -0.018033118918538094, -0.02229263447225094, -0.03913867473602295, 0.028088372200727463, -0.0006355452351272106, 0.010299650952219963, 0.027721773833036423, 0.0392434187233448, -0.017849819734692574, 0.016261229291558266, -0.05093963071703911, -0.03061964176595211, -0.026412496343255043, 0.017797447741031647, -0.015178892761468887, -0.004691578447818756, -0.026779092848300934, 0.06912986189126968, 0.037358056753873825, -0.033063627779483795, -0.026953663676977158, -0.032470088452100754, 0.003980204463005066, -0.001566768973134458, -0.05170774087309837, -0.010046523995697498, 0.008929274044930935, 0.04053523764014244, -0.014210027642548084, -0.032766856253147125, -0.00012356309161987156, 0.006956628989428282, 0.029973730444908142, 0.005180375650525093, -0.04863530397415161, -0.00010487859981367365, -0.005948484875261784, 0.03732314333319664, 0.031073523685336113, 0.0555482879281044, -0.04929867014288902, 0.00983703974634409, -0.01712535321712494, -0.003188091330230236, -0.007619996555149555, -0.02945001982152462, -0.012534151785075665, -0.019412225112318993, 0.004104585852473974, 0.06815227121114731, 0.012411952950060368, -0.007567625027149916, -0.0071399277076125145, -0.017841091379523277, 0.03222569078207016, -0.03777702525258064, 0.01213263999670744, -0.07548422366380692, -0.005856835749000311, -0.02340988628566265, -0.014079099521040916, 0.03479187190532684, 0.03620589151978493, -0.008510305546224117, -0.050765059888362885, -0.002223589923232794, 0.053977157920598984, -0.03980204090476036, 0.04612148925662041, -0.07017728686332703, -0.0534883588552475, -0.021664181724190712, 0.009714840911328793, 0.03238280117511749, 0.013180062174797058, 0.018626658245921135, 0.008593225851655006, 0.030759297311306, 0.007480340078473091, -0.00018616292800288647, -0.051498256623744965, 0.006061955820769072, -0.028699368238449097, -0.06186773627996445, 0.020669130608439445, -0.012961849570274353, 0.034879159182310104, -0.005010169465094805, 0.04381716251373291, 0.0686410665512085, -0.03791668266057968, -0.020512018352746964, -0.03428561985492706, -0.029048508033156395, -0.0041591390036046505, 0.014698824845254421, 0.028524797409772873, -0.0010665158042684197, -0.010762263089418411, -0.007187934592366219, -0.06455612182617188, -0.04943832755088806, -0.0036288814153522253, -0.05586251616477966, 0.0335175096988678, 0.021594353020191193, -0.08958950638771057, 0.03665977716445923, -0.02704094909131527, -0.0029698782600462437, -0.012961849570274353, -0.03826582431793213, 0.04091929271817207, 0.044655099511146545, -0.029484935104846954, -0.03844039514660835, -0.031736891716718674, 0.040989119559526443, 0.05132368579506874, -0.04249042645096779, -0.03004355914890766, -0.02747737430036068, 0.01756177842617035, -0.0007561079110018909, -0.0057084509171545506, 0.07625233381986618, 0.0367296040058136, 0.020250162109732628, -0.004213692154735327, -0.031527407467365265, 0.04448052868247032, -0.03606623783707619, 0.030427614226937294, 0.058585815131664276, 0.01442824024707079, 0.015737518668174744, 0.019708994776010513, 0.014314769767224789, 0.051637914031744, -0.002655651653185487, 0.044061560183763504, -0.01508287899196148, 0.022484662011265755, 0.020285075530409813, -0.045912005007267, -0.03774211183190346, -0.0012372673954814672, 0.00475704250857234, 0.029834074899554253, -0.09426799416542053, 0.013668859377503395, 0.058934953063726425, 0.024579506367444992, -0.04308396577835083, -0.020651673898100853, 0.07373852282762527, 0.03515847027301788, -0.0024919919669628143, 0.0024854454677551985, 0.031248094514012337, -0.01730865053832531, -0.011364530771970749, -0.009566456079483032, -0.018242603167891502, -0.013668859377503395, -0.03187654912471771, -0.040989119559526443, 0.05104437470436096, -0.005498966202139854, -0.051637914031744, -0.007558896671980619, 0.026814008131623268, -0.016496898606419563, 0.012560337781906128, -0.004300977103412151, -0.035036273300647736, -0.03309854120016098, -0.016854768618941307, -0.017910920083522797, -0.002052292926236987, 0.044061560183763504, -0.04046541079878807, -0.01046549342572689, -0.03858004882931709, -0.022921089082956314, -0.05355818569660187, -0.029921360313892365, -0.019447138532996178, -0.014637724496424198, -0.04276973754167557, -0.057468563318252563, -0.007061371114104986, -0.027390090748667717, 0.010736077092587948, 0.01749194972217083, -0.06926952302455902, 0.013424460776150227, -0.0069479006342589855, 0.005865564104169607, 0.048740044236183167, 0.03945290297269821, -0.020372360944747925, 0.00790803786367178, -0.00850594136863947, 0.026883834972977638, 0.004370805341750383, -0.014419511891901493, 0.041233520954847336, 0.07534456998109818, -0.02749483287334442, -0.029834074899554253, 0.02033744752407074, -0.04943832755088806, -0.05869055539369583, 0.03844039514660835, 0.029257992282509804, -0.03308108448982239, -0.024823905900120735, -0.04022101312875748, 0.016793668270111084, 0.037218403071165085, -0.036555033177137375, 0.03185909241437912, 0.013633945025503635, -0.04458526894450188, 0.0468197725713253, 0.04256025329232216, -0.01173985656350851, 0.011259788647294044, -0.07234195619821548, -0.0277741439640522, -0.015711331740021706, 0.018556829541921616, -0.020651673898100853, -0.06270567327737808, 0.014882123097777367, -0.07862649112939835, -0.0005657170549966395, 0.030095931142568588, 0.0371834859251976, 0.007222848944365978, 0.016976967453956604, -0.007685460150241852, 0.026779092848300934, -0.008841988630592823, 0.027372632175683975, -0.01028219424188137, -0.028088372200727463, 0.0341983325779438, 0.02740754745900631, 0.02251957729458809, -0.0053549460135400295, -0.002673108596354723, 0.02258940413594246, -0.015336005948483944, 0.004276973661035299, 0.008510305546224117, 0.03906884789466858, 0.0017587963957339525, 0.05610691383481026, 0.02180383913218975, 0.0032753765117377043, 0.0007506525726057589, -0.02091353014111519, -0.08986882120370865, 0.014463154599070549, -0.00036987094790674746, -0.037148572504520416, -0.062286704778671265, 0.01403545681387186, -0.00792985875159502, -0.0026163733564317226, 0.002345789223909378, -0.0021090281661599874, -0.01604301668703556, -0.045458123087882996, -0.051288772374391556, 0.013075320050120354, -0.008663054555654526, -0.022694146260619164, 0.05533880367875099, -0.043852075934410095, 0.009775940328836441, -0.05261550843715668, 0.03273194283246994, 0.07125962525606155, -0.030061015859246254, 0.013511746190488338, 0.0031990020070225, 0.019551880657672882, -0.013503017835319042, -0.008920545689761639, -0.004353348631411791, -0.02501593343913555, 0.02637758105993271, -0.04367750510573387, -0.042315855622291565, -0.012359581887722015, -0.06713975965976715, -0.032051119953393936, 0.02814074233174324, 0.002673108596354723, 0.0016431435942649841, 0.038894277065992355, 0.017072981223464012, -0.042036544531583786, 0.06591776758432388, 0.08246704190969467, -0.025242874398827553, -0.02974678948521614, 0.008519033901393414, -0.024736620485782623, 0.046994343400001526, -0.057189252227544785, 0.001499122940003872, -0.008012779988348484, 0.026918750256299973, 0.008318278007209301, 0.00572590809315443, -0.003539414145052433, -0.02922307886183262, -0.052371107041835785, 0.0021275763865560293, 0.006738415919244289, 0.05006678029894829, -0.028175655752420425, -0.0009132212144322693, -0.01618267223238945, 0.023724112659692764, 0.007571989670395851, -0.016793668270111084, -0.007624360732734203, 0.04067489504814148, 0.0387895330786705, -0.014864666387438774, -0.07911528646945953, 0.016496898606419563, 0.012673808261752129, -0.031178267672657967, 0.009671198204159737, -0.018993254750967026, -0.06961865723133087, -0.04769262298941612, -0.010875733569264412, -0.008060786873102188, -0.09978441894054413, -0.03871970623731613, 0.03959255665540695, 0.0002664925705175847, -0.07520490884780884, -0.09063693135976791, 0.0002651287359185517, 0.04528355225920677, -0.06469577550888062, 0.022798890247941017, -0.07066608220338821, -0.0036572490353137255, 0.008008415810763836, -0.015257449820637703, -0.0021734009496867657, 0.006332539953291416, 0.07171350717544556, 0.00841429177671671, 0.0040696715004742146, -0.0010217821691185236, -0.06001729145646095, 0.03711365908384323, -0.004595564678311348, 0.01716899499297142, -0.019359853118658066, -0.05883021280169487, 0.023357514292001724, 0.013799787499010563, 0.03610115125775337, 0.02995627373456955, -0.02573167160153389, 0.021105557680130005, 0.01606920175254345, 0.01144308689981699, 0.03288905695080757, -0.016331057995557785, 0.09936545044183731, -0.026220468804240227, -0.02836768329143524, -0.01544947735965252, 0.03224314749240875, -0.012403224594891071, 0.009199857711791992, 0.005036354996263981, -0.04978746920824051, 0.014559168368577957, 0.026587065309286118, 0.02740754745900631, -0.02347971312701702, 0.02887393720448017, -0.010395664721727371, -0.016348514705896378, -0.012953121215105057, -0.05017152056097984, -0.035682182759046555, -0.036555033177137375, 0.029415106400847435, -0.007480340078473091, 0.007558896671980619, -0.01684604026377201, -0.010727348737418652, 0.04594691842794418, 0.007624360732734203, 0.04196671396493912, -0.0830954909324646, -0.06420698016881943, -0.02297345921397209, -0.028332769870758057, -0.013686316087841988, -0.048006851226091385, -0.02311311662197113, -0.005363674368709326, 0.020616760477423668, 0.010238551534712315, 0.020442189648747444, -0.0328192263841629, 0.03187654912471771, 0.012682536616921425, -0.009487899020314217, 0.022327549755573273, -0.0028825930785387754, -0.025818957015872, -0.036275722086429596, -0.04500424116849899, 0.06972340494394302, 0.03697400167584419, 0.007000271696597338, 0.004128589294850826, 0.021053185686469078, 0.017107894644141197, -0.017587963491678238, -0.025557100772857666, -0.02040727622807026, 0.03358733654022217, -0.05673536658287048, 0.03163215145468712, -0.02602844126522541, -0.0012732725590467453, -0.02637758105993271, 0.010648791678249836, 0.05809701606631279, -0.03868479281663895, 0.017151538282632828, -0.0026076447684317827, 0.009095115587115288, -0.009828311391174793, 0.0314401239156723, -0.01523126382380724, -0.042106371372938156, -0.022327549755573273, 0.017116624861955643, 0.05181248486042023, 0.0010114170145243406, 0.028821567073464394, 0.04388698935508728, -0.01297057792544365, -0.05107928812503815, 0.014803566969931126, -0.013974357396364212, -0.01735229417681694, -0.06183282285928726, 0.0021341226529330015, 0.005677901208400726, 0.031684521585702896, -0.020442189648747444, 0.03409359231591225, 0.04294430837035179, -0.026814008131623268, -0.048006851226091385, -0.04133826121687889, 0.04622623324394226, 0.0052414750680327415, 0.028315313160419464, 0.03187654912471771, -0.06012203171849251, -0.009016559459269047, -0.029868988320231438, 0.0043991729617118835, 0.04091929271817207, 0.009260958060622215, 0.02398596704006195, -0.028245484456419945, -0.07981356978416443, -0.043188706040382385, 0.020093047991394997, 0.0291532501578331, -0.05334870144724846, -0.02018033340573311, -0.035612352192401886, -0.02960713393986225, 0.001559131545946002, -0.022118065506219864, 0.005712815094739199, 0.010683706030249596, -0.008440476842224598, 0.03711365908384323, -0.015650233253836632, -0.023130573332309723, 0.02382885478436947, -0.043852075934410095, -0.06256601959466934, 0.0888214036822319, -0.0004266063333489001, -0.0436076782643795, -0.038614965975284576, -0.060191862285137177, -0.028088372200727463, -0.015283634886145592, -0.025242874398827553, 0.024841362610459328, 0.0022279543336480856, 0.00624961918219924, 0.002032653661444783, 0.030602185055613518, -0.013214976526796818, -0.035961493849754333, -0.005699722561985254, 0.0032448265701532364, -0.019813736900687218, 0.0033321117516607046, 0.039906784892082214, 0.0017948015592992306, 0.019883563742041588, -0.06902512162923813, 0.02945001982152462, 0.0431537926197052, 0.003541596233844757, -0.04095420613884926, 0.037497714161872864, 0.0736686959862709, -0.015493120066821575, 0.059458665549755096, -0.004423176404088736, 0.04489949718117714, -0.059807807207107544, -0.013258619233965874, 0.12157080322504044, 0.027896344661712646, -0.035752009600400925, 0.01831243187189102, 0.0840032547712326, 0.0020686588250100613, -0.03381427749991417, 0.02676163613796234, 0.008519033901393414, 0.07639198750257492, 0.004835599102079868, -0.043258536607027054, 0.005917935166507959, 0.001160892890766263, -0.03945290297269821, -0.025626929476857185, 0.04353784769773483, 0.0507301464676857, 0.04029083997011185, -0.004778863862156868, 0.02100081369280815, -0.04685468599200249, 0.011582743376493454, 0.03613606467843056, -0.009531541727483273, 0.06438154727220535, 0.02237991988658905, -0.02712823450565338, 0.013223704881966114, 0.010770991444587708, 0.01395690068602562, 0.007785838097333908, 0.06860615313053131, 0.005210925359278917, 0.06371818482875824, -0.03096878156065941, -0.010622606612741947, -0.03693908825516701, -0.021664181724190712, -0.013860886916518211, -0.00532003166154027, 0.08924037218093872, -0.02646486647427082, 0.038021426647901535, -0.0020795695018023252, 0.029170706868171692 ]
421
bitmath
__str__
String representation of this object
def __str__(self): """String representation of this object""" global format_string return self.format(format_string)
(self)
[ 0.0023601041175425053, -0.018277335911989212, 0.017130693420767784, -0.001381576992571354, 0.00841016136109829, -0.0564873144030571, 0.008151520043611526, -0.0048021115362644196, 0.03483039513230324, -0.06255677342414856, -0.044831205159425735, -0.011906133033335209, -0.030519703403115273, 0.02363983914256096, -0.0045995088294148445, 0.02303634211421013, -0.02926098182797432, -0.08655870705842972, 0.028554027900099754, 0.0024980464950203896, 0.011802676133811474, 0.045589886605739594, 0.033571675419807434, -0.0060953195206820965, 0.015613328665494919, 0.041589561849832535, -0.020708566531538963, -0.018398035317659378, -0.0008384297252632678, -0.007082467898726463, 0.004737451206892729, -0.05838401988148689, -0.008655871264636517, 0.024191606789827347, -0.01663927361369133, -0.021605191752314568, -0.06904005259275436, 0.023157041519880295, -0.07455773651599884, 0.006263436283916235, 0.03831343725323677, 0.003523991210386157, -0.024605434387922287, -0.03303714841604233, -0.017725568264722824, -0.005129724275320768, 0.036554671823978424, 0.049797121435403824, -0.01492361817508936, -0.01494086068123579, 0.029174767434597015, 0.03367513045668602, -0.01072500366717577, -0.02607106976211071, -0.0794546902179718, 0.023570867255330086, 0.04183096066117287, 0.02448473498225212, 0.017725568264722824, -0.002325618639588356, -0.035416651517152786, 0.038209978491067886, 0.05152139812707901, -0.015889212489128113, -0.051452428102493286, -0.033588916063308716, -0.06841931492090225, 0.036796070635318756, 0.03610636293888092, 0.037382327020168304, 0.0481073297560215, -0.013854566030204296, -0.0333302766084671, 0.02084651030600071, 0.009923214092850685, -0.005362501833587885, -0.09800790995359421, -0.00365762272849679, -0.003472262993454933, 0.004845218732953072, 0.012113045901060104, -0.019794700667262077, -0.02282942831516266, -0.0059530665166676044, 0.0009752942132763565, -0.10793974250555038, -0.048590127378702164, -0.02007058449089527, 0.030209334567189217, 0.030571432784199715, -0.012147531844675541, 0.009785272181034088, -0.017363470047712326, 0.05448715388774872, -0.020536139607429504, -0.05169382691383362, 0.0162599328905344, -0.06852277368307114, 0.032606080174446106, 0.0024506286717951298, 0.007444566115736961, -0.04283104091882706, -0.036830559372901917, -0.04214132949709892, -0.03834792226552963, -0.06521216034889221, -0.0069359042681753635, -0.00351105909794569, 0.000015297906429623254, 0.032812993973493576, -0.03346821665763855, -0.004724519327282906, -0.035158008337020874, -0.010604304261505604, 0.03934800252318382, -0.02088099531829357, -0.04372766613960266, -0.00011679282761178911, 0.054245755076408386, -0.04124470800161362, 0.021174121648073196, 0.007142817601561546, -0.019949885085225105, -0.01585472747683525, 0.02007058449089527, 0.021777618676424026, -0.044003549963235855, -0.043624211102724075, 0.07559230923652649, -0.0782821774482727, 0.029588595032691956, 0.02267424389719963, -0.03827895224094391, -0.01625131070613861, 0.07331626117229462, -0.012940699234604836, -0.046589966863393784, 0.02886439859867096, 0.01965675875544548, 0.16084057092666626, 0.037589240819215775, -0.011828540824353695, 0.026898721233010292, 0.00273513444699347, 0.013742487877607346, 0.02526065893471241, 0.026381438598036766, 0.0817997008562088, -0.04034808278083801, -0.004140420351177454, 0.05372847244143486, 0.04896946996450424, 0.0416240468621254, 0.014492549002170563, -0.013302797451615334, 0.009837000630795956, 0.004250342957675457, -0.0004445401718840003, 0.024415763095021248, -0.027381518855690956, 0.018725648522377014, -0.0033472527284175158, 0.0032416407484561205, 0.0011078480165451765, 0.029398923739790916, 0.0585564486682415, 0.018001452088356018, -0.0162599328905344, 0.016518574208021164, -0.014889132231473923, -0.019967127591371536, -0.07938571274280548, -0.07345420122146606, 0.07524745166301727, 0.020587867125868797, 0.06907454133033752, -0.010181856341660023, 0.06710886210203171, -0.014061479829251766, -0.00511248130351305, 0.013923536986112595, -0.04517605900764465, -0.023915722966194153, 0.0044788094237446785, 0.05676320195198059, -0.025933125987648964, 0.03105423040688038, -0.004715897608548403, 0.01886359043419361, 0.0020378800109028816, 0.00288169807754457, 0.023208769038319588, -0.04083088040351868, 0.016785837709903717, -0.030795589089393616, -0.03310611844062805, -0.009009347297251225, -0.0853172317147255, 0.024812346324324608, 0.049590207636356354, -0.034347597509622574, 0.040003228932619095, -0.037623725831508636, -0.0324336513876915, 0.05552172288298607, -0.003062747186049819, 0.014561519958078861, -0.005082306452095509, -0.02669180929660797, -0.00942317396402359, -0.0007608372252434492, -0.0004491202998906374, 0.01824285089969635, 0.033364761620759964, 0.043624211102724075, 0.0028472125995904207, 0.018691163510084152, 0.0040498957969248295, -0.03027830459177494, 0.044003549963235855, 0.050004035234451294, -0.03510627895593643, -0.011759569868445396, -0.03614084795117378, -0.04776247590780258, 0.003271815599873662, 0.029347196221351624, -0.020777538418769836, -0.018139394000172615, -0.028381600975990295, 0.04041705280542374, -0.045831285417079926, -0.029381681233644485, 0.04990057647228241, 0.007974781095981598, 0.012863107025623322, -0.020949965342879295, -0.01786351017653942, -0.05686665698885918, -0.02446749061346054, -0.005944445263594389, 0.010888809338212013, 0.024812346324324608, -0.028002260252833366, 0.08345501124858856, -0.057245999574661255, -0.017191043123602867, 0.050659261643886566, -0.04041705280542374, -0.024346791207790375, 0.02807123027741909, 0.0262607391923666, -0.05755636841058731, -0.035382166504859924, -0.013604545965790749, -0.06500524282455444, -0.02448473498225212, 0.04265861585736275, 0.00742732360959053, 0.039210058748722076, -0.04534848779439926, -0.017880752682685852, -0.007983402349054813, 0.021329307928681374, 0.005384054966270924, 0.004080070648342371, -0.06790202856063843, 0.0060349698178470135, 0.012432037852704525, 0.005215938203036785, 0.09642156958580017, 0.005030578467994928, -0.03969285637140274, 0.0541423000395298, -0.07986851036548615, -0.050624772906303406, -0.032968178391456604, 0.0017792383441701531, -0.057452909648418427, -0.051245514303445816, 0.03665813058614731, -0.013147612102329731, 0.03652018681168556, -0.010906052775681019, 0.03789960965514183, -0.00370719563215971, 0.01681170053780079, 0.015777135267853737, 0.03293369337916374, 0.04327935352921486, 0.021760376170277596, 0.014639112167060375, 0.0007646090816706419, 0.04124470800161362, -0.003927040845155716, 0.0018148015951737761, 0.057452909648418427, 0.024950288236141205, -0.011087101884186268, -0.017708325758576393, -0.05538377910852432, 0.00031953008146956563, 0.025812426581978798, 0.02908855304121971, -0.018949804827570915, -0.029398923739790916, -0.01663065142929554, -0.012371688149869442, 0.014492549002170563, -0.011268150992691517, 0.029416166245937347, 0.02908855304121971, 0.05417678505182266, 0.06469487398862839, 0.009440416470170021, 0.07897189259529114, -0.03748578205704689, -0.014363227412104607, -0.006017726846039295, 0.039210058748722076, -0.016535816714167595, -0.006198775954544544, -0.02305358462035656, 0.01782902516424656, 0.025777941569685936, -0.01742381975054741, -0.05893579125404358, 0.07331626117229462, -0.008897269144654274, 0.04355523735284805, -0.006284989882260561, -0.03827895224094391, 0.020518897101283073, 0.011681976728141308, 0.022139716893434525, -0.009250746108591557, -0.00016811701061669737, -0.05169382691383362, -0.03348546102643013, -0.02563999965786934, 0.08138587325811386, 0.04986609145998955, -0.03965837135910988, 0.0064746602438390255, -0.048624612390995026, 0.042003389447927475, -0.03326130285859108, 0.033140603452920914, 0.04990057647228241, -0.035002823919057846, -0.05317670479416847, -0.007698897272348404, 0.021898318082094193, 0.012138910591602325, -0.0002501548733562231, -0.006422931794077158, 0.005573725793510675, 0.03552010655403137, -0.019001532346010208, 0.009500766173005104, 0.0336923748254776, -0.02969205006957054, 0.0105180898681283, 0.0006401378777809441, -0.008466199971735477, 0.03064040280878544, 0.01843252219259739, 0.0020562002900987864, 0.03246813639998436, -0.02407090738415718, -0.032606080174446106, 0.007750625256448984, 0.007017807569354773, -0.04814181476831436, -0.0520731657743454, 0.05852196365594864, -0.0008513617794960737, 0.028571270406246185, -0.0364857017993927, -0.0926971361041069, 0.03989977017045021, -0.0031942231580615044, 0.009785272181034088, 0.033778589218854904, 0.002226472832262516, -0.002314841840416193, 0.020984452217817307, 0.025760699063539505, 0.015992669388651848, 0.026726294308900833, -0.018604949116706848, -0.021329307928681374, 0.024984775111079216, -0.008358432911336422, -0.04410700872540474, -0.0513489693403244, 0.0105180898681283, -0.0040779151022434235, -0.0653156116604805, 0.022536301985383034, 0.03270953521132469, -0.022122474387288094, -0.0469348207116127, -0.009276610799133778, -0.05076271668076515, 0.029416166245937347, 0.030778344720602036, 0.025829670950770378, -0.0262607391923666, 0.030157605186104774, -0.007543711923062801, -0.052245594561100006, -0.07573024928569794, -0.028916126117110252, 0.08428265899419785, -0.004875393584370613, -0.025950370356440544, -0.012397551909089088, 0.021536219865083694, -0.0012414795346558094, -0.03327854722738266, 0.045003630220890045, 0.014673598110675812, 0.06376376748085022, -0.01725139282643795, 0.029743779450654984, -0.03262332081794739, 0.036623645573854446, 0.0773855522274971, 0.027536705136299133, -0.06997115910053253, 0.012656193226575851, -0.018915319815278053, -0.011768191121518612, 0.0453140027821064, -0.05272839218378067, 0.01563057117164135, -0.010362905450165272, -0.018725648522377014, 0.04417597874999046, 0.050797201693058014, -0.06817791610956192, -0.00003899829607689753, 0.03889968991279602, -0.04952123761177063, -0.02086375281214714, -0.07573024928569794, -0.0008454346098005772, 0.010414632968604565, 0.009328339248895645, 0.019915400072932243, 0.05210765078663826, -0.05076271668076515, -0.023519139736890793, 0.009966321289539337, -0.0903521180152893, 0.05417678505182266, -0.03429587185382843, 0.006022037472575903, -0.013966644182801247, -0.06935042142868042, 0.050452347844839096, -0.029795506969094276, 0.048624612390995026, -0.024191606789827347, -0.04310692474246025, 0.048624612390995026, 0.01822560839354992, -0.10104263573884964, -0.03164048492908478, 0.010276691056787968, 0.02141552045941353, -0.10462912917137146, -0.00016932938888203353, -0.02964032255113125, 0.04314141348004341, -0.04176199063658714, -0.035382166504859924, -0.047796960920095444, -0.03026106208562851, -0.06190154701471329, -0.055452749133110046, 0.008789502084255219, 0.05797019600868225, -0.01094053778797388, 0.021950047463178635, 0.06452244520187378, 0.0328819639980793, -0.02484683319926262, 0.014130450785160065, -0.00870759878307581, 0.07600612938404083, -0.045417457818984985, -0.029226496815681458, -0.00712126400321722, 0.04645202308893204, -0.07428185641765594, 0.0010674352524802089, -0.07924777269363403, 0.0021768996957689524, 0.019398117437958717, 0.019691243767738342, -0.01927741803228855, 0.028002260252833366, 0.03569253534078598, -0.007194546051323414, 0.03343373164534569, 0.04452083259820938, -0.0031446502543985844, -0.013268311507999897, 0.02950238063931465, -0.023208769038319588, -0.002472182270139456, 0.017596246674656868, -0.0008917745435610414, -0.03734784200787544, -0.011000887490808964, -0.0310369860380888, -0.02905406802892685, 0.04331383854150772, 0.003526146523654461, 0.0032610390335321426, -0.04262412711977959, -0.05410781502723694, -0.025191687047481537, 0.0015055093681439757, 0.0131303695961833, 0.035761505365371704, -0.05007300525903702, 0.05614246055483818, -0.006642777472734451, 0.03469245508313179, 0.030571432784199715, 0.03026106208562851, -0.0043408675119280815, 0.09931835532188416, -0.05993587151169777, -0.02165691927075386, 0.004196459427475929, 0.011681976728141308, 0.028709212318062782, -0.007573886774480343, 0.018760133534669876, -0.07593715935945511, 0.011000887490808964, -0.04645202308893204, 0.0509006604552269, 0.003927040845155716, 0.028019502758979797, -0.012794136069715023, 0.005284909158945084, -0.07876497507095337, -0.0025885708164423704, 0.027812588959932327, 0.00873346347361803, 0.016294417902827263, -0.011078479699790478, 0.04083088040351868, 0.04890049621462822, 0.03201982378959656, -0.04041705280542374, 0.03772718086838722, 0.06610878556966782, 0.028916126117110252, -0.006026348099112511, 0.018967047333717346, -0.006603980902582407, 0.03029554709792137, -0.011371606960892677, -0.010888809338212013, 0.021518977358937263, -0.049797121435403824, 0.03350270166993141, 0.022725971415638924, -0.055211350321769714, 0.033744100481271744, -0.006280679255723953, 0.03491660952568054, 0.009854243136942387, 0.0525214783847332, -0.027381518855690956, 0.00013181289250496775, -0.006819515954703093, -0.0464865081012249, -0.028743699193000793, 0.033140603452920914, -0.010423255153000355, -0.01534606609493494, 0.04645202308893204, -0.010147370398044586, -0.013147612102329731, -0.039796315133571625, 0.008556724525988102, 0.004827975761145353, 0.05779776722192764, -0.02784707397222519, -0.0020734432619065046, -0.04393457993865013, 0.021191364154219627, 0.004321469459682703, 0.029812749475240707, 0.05555620789527893, 0.010388769209384918, 0.06879865378141403, 0.04286552593111992, 0.019725728780031204, -0.000017663736798567697, 0.025295143947005272, -0.037416812032461166, 0.05072823166847229, -0.02910579741001129, 0.03362340107560158, -0.017346227541565895, -0.027812588959932327, -0.01224236749112606, -0.008517928421497345, -0.011604384519159794, 0.004836597014218569, -0.035795990377664566, -0.01824285089969635, 0.009035211987793446, 0.08655870705842972, -0.05897027626633644, 0.04417597874999046, -0.022381115704774857, 0.007203167304396629, 0.006371203809976578, -0.06955733895301819, 0.025019260123372078, -0.07124713063240051, 0.0041986145079135895, 0.013294176198542118, -0.0027890182100236416, -0.046210624277591705, -0.018294580280780792, -0.02888164110481739, 0.018898077309131622, 0.025605514645576477, -0.053452588617801666, 0.03064040280878544, 0.0166220311075449, -0.015208123251795769, -0.03345097601413727, -0.016501331701874733, -0.049831606447696686, -0.01432012114673853, -0.026312468573451042, -0.08552414178848267, 0.017897995188832283, -0.054038841277360916, -0.05707357078790665, 0.0067160590551793575, 0.014018372632563114, 0.0392790324985981, -0.015216745436191559, -0.01422528550028801, -0.009319717064499855, 0.040796395391225815, 0.0043128482066094875, -0.00981113687157631, -0.01744968444108963, -0.016165098175406456, -0.022191446274518967, -0.029761021956801414, 0.012475144118070602, -0.0023708809167146683, -0.040796395391225815, -0.0037330598570406437, 0.010328419506549835, 0.001282431068830192, -0.017156556248664856, 0.029726536944508553, -0.007530780043452978, -0.014328742399811745, -0.051624853163957596, -0.005164209753274918, 0.02546757273375988, 0.015397794544696808, 0.020984452217817307, -0.045210544019937515, 0.0485556423664093, -0.0023213080130517483, -0.04148610681295395, -0.042417217046022415, 0.04010668396949768, 0.059659987688064575, -0.023415682837367058, 0.03707195818424225, 0.023381195962429047, -0.04290001466870308, -0.04934880882501602, -0.03986528515815735, -0.022605272009968758, -0.02969205006957054, 0.048245273530483246, -0.0026015029288828373, 0.01962227374315262, -0.025967612862586975, 0.0006589971599169075, -0.02386399358510971, 0.006621223874390125, 0.038382407277822495, 0.03108871541917324, 0.014121828600764275, 0.015294337645173073, -0.003646845929324627, 0.03824446350336075, 0.011561277322471142, -0.014070101082324982, -0.03755475580692291, 0.04203787446022034, 0.08669664710760117, 0.010388769209384918, -0.004274051636457443, 0.00901796855032444, -0.005228870082646608, 0.012725165113806725, 0.03510627895593643, 0.006522078067064285, -0.00803082063794136, -0.02122585102915764, 0.001854675472714007, 0.029605837538838387, -0.02669180929660797, 0.05510789528489113, 0.0660398080945015, -0.015328822657465935, -0.04452083259820938, -0.0068238265812397, -0.049245353788137436, 0.032157767564058304, 0.0666605532169342, -0.03167496994137764, 0.019484329968690872, 0.054866496473550797, -0.012544116005301476, 0.017122071236371994, 0.008073926903307438, 0.024984775111079216, 0.038968659937381744, -0.025726214051246643, 0.03545113652944565, -0.00762561522424221, -0.007147128228098154, -0.005668560974299908, 0.04727967828512192, 0.03305439278483391, 0.013975265435874462, -0.040003228932619095, 0.03976183012127876, 0.019777458161115646, 0.016897914931178093, -0.006198775954544544, 0.02105342224240303, 0.05196971073746681, -0.02905406802892685, -0.03003690578043461, 0.04365869611501694, 0.02748497575521469, -0.004101624246686697, -0.08124793320894241, -0.038003064692020416, 0.06338442116975784, 0.051797281950712204, 0.0042697410099208355, 0.07152301073074341, -0.02167416177690029, -0.012138910591602325 ]
422
bitmath
__sub__
Subtraction: Supported operations with result types: - bm - bm = bm - bm - num = num - num - bm = num (see rsub)
def __sub__(self, other): """Subtraction: Supported operations with result types: - bm - bm = bm - bm - num = num - num - bm = num (see rsub) """ if isinstance(other, numbers.Number): # bm - num return self.value - other else: # bm - bm total_bytes = self._byte_value - other.bytes return (type(self))(bytes=total_bytes)
(self, other)
[ 0.0257546566426754, -0.07306880503892899, 0.015923382714390755, 0.06289097666740417, -0.03589601069688797, -0.0573095865547657, -0.005786589812487364, 0.003050613682717085, 0.006251705810427666, -0.051108039915561676, 0.034892819821834564, 0.0010242811404168606, 0.03235748037695885, -0.0001529011788079515, -0.04494297131896019, 0.04986773058772087, 0.02165069244801998, 0.013807560317218304, 0.040273573249578476, -0.012831728905439377, -0.016196979209780693, 0.035786569118499756, 0.02440490946173668, 0.05220242962241173, 0.005330593790858984, 0.09681708365678787, 0.04902869462966919, -0.03505697846412659, -0.034400343894958496, 0.0025330581702291965, -0.032193321734666824, -0.011719098314642906, 0.009676236659288406, 0.0075056953355669975, -0.028837190940976143, -0.04217051714658737, 0.00045200609019957483, 0.07937979698181152, -0.09761963784694672, 0.04946645349264145, -0.009639756754040718, -0.0739443227648735, 0.06686726212501526, 0.010807106271386147, 0.003912446089088917, -0.05187411233782768, -0.024696746841073036, -0.030989492312073708, -0.04198811575770378, 0.004614680074155331, -0.012257173657417297, -0.030424056574702263, 0.009575917385518551, 0.05096212029457092, -0.03844958916306496, 0.0496123731136322, 0.033524829894304276, 0.07930683344602585, -0.07857724279165268, 0.08390327543020248, 0.0018524839542806149, 0.013351564295589924, -0.05738254263997078, -0.07908795773983002, 0.003367530880495906, -0.0009593017166480422, -0.05377105623483658, -0.002407659310847521, -0.00931599922478199, 0.08200632780790329, -0.002281120279803872, 0.030551735311746597, 0.002407659310847521, 0.043046027421951294, 0.027232084423303604, -0.012156855314970016, 0.03264931961894035, 0.0293661467730999, 0.023219319060444832, -0.015978101640939713, 0.0683264508843422, -0.005088916048407555, 0.04746007174253464, -0.0013121286174282432, -0.00994071364402771, -0.024477869272232056, 0.017355209216475487, -0.021979009732604027, -0.007264017127454281, 0.008782484568655491, -0.06070219725370407, -0.020738700404763222, -0.03481986001133919, -0.01288644876331091, 0.0375375971198082, 0.0032854515593498945, -0.047496549785137177, -0.01253989152610302, -0.017492009326815605, -0.032430440187454224, 0.035567693412303925, 0.07689917832612991, 0.020465103909373283, -0.051582273095846176, 0.06362056732177734, 0.010442310012876987, 0.01690833456814289, -0.04337434470653534, -0.0054172333329916, 0.017656167969107628, -0.002089601941406727, 0.07843132317066193, -0.09885994344949722, 0.0003288871666882187, -0.013032367452979088, -0.0160145815461874, -0.017884165048599243, -0.002891015028581023, -0.02843591384589672, 0.05143635720014572, 0.02303692139685154, -0.0024942983873188496, 0.029694464057683945, 0.04220699518918991, -0.013260365463793278, 0.043447304517030716, 0.06617414951324463, -0.03160964697599411, -0.018622878938913345, -0.035987209528684616, 0.005280434153974056, -0.008659365586936474, -0.030369337648153305, 0.07616958022117615, 0.0325033999979496, 0.03027813881635666, 0.03906974196434021, 0.03903326392173767, 0.008910163305699825, 0.008280888199806213, 0.008271768689155579, 0.01433651614934206, 0.10725027322769165, 0.017136331647634506, -0.02097581885755062, 0.023565877228975296, 0.027633361518383026, -0.002196761080995202, -0.045490168035030365, 0.020665740594267845, -0.04041948914527893, 0.060446836054325104, 0.0642407238483429, -0.020611021667718887, 0.02035566419363022, 0.05639759451150894, 0.035768330097198486, 0.0007637934177182615, -0.049320533871650696, -0.021741891279816628, 0.028964869678020477, 0.0714637041091919, -0.00203146249987185, -0.05194707214832306, 0.03268579766154289, -0.01074326690286398, 0.05172819271683693, -0.03403554484248161, -0.03968989849090576, 0.012457812204957008, 0.017993604764342308, -0.005403553135693073, -0.00001058943962561898, 0.025645218789577484, 0.016096660867333412, 0.012777009978890419, 0.006361145060509443, 0.00028357256087474525, 0.009575917385518551, 0.027049686759710312, 0.028636552393436432, -0.003716367995366454, -0.043702661991119385, -0.008527126163244247, 0.024532588198781013, -0.01944367215037346, 0.0036616483703255653, 0.04756950959563255, 0.03119013085961342, -0.02214316837489605, 0.01988142728805542, 0.021577732637524605, 0.0013771081576123834, -0.028764231130480766, -0.014801631681621075, -0.028745992109179497, -0.049101654440164566, -0.0016130860894918442, 0.02801639772951603, 0.070332832634449, -0.08295480161905289, -0.02124941721558571, 0.012266294099390507, -0.016972173005342484, 0.010962145403027534, -0.06942083686590195, -0.0004263563023414463, 0.035093456506729126, -0.02845415472984314, -0.031919725239276886, -0.011819417588412762, -0.004705879371613264, 0.04986773058772087, 0.030606456100940704, 0.046438638120889664, -0.05285906419157982, -0.012211574241518974, -0.024532588198781013, 0.013524843379855156, 0.017473768442869186, 0.060410358011722565, -0.02391243353486061, -0.020410383120179176, 0.020866379141807556, -0.006014587823301554, 0.024915624409914017, 0.0014409475261345506, 0.002129501663148403, 0.023802993819117546, 0.02099405787885189, 0.05398993194103241, 0.03224804252386093, 0.010807106271386147, -0.003885086392983794, -0.009968074038624763, 0.038048312067985535, -0.009995433501899242, -0.0032147723250091076, -0.04443225637078285, -0.026320092380046844, -0.02911078929901123, 0.017710886895656586, 0.026082973927259445, 0.05439120903611183, -0.006735061760991812, -0.06540807336568832, 0.022289087995886803, 0.046876393258571625, -0.056105755269527435, 0.016434097662568092, -0.00462835980579257, -0.07025987654924393, -0.011418141424655914, -0.0002720301563385874, 0.0074281757697463036, -0.05005012825131416, -0.0423893928527832, -0.07930683344602585, 0.013789321295917034, 0.035585932433605194, 0.029056068509817123, -0.05052436515688896, 0.037829432636499405, -0.02529866062104702, -0.05490192398428917, -0.003007293911650777, -0.01433651614934206, 0.022617405280470848, -0.0026424971874803305, 0.06657542288303375, 0.07186497747898102, -0.07828540354967117, -0.02030094526708126, -0.0002906974987126887, -0.056105755269527435, -0.01940719224512577, 0.008736884221434593, 0.046402160078287125, -0.010068393312394619, -0.05344273895025253, 0.006675782147794962, -0.016242580488324165, -0.04880981892347336, -0.0609210729598999, -0.021267656236886978, 0.02075694128870964, 0.03750111535191536, -0.0645325630903244, 0.006283625494688749, -0.015823062509298325, 0.00745553569868207, -0.012457812204957008, 0.00535795371979475, 0.012804369442164898, 0.002704056678339839, -0.002107841894030571, -0.03722751885652542, -0.03812127187848091, 0.03990877419710159, 0.06748741865158081, -0.05446416884660721, -0.0072959368117153645, -0.017610568553209305, 0.00015774613711982965, -0.03994525596499443, -0.025152742862701416, 0.07095298916101456, 0.01353396289050579, 0.01331508532166481, 0.04421337693929672, 0.02502506412565708, -0.00173506501596421, -0.004678519442677498, 0.012722290121018887, 0.0028408553916960955, 0.023529397323727608, 0.018695838749408722, 0.052932024002075195, -0.017099851742386818, 0.05818509683012962, 0.019534870982170105, -0.021541254594922066, -0.0411490835249424, 0.033324193209409714, 0.03363426774740219, -0.04556312784552574, -0.07168257981538773, 0.0006526443758048117, 0.0478978268802166, 0.027469202876091003, -0.07580478489398956, 0.0288919098675251, 0.06055627763271332, -0.003524849656969309, -0.024295469745993614, -0.029694464057683945, 0.027487441897392273, 0.033123552799224854, -0.02486090548336506, 0.02192429080605507, 0.04446873441338539, -0.014737792313098907, -0.004714999347925186, -0.002569537842646241, 0.002843135502189398, -0.0046739596873521805, -0.026028255000710487, -0.014865471981465816, 0.0442863367497921, -0.008495206944644451, -0.04082076624035835, -0.04158684238791466, -0.015084349550306797, 0.00621066614985466, 0.015640664845705032, -0.002450978849083185, -0.013953479006886482, -0.023164600133895874, 0.024714985862374306, -0.05694478750228882, 0.021304136142134666, 0.018659358844161034, -0.022270847111940384, -0.02303692139685154, -0.06449608504772186, -0.061066992580890656, -0.0524577870965004, -0.029968060553073883, -0.029475584626197815, -0.0460008829832077, -0.0034541701897978783, 0.0019619229715317488, -0.014838111586868763, -0.03976285457611084, -0.011035104282200336, -0.018203362822532654, -0.08536246418952942, 0.03750111535191536, -0.030661175027489662, 0.016461458057165146, 0.04581848531961441, 0.014464194886386395, -0.0847787857055664, 0.01898767612874508, 0.024696746841073036, 0.04899221658706665, -0.04899221658706665, -0.029749182984232903, 0.03764703497290611, 0.0587322935461998, -0.02577289752662182, -0.0020383023656904697, 0.004493840970098972, -0.018221601843833923, -0.042790669947862625, 0.011928857304155827, 0.004612400196492672, -0.03815774992108345, -0.02887367084622383, -0.010223431512713432, 0.04206107556819916, 0.07328768819570541, -0.03633376583456993, 0.06026443839073181, 0.015549466013908386, 0.01741904951632023, 0.050925638526678085, -0.0003961465845350176, -0.0488462969660759, 0.02413131110370159, -0.059279486536979675, -0.05333329737186432, -0.03449154272675514, -0.0016267659375444055, -0.016279058530926704, -0.04424985870718956, -0.02259916439652443, -0.04826262220740318, 0.0010288411285728216, -0.004621520172804594, 0.008258088491857052, 0.027870479971170425, 0.019753748551011086, -0.048189662396907806, -0.00797537062317133, 0.0003642268420662731, 0.013734601438045502, 0.010013673454523087, -0.042571790516376495, 0.03606016933917999, -0.001460327417589724, -0.0358777716755867, -0.0010715906973928213, -0.02819879725575447, 0.05176467448472977, -0.02553577907383442, -0.01839488185942173, -0.048189662396907806, 0.017200171947479248, 0.04249883443117142, 0.035312335938215256, 0.021577732637524605, 0.03272227570414543, 0.025134501978754997, -0.015458266250789165, -0.0832466408610344, 0.02639305219054222, 0.007606014143675566, -0.03844958916306496, -0.04541720822453499, 0.04567256569862366, 0.016124021261930466, 0.031263090670108795, -0.04716823250055313, 0.012384853325784206, -0.06190602481365204, -0.009986313991248608, 0.007756493054330349, -0.0033036915119737387, -0.02305516041815281, -0.0686182901263237, 0.025006823241710663, -0.059024129062891006, 0.0007033739238977432, -0.03255811706185341, 0.02706792578101158, 0.09543085843324661, -0.00835384801030159, -0.00009917914576362818, 0.048882778733968735, 0.002014362486079335, -0.04611032083630562, 0.021395334973931313, 0.01502051018178463, -0.006611942779272795, 0.05329681932926178, -0.023584116250276566, -0.04534424841403961, -0.02841767482459545, -0.047788385301828384, 0.04833558201789856, 0.003148652845993638, -0.005786589812487364, -0.02208844944834709, 0.01714545115828514, 0.016242580488324165, -0.028527112677693367, 0.056543510407209396, 0.07784764468669891, -0.008600085973739624, -0.06030092015862465, 0.04508889093995094, -0.05154579505324364, 0.022161409258842468, -0.03268579766154289, 0.009347919374704361, -0.03837662935256958, 0.014126758091151714, 0.004202003590762615, 0.01736433058977127, -0.011600540019571781, -0.002264020498842001, -0.032868195325136185, -0.03450978174805641, -0.012184214778244495, 0.028782472014427185, -0.003796167206019163, 0.024222509935498238, 0.003803007071837783, 0.025243941694498062, -0.06657542288303375, 0.0006594842998310924, 0.03928862139582634, 0.03618784621357918, 0.004933877382427454, 0.015266748145222664, -0.050487883388996124, 0.014610113576054573, 0.005002276971936226, -0.02504330314695835, 0.036224327981472015, 0.012576371431350708, -0.04713175445795059, -0.03585952892899513, 0.011427260935306549, -0.035804811865091324, -0.09805738925933838, -0.031481966376304626, 0.028618313372135162, -0.020446863025426865, -0.043483782559633255, -0.048627421259880066, 0.02208844944834709, -0.00039158662548288703, -0.022234367206692696, 0.006721382029354572, -0.03731871768832207, 0.0027906959876418114, 0.024496108293533325, 0.001540126744657755, -0.007355216424912214, 0.01593250222504139, 0.03684448078274727, 0.00437528220936656, -0.0613953098654747, 0.05260370671749115, -0.03520289435982704, 0.04556312784552574, 0.017473768442869186, 0.03544001281261444, -0.03387138620018959, -0.04260827228426933, 0.019297752529382706, 0.05446416884660721, 0.04877333715558052, 0.030642936006188393, -0.035567693412303925, 0.018695838749408722, 0.02188781090080738, 0.0031782924197614193, 0.026320092380046844, -0.009279520250856876, 0.06606470793485641, 0.011308702640235424, -0.03255811706185341, 0.01740081049501896, 0.007218417711555958, 0.010050153359770775, 0.0041906037367880344, -0.03067941404879093, -0.0004736659175250679, -0.0004924757522530854, -0.004637479782104492, -0.002216140739619732, -0.0020998618565499783, 0.04220699518918991, -0.055850397795438766, 0.000748973514419049, 0.0025193782057613134, 0.015029629692435265, -0.025335140526294708, -0.021395334973931313, -0.008107610046863556, -0.02188781090080738, 0.008718644268810749, -0.003689008066430688, -0.021158216521143913, -0.03709983825683594, 0.03275875747203827, 0.0044756014831364155, -0.00002536478132242337, -0.019279513508081436, 0.03213860094547272, -0.011545820161700249, -0.026356572285294533, -0.00333333108574152, -0.014637473970651627, -0.003812127048149705, -0.04581848531961441, -0.007551294751465321, 0.05015956610441208, -0.031098932027816772, 0.08295480161905289, 0.007432735990732908, 0.026010015979409218, 0.05085267871618271, -0.052275389432907104, -0.03664384409785271, -0.011117183603346348, -0.022161409258842468, 0.04815318435430527, 0.004498401191085577, 0.012348373420536518, -0.009448238648474216, 0.027286803349852562, -0.016023701056838036, -0.018914716318249702, -0.02436842955648899, -0.05617871508002281, 0.030351098626852036, -0.05942540615797043, 0.07201089709997177, -0.040528930723667145, 0.020246224477887154, -0.033105313777923584, -0.005389873404055834, -0.014391236007213593, -0.00036992679815739393, 0.006798901129513979, -0.014126758091151714, -0.0011246002977713943, -0.0042840829119086266, 0.07784764468669891, 0.015923382714390755, -0.04465113580226898, -0.03903326392173767, 0.010679427534341812, 0.06686726212501526, -0.0008390327566303313, 0.046402160078287125, 0.051801152527332306, -0.018239842727780342, -0.0640583261847496, 0.011582300066947937, -0.07668029516935349, -0.0349292978644371, -0.0402006134390831, -0.03255811706185341, -0.0052713146433234215, 0.03438210114836693, -0.0257546566426754, 0.06073867529630661, 0.032193321734666824, -0.027049686759710312, -0.03212036192417145, -0.015686264261603355, 0.04767894744873047, 0.020720461383461952, 0.01150934025645256, 0.02549929916858673, -0.030113980174064636, -0.02031918428838253, -0.024550827220082283, -0.005230274982750416, 0.017929764464497566, -0.026739608496427536, 0.046839915215969086, -0.001223209430463612, 0.01623345911502838, -0.00891928281635046, -0.0021648413967341185, 0.012466932646930218, -0.073652483522892, -0.0411490835249424, -0.061066992580890656, 0.0015925662592053413, 0.009621516801416874, -0.015066109597682953, 0.043228425085544586, 0.016771534457802773, -0.02234380692243576, 0.0061513870023190975, -0.043046027421951294, -0.0009410618804395199, -0.014026438817381859, 0.0037004079204052687, -0.033543068915605545, 0.07274048775434494, -0.04173275828361511, -0.09222064167261124, 0.03244867920875549, -0.000053757659770781174, -0.0017555848462507129, -0.023894192650914192, -0.042352914810180664, 0.09287727624177933, -0.02148653380572796, -0.03589601069688797, -0.008787044323980808, 0.003169172676280141, -0.02799815870821476, -0.05639759451150894, 0.0066529824398458, -0.008039210923016071, -0.02932966686785221, 0.0009114221320487559, -0.03137252852320671, -0.026776088401675224, 0.048226144164800644, -0.03604193031787872, -0.004008205141872168, 0.07471039146184921, -0.00756497448310256, -0.04942997172474861, -0.010314631275832653, 0.03142724931240082, -0.0010271311039105058, 0.0686182901263237, -0.022015489637851715, 0.077555812895298, -0.05716366693377495, -0.006119467318058014, 0.16226163506507874, 0.04946645349264145, -0.006876420695334673, 0.014272676780819893, 0.05595983564853668, -0.0257546566426754, -0.016142260283231735, 0.00408800458535552, 0.016443217173218727, 0.04986773058772087, 0.02438666857779026, -0.010424070060253143, -0.022252608090639114, 0.0022777002304792404, -0.02730504423379898, -0.0500866062939167, 0.0406748503446579, 0.03047877736389637, 0.013014127500355244, 0.025225702673196793, -0.001752164913341403, 0.04038301110267639, -0.03771999478340149, 0.010661187581717968, -0.008759683929383755, 0.07529406994581223, 0.03449154272675514, -0.043666183948516846, -0.0027108965441584587, -0.02507978305220604, 0.0133059648796916, 0.02232556790113449, 0.06847237050533295, 0.024733226746320724, 0.02236204594373703, -0.004046964924782515, 0.005782030057162046, -0.035549454391002655, -0.03177380561828613, 0.004883717745542526, -0.008718644268810749, 0.040528930723667145, -0.0361148864030838, 0.013552202843129635, -0.005444592796266079, 0.04198811575770378 ]
423
bitmath
__truediv__
null
def __truediv__(self, other): # num / bm return self.__div__(other)
(self, other)
[ -0.023414313793182373, -0.03045056201517582, 0.028964752331376076, 0.08901196718215942, 0.00011067522427765653, -0.034429799765348434, -0.0170868132263422, -0.04481339082121849, -0.060081370174884796, 0.04590640217065811, 0.047511760145425797, -0.01969124935567379, 0.04730682075023651, 0.03968990966677666, -0.06325792521238327, 0.019657094031572342, 0.05475294589996338, 0.01798342354595661, 0.022509165108203888, -0.02459271438419819, -0.02358509600162506, 0.013286896981298923, 0.027700960636138916, 0.06318961083889008, -0.03572775050997734, 0.05697312206029892, 0.008564754389226437, -0.03736726567149162, -0.016822099685668945, -0.020596398040652275, 0.012450061738491058, 0.026180993765592575, 0.006007282994687557, 0.007962745614349842, 0.014610463753342628, -0.047409288585186005, 0.01388463657349348, 0.02191142551600933, -0.1200261116027832, 0.028315778821706772, 0.03156065195798874, -0.04074876382946968, 0.05085910111665726, 0.01798342354595661, -0.025463707745075226, -0.04303725063800812, 0.005699873901903629, 0.0024123061448335648, -0.00406249426305294, -0.004730681888759136, -0.03968990966677666, -0.04160267487168312, -0.011006947606801987, 0.03900677710771561, -0.0474434457719326, 0.08873870968818665, 0.0335075743496418, 0.005640100222080946, -0.054787103086709976, 0.03682075813412666, -0.012740392237901688, -0.012808705680072308, 0.026915360242128372, -0.025788193568587303, -0.0023397235199809074, -0.001746253576129675, -0.046999409794807434, 0.07282175868749619, -0.013414984568953514, 0.06896207481622696, -0.01221096608787775, 0.023704644292593002, 0.003906655125319958, 0.025924820452928543, 0.01940091885626316, 0.04870723932981491, 0.012262200936675072, 0.025514941662549973, 0.05417228490114212, -0.04030472785234451, 0.07473453134298325, -0.015327750705182552, 0.024968435987830162, -0.019452154636383057, -0.04122695326805115, -0.05851016566157341, -0.01110941730439663, -0.05553854629397392, -0.004995395429432392, -0.0279400572180748, -0.08614281564950943, -0.018239596858620644, 0.007565675303339958, 0.03086044080555439, -0.007155796978622675, 0.034412723034620285, -0.06991845369338989, -0.012637922540307045, -0.01151075679808855, -0.022270070388913155, 0.038050394505262375, 0.08949016034603119, 0.026710420846939087, -0.009649224579334259, 0.03603515774011612, -0.012603766284883022, -0.025634489953517914, -0.059671491384506226, -0.013158810324966908, 0.017761405557394028, -0.04344712942838669, 0.0641459971666336, -0.09925892949104309, 0.025941899046301842, -0.031628962606191635, -0.013867558911442757, -0.025600332766771317, 0.0025062367785722017, 0.05372824892401695, 0.06793737411499023, 0.025668645277619362, 0.009282042272388935, 0.018393300473690033, 0.004555629566311836, -0.015694934874773026, 0.036649975925683975, 0.059842273592948914, -0.005196064710617065, -0.040953703224658966, -0.016711091622710228, 0.03504461795091629, 0.0334734171628952, 0.009939556010067463, 0.03268781676888466, 0.03294399008154869, 0.012176809832453728, 0.027393551543354988, 0.00454282108694315, 0.10144495218992233, 0.009025868028402328, -0.006669065915048122, -0.003584302728995681, 0.05656324326992035, 0.006630640011280775, 0.009691921062767506, 0.07808186858892441, 0.034207783639431, 0.016352446749806404, 0.003631268162280321, 0.03712816908955574, 0.030211467295885086, 0.05092741549015045, 0.15466085076332092, -0.03641087934374809, 0.0009590518311597407, 0.020476851612329483, 0.030108997598290443, -0.02708614245057106, -0.03794792667031288, -0.00726680550724268, 0.0314069464802742, 0.0026151107158511877, 0.024370696395635605, -0.01104110386222601, 0.0209379643201828, -0.002222310518845916, 0.04959530755877495, -0.030689658597111702, -0.03355880826711655, 0.024678105488419533, -0.0007807973306626081, -0.07480283826589584, -0.07077236473560333, 0.0516447015106678, 0.07179706543684006, -0.0279229786247015, -0.0009841355495154858, -0.0014185641193762422, 0.004807534161955118, 0.016352446749806404, 0.03451519086956978, 0.0010732627706602216, -0.02638593316078186, -0.025139220058918, 0.0063872747123241425, -0.009145415388047695, 0.02807668223977089, 0.02763264812529087, 0.02734231762588024, -0.023755880072712898, 0.019998658448457718, -0.03434440866112709, -0.032021764665842056, -0.010605608113110065, 0.03726479411125183, 0.007023440208286047, -0.008863624185323715, -0.013338131830096245, 0.06373611837625504, 0.05140560492873192, -0.031611885875463486, -0.007138718385249376, -0.03562527894973755, 0.0027389281895011663, 0.025890663266181946, -0.05710974708199501, -0.030074840411543846, 0.02218467742204666, 0.043378815054893494, -0.014900794252753258, -0.008940476924180984, -0.015660777688026428, -0.0022201756946742535, 0.04826320335268974, 0.02529292367398739, -0.01722344011068344, 0.020340224727988243, -0.01005910336971283, 0.02344847097992897, 0.03760635852813721, 0.05273770913481712, -0.03729895129799843, 0.0012456466211006045, -0.010716617107391357, -0.006263457238674164, -0.0005291596753522754, -0.010332356207072735, 0.013432062231004238, -0.017693091183900833, -0.0009467768250033259, 0.04344712942838669, 0.01911058835685253, -0.014644620008766651, 0.01667693443596363, -0.008957554586231709, 0.016232900321483612, -0.05468463525176048, -0.013927333056926727, -0.05919329822063446, -0.0011036834912374616, 0.002721850061789155, -0.011203347705304623, 0.049219585955142975, 0.04150020703673363, -0.01704411767423153, -0.05697312206029892, -0.0164036825299263, 0.04009978845715523, -0.03514708951115608, 0.054821260273456573, -0.08265884965658188, -0.057758722454309464, -0.030655501410365105, -0.009247885085642338, 0.020442694425582886, 0.029340475797653198, 0.021689407527446747, -0.01018719095736742, 0.010972791351377964, 0.02343139238655567, -0.006062787491828203, -0.052566926926374435, 0.012817244976758957, -0.02290196530520916, -0.04713603854179382, 0.01760770007967949, -0.007040518335998058, 0.038460273295640945, -0.013457680121064186, 0.05106404051184654, 0.05837354063987732, -0.04843398556113243, -0.012672079727053642, -0.01938384212553501, -0.025907741859555244, -0.018888570368289948, 0.008778233081102371, 0.049936871975660324, -0.02957957051694393, -0.014456759206950665, -0.010451903566718102, -0.05540192127227783, -0.04969777911901474, -0.028110839426517487, -0.06226738914847374, 0.028127918019890785, 0.019452154636383057, -0.06670773774385452, 0.037640515714883804, -0.015191124752163887, -0.016437839716672897, 0.0003426328767091036, -0.04211502522230148, 0.0432421900331974, 0.03675244748592377, -0.019332606345415115, -0.048399828374385834, -0.020169442519545555, 0.0195375457406044, 0.04918542876839638, -0.06817647069692612, -0.025668645277619362, -0.053557466715574265, 0.013218584470450878, -0.019571702927350998, 0.00397496810182929, 0.08443498611450195, 0.029511258006095886, 0.04231996461749077, -0.009948094375431538, -0.014789785258471966, 0.04009978845715523, -0.029408788308501244, 0.05068831890821457, 0.0558801144361496, 0.016292674466967583, 0.021433234214782715, 0.0433105044066906, -0.0034135200548917055, 0.05741715803742409, 0.0021817495580762625, 0.03374667093157768, -0.005213143303990364, 0.00826161541044712, 0.04457429423928261, -0.05512866750359535, -0.0251221414655447, -0.012424444779753685, 0.021262452006340027, 0.024336541071534157, -0.09454532712697983, 0.041944243013858795, 0.0641801580786705, 0.014952029101550579, -0.05683649703860283, -0.032892756164073944, 0.05352330952882767, 0.026607951149344444, -0.010451903566718102, -0.0009734616032801569, 0.03138986974954605, -0.039860691875219345, -0.0057596480473876, -0.01069099921733141, -0.037708830088377, -0.025378314778208733, -0.043891165405511856, -0.026761654764413834, 0.03501046076416969, -0.005264378152787685, -0.05321590229868889, -0.027957133948802948, 0.0446767657995224, -0.011980409733951092, -0.012048722244799137, -0.0029652153607457876, -0.03403700143098831, -0.0460771843791008, -0.014448219910264015, -0.003509585279971361, -0.004141481593251228, 0.03466889634728432, -0.03263658285140991, -0.005157638806849718, -0.045462366193532944, -0.026471324265003204, -0.05919329822063446, -0.04078291729092598, -0.029682040214538574, -0.009862703271210194, -0.02944294549524784, -0.033439259976148605, -0.009589451365172863, -0.023841271176934242, 0.021296607330441475, 0.025310002267360687, -0.07145550101995468, 0.02597605437040329, -0.024917202070355415, 0.013167349621653557, 0.06264311075210571, 0.030211467295885086, -0.020596398040652275, 0.0017900166567415, -0.012185348197817802, 0.022235913202166557, 0.0049356212839484215, -0.00695085758343339, 0.05010765790939331, 0.060388777405023575, -0.04580393061041832, -0.02959664911031723, 0.017342986539006233, -0.05625583603978157, -0.06523900479078293, 0.0251221414655447, 0.032038841396570206, -0.03043348528444767, -0.029220927506685257, -0.04901464655995369, 0.027581412345170975, 0.04734097793698311, -0.026881203055381775, 0.028418248519301414, 0.011433904990553856, -0.0129197146743536, 0.017829718068242073, 0.05106404051184654, -0.013047801330685616, 0.014046880416572094, -0.0823855921626091, -0.013005105778574944, -0.008389702066779137, 0.0015028881607577205, -0.027888821437954903, -0.05553854629397392, -0.016121890395879745, -0.0879872664809227, -0.008312850259244442, 0.042524904012680054, 0.04484754800796509, 0.0037550856359302998, 0.012031644582748413, -0.029955292120575905, 0.011724235489964485, -0.007838928140699863, 0.017385683953762054, -0.017624778673052788, -0.020152363926172256, 0.016711091622710228, 0.01179254800081253, 0.032175470143556595, 0.019793719053268433, 0.0015530555974692106, 0.0272398479282856, -0.025514941662549973, 0.00016718028928153217, 0.00363340275362134, 0.04966362193226814, 0.00701063172891736, 0.07309501618146896, 0.005593135021626949, 0.007142988033592701, -0.005302804056555033, 0.0043592294678092, -0.07937981933355331, 0.008872163482010365, 0.009179572574794292, -0.018393300473690033, -0.050620004534721375, 0.023550940677523613, 0.015378985553979874, -0.00029246543999761343, -0.020852573215961456, 0.018342066556215286, -0.022235913202166557, -0.037333108484745026, -0.05041506513953209, 0.011971870437264442, 0.025207532569766045, -0.03965575248003006, 0.053113434463739395, -0.021996816620230675, 0.024063289165496826, -0.03408823534846306, 0.02110874652862549, 0.0641459971666336, -0.016583004966378212, 0.029408788308501244, 0.019486309960484505, 0.0174369178712368, -0.0031018415465950966, 0.007450397126376629, -0.0012381748529151082, -0.02150154672563076, 0.019930345937609673, -0.03367835655808449, -0.021569861099123955, 0.0030997067224234343, -0.0711822435259819, -0.0164036825299263, 0.02763264812529087, 0.02612975984811783, -0.016164585947990417, 0.023960819467902184, 0.012373209930956364, -0.03507877513766289, 0.054821260273456573, 0.1074564978480339, -0.03757220506668091, -0.027564333751797676, 0.009615068323910236, -0.018461614847183228, 0.043208032846450806, -0.04932205751538277, -0.003496776567772031, -0.01221096608787775, 0.030194388702511787, -0.012518375180661678, 0.004068898968398571, -0.00526864780113101, -0.016898952424526215, -0.014004184864461422, -0.01320150587707758, 0.012262200936675072, 0.05683649703860283, -0.01789803057909012, 0.0038575551006942987, -0.0258394293487072, 0.029374631121754646, -0.024199914187192917, -0.04221749305725098, 0.002683423925191164, 0.041261110454797745, 0.05280602350831032, -0.0272227693349123, -0.10369928181171417, 0.010298199020326138, 0.04351544380187988, -0.0237388014793396, 0.037742987275123596, -0.027017829939723015, -0.06243817135691643, -0.05181548371911049, -0.014952029101550579, -0.012176809832453728, -0.08634775131940842, -0.0404755100607872, 0.021740643307566643, -0.00016704686277080327, -0.07630573213100433, -0.09399881958961487, -0.0000963988495641388, 0.054821260273456573, -0.07985801249742508, 0.028640266507864, -0.08224897086620331, -0.020288988947868347, 0.042388275265693665, -0.01116065215319395, -0.00041735032573342323, -0.006925240159034729, 0.07692054659128189, 0.005272916983813047, 0.003481833264231682, 0.022867809981107712, -0.06875713169574738, 0.04901464655995369, -0.009751694276928902, 0.007646797224879265, -0.015771785750985146, -0.045735619962215424, 0.002764545613899827, 0.02136492170393467, 0.037708830088377, 0.02148446813225746, -0.002512641018256545, 0.01620728150010109, 0.022577477619051933, 0.00572549132630229, 0.024456089362502098, -0.00694231828674674, 0.06537563353776932, -0.04877554997801781, -0.0237388014793396, -0.01725759543478489, 0.03528371453285217, 0.005956048145890236, 0.0008507115417160094, -0.00032955731148831546, -0.047101881355047226, 0.011826705187559128, 0.031167849898338318, 0.032175470143556595, -0.018769023939967155, 0.05017596855759621, -0.024114523082971573, -0.02148446813225746, -0.004295186139643192, -0.05195210874080658, -0.048502299934625626, -0.022662870585918427, 0.030621346086263657, 0.021723564714193344, 0.0077065713703632355, -0.050620004534721375, -0.011476600542664528, 0.00809510238468647, 0.02693243883550167, 0.03186805918812752, -0.09461364150047302, -0.08060945570468903, -0.002215906046330929, -0.010195729322731495, -0.008966093882918358, -0.04812657833099365, -0.033029381185770035, -0.013073419220745564, -0.0019095644820481539, -0.00216680602170527, 0.03641087934374809, -0.0363425686955452, 0.03152649477124214, 0.034259017556905746, -0.0008907387382350862, 0.046828627586364746, -0.0195375457406044, -0.03393452987074852, -0.03883599489927292, -0.036649975925683975, 0.03839195892214775, 0.019588779658079147, 0.018461614847183228, -0.009435746818780899, 0.007262536324560642, -0.0029844283126294613, -0.0061140223406255245, -0.027393551543354988, 0.0035010462161153555, 0.0237217228859663, -0.06807400286197662, 0.027171533554792404, -0.02483181096613407, 0.0004952699528075755, -0.0419100858271122, -0.010212807916104794, 0.05492372810840607, -0.03492506965994835, 0.02290196530520916, 0.0048843864351511, 0.0007407701341435313, -0.0030847631860524416, 0.048912178725004196, -0.010332356207072735, -0.03318308666348457, -0.007847467437386513, 0.0029801588971167803, 0.06325792521238327, -0.008872163482010365, 0.04204671084880829, 0.02905014529824257, -0.010895938612520695, -0.04696525260806084, 0.003594976617023349, -0.0195546243339777, -0.03422486037015915, -0.05560686066746712, 0.010861782357096672, 0.017505230382084846, 0.03159480541944504, -0.0349079929292202, 0.026437168940901756, 0.0544796958565712, -0.03647919371724129, -0.06407768279314041, -0.05205458030104637, 0.03545449674129486, 0.005990204866975546, 0.018188362941145897, 0.010725156404078007, -0.04594055935740471, -0.0008010778110474348, -0.04939036816358566, -0.0013790706871077418, 0.021843113005161285, 0.015182585455477238, 0.024746419861912727, -0.0418759286403656, -0.08771401643753052, -0.05509451404213905, 0.01737714372575283, 0.05120066553354263, -0.05543607845902443, -0.04242243245244026, -0.04132942482829094, 0.0007936060428619385, 0.007296692579984665, -0.019093509763479233, 0.012065800838172436, 0.00659221364185214, -0.01724051870405674, 0.03395161032676697, -0.031219085678458214, -0.0028755543753504753, 0.01982787624001503, -0.024490244686603546, -0.048399828374385834, 0.07480283826589584, -0.012834322638809681, -0.046418748795986176, -0.02459271438419819, -0.035249557346105576, -0.020288988947868347, -0.005251569207757711, -0.012834322638809681, 0.03982653468847275, 0.009239346720278263, -0.012646461836993694, 0.00197787769138813, 0.01858116313815117, -0.018871493637561798, -0.05273770913481712, 0.001581875141710043, 0.0032704893965274096, -0.030365170910954475, 0.005307073704898357, 0.014781245961785316, 0.0017281079199165106, 0.020886728540062904, -0.06602460891008377, 0.026437168940901756, 0.035420339554548264, 0.016019420698285103, -0.0321071557700634, 0.05386487767100334, 0.0627455785870552, -0.017829718068242073, 0.058441855013370514, 0.014405524358153343, 0.03323432058095932, -0.04532574117183685, -0.015430220402777195, 0.12064092606306076, 0.03883599489927292, -0.03576190769672394, 0.020579321309924126, 0.06947442144155502, -0.0082103805616498, -0.029255082830786705, 0.0244219321757555, -0.006814231630414724, 0.040680449455976486, -0.012928253971040249, -0.04372038319706917, 0.0007466407842002809, -0.0032299286685884, -0.024387774989008904, -0.028401169925928116, 0.06387274712324142, 0.03084336407482624, 0.03349049389362335, -0.014046880416572094, 0.022697025910019875, -0.012185348197817802, 0.024370696395635605, 0.022645791992545128, -0.004465968813747168, 0.05922745540738106, 0.0446767657995224, -0.03641087934374809, 0.010135956108570099, -0.0011485139839351177, -0.0030420676339417696, 0.012373209930956364, 0.07664729654788971, 0.01938384212553501, 0.05796366184949875, -0.022850731387734413, 0.0008304310613311827, -0.03948497027158737, -0.022389616817235947, -0.008573293685913086, 0.004397655837237835, 0.07329995185136795, -0.02262871339917183, 0.021194137632846832, 0.022799495607614517, 0.03514708951115608 ]
424
bitmath
__xor__
Bitwise xor, ex: 100 ^ 2 Does a "bitwise exclusive or". Each bit of the output is the same as the corresponding bit in x if that bit in y is 0, and it's the complement of the bit in x if that bit in y is 1.
def __xor__(self, other): """Bitwise xor, ex: 100 ^ 2 Does a "bitwise exclusive or". Each bit of the output is the same as the corresponding bit in x if that bit in y is 0, and it's the complement of the bit in x if that bit in y is 1.""" xord = int(self.bits) ^ other return type(self)(bits=xord)
(self, other)
[ -0.017696572467684746, -0.06592339277267456, 0.08936037868261337, 0.04511895030736923, -0.03043883666396141, -0.06383929401636124, -0.08511905372142792, 0.006947001907974482, 0.024204816669225693, -0.006969853769987822, 0.054113488644361496, 0.012659996747970581, 0.031316354870796204, 0.053162846714258194, -0.044314559549093246, -0.02155398763716221, -0.04340048134326935, 0.02155398763716221, 0.002351468661800027, -0.03117009997367859, 0.02148086205124855, 0.04285203292965889, 0.03985385224223137, 0.07605139166116714, 0.0030438837129622698, 0.08277901262044907, 0.0017287522787228227, 0.0029547610320150852, -0.06431461125612259, -0.023656370118260384, -0.002737667178735137, 0.004712078254669905, -0.00901282113045454, 0.025612499564886093, 0.012431477196514606, -0.025886723771691322, 0.012705700471997261, 0.13952505588531494, -0.04658147692680359, 0.00765541335567832, 0.01055761519819498, -0.08460716903209686, 0.03484470024704933, -0.010530192404985428, -0.05491787940263748, -0.07524699717760086, -0.02595984935760498, -0.003923684824258089, -0.03893977403640747, -0.04537489265203476, -0.001268284860998392, -0.013793455436825752, 0.0056901429779827595, 0.03407687321305275, 0.018921438604593277, 0.013857441022992134, 0.017678292468190193, 0.07502762228250504, -0.031681984663009644, 0.0868009626865387, -0.08285214006900787, 0.031590577214956284, -0.012394913472235203, -0.01334555633366108, 0.015338248573243618, -0.023473553359508514, -0.08489967882633209, -0.001159737934358418, 0.025265149772167206, 0.07985395938158035, -0.01732180081307888, 0.048226818442344666, 0.01702929474413395, 0.023857466876506805, 0.017266955226659775, -0.02669111266732216, 0.0001323272445006296, 0.03564908728003502, 0.02510061487555504, -0.019835518673062325, 0.0019047125242650509, -0.019177380949258804, -0.019360197708010674, 0.039744164794683456, -0.03063993528485298, -0.021901337429881096, 0.023875748738646507, -0.055429764091968536, 0.0172760970890522, -0.04043886438012123, -0.033564988523721695, -0.005484475288540125, -0.039159152656793594, -0.0049725910648703575, 0.021809929981827736, 0.04511895030736923, -0.015173714607954025, 0.006951572373509407, 0.020603345707058907, 0.012449759058654308, -0.013564934954047203, 0.04069480672478676, -0.04032917320728302, 0.008500936441123486, 0.03912258893251419, -0.033857494592666626, -0.031224945560097694, -0.017248675227165222, -0.03780631721019745, -0.012413195334374905, -0.05023779347538948, 0.015173714607954025, -0.02670939452946186, 0.0011940159602090716, 0.01943332329392433, -0.008976257406175137, -0.0027856563683599234, 0.014223072677850723, -0.00952470488846302, 0.009926900267601013, 0.02857411652803421, 0.02352839894592762, -0.00009547842637402937, 0.029744137078523636, 0.055320072919130325, 0.06358335167169571, 0.0616455003619194, -0.029853826388716698, -0.03213902562856674, -0.022157279774546623, 0.02923225238919258, 0.01734922267496586, -0.012257802300155163, 0.056161027401685715, -0.0034780714195221663, 0.04303484782576561, 0.006010070908814669, 0.016681944951415062, 0.012961642816662788, 0.005845536477863789, 0.0021195211447775364, 0.015274262987077236, 0.07148099690675735, 0.0700550302863121, -0.006709341425448656, 0.04698367044329643, 0.0017116132657974958, 0.020292557775974274, 0.09623425453901291, 0.04614271968603134, 0.01886659488081932, 0.015786148607730865, 0.03489954397082329, 0.04808056727051735, -0.09396734088659286, 0.07890331745147705, 0.00989947747439146, -0.020493656396865845, -0.024954361841082573, 0.01573130302131176, 0.019012847915291786, 0.02883005701005459, 0.02146258018910885, -0.048775266855955124, 0.042998284101486206, -0.029945233836770058, 0.03948822245001793, -0.027806289494037628, 0.034223124384880066, -0.02316276729106903, 0.010795275680720806, -0.049250587821006775, -0.041023872792720795, 0.018372992053627968, 0.04994528740644455, 0.014552140608429909, -0.03212074190378189, -0.021901337429881096, -0.012495462782680988, -0.01148997526615858, 0.025612499564886093, 0.03709333389997482, -0.09199292957782745, 0.008322691544890404, 0.059890467673540115, -0.0007106965640559793, 0.03489954397082329, 0.020841006189584732, 0.03371123969554901, 0.019469887018203735, -0.038793522864580154, -0.009168214164674282, -0.018793467432260513, 0.004702937323600054, 0.03323591873049736, -0.0503840446472168, -0.027861133217811584, 0.0032015624456107616, 0.011206611059606075, 0.06515556573867798, 0.0079342070966959, 0.03574049845337868, 0.027714882045984268, 0.01886659488081932, 0.008775160647928715, -0.06135299429297447, 0.017376646399497986, 0.0025319994892925024, -0.007879362441599369, -0.03473500907421112, 0.08095085620880127, -0.0364169143140316, 0.011983578093349934, 0.0541866160929203, 0.009159073233604431, 0.004005952272564173, 0.01759602501988411, 0.009597831405699253, -0.05056685954332352, 0.03820851072669029, 0.048884954303503036, -0.010658163577318192, -0.028336456045508385, 0.028336456045508385, 0.04416830837726593, 0.0401463583111763, -0.04091418534517288, -0.04091418534517288, -0.024570448324084282, -0.01807134598493576, 0.04778806120157242, 0.042157333344221115, 0.0010072010336443782, -0.011727635748684406, 0.020036615431308746, -0.0018190175760537386, 0.04175513610243797, -0.03042055480182171, -0.04489957168698311, 0.008290698751807213, -0.0205302182585001, 0.005365645047277212, 0.09835492074489594, -0.019012847915291786, 0.02979898266494274, -0.015383953228592873, -0.013482668437063694, 0.05385754629969597, -0.00690586818382144, 0.014716675505042076, -0.037769753485918045, -0.029159126803278923, -0.004840049427002668, -0.005694713443517685, 0.057001978158950806, -0.022632600739598274, -0.021919619292020798, -0.029159126803278923, 0.012001859955489635, 0.023692931979894638, -0.035356584936380386, 0.04862901195883751, -0.017678292468190193, -0.054479118436574936, 0.01148083433508873, -0.07817205041646957, -0.019451605156064034, 0.06884844601154327, -0.0019412756664678454, 0.03864726796746254, 0.10025620460510254, -0.027934260666370392, 0.01251374464482069, 0.022431503981351852, -0.04800743982195854, -0.018382132053375244, 0.06292521208524704, -0.0021320898085832596, 0.0016819057054817677, -0.007193803321570158, 0.0228702612221241, 0.030767906457185745, -0.038427889347076416, -0.055210381746292114, -0.040548551827669144, 0.0038299919106066227, 0.007998192682862282, -0.03835476189851761, -0.01877518743276596, -0.04976247251033783, 0.07736766338348389, 0.0682268738746643, 0.048775266855955124, 0.0013779744040220976, 0.03652660548686981, -0.005763269495218992, -0.029543040320277214, -0.00013904001389164478, 0.02828161045908928, 0.010667304508388042, -0.026453452184796333, -0.02202930860221386, -0.03703849017620087, -0.01606951281428337, 0.024771546944975853, -0.048958081752061844, 0.042449839413166046, 0.04062167927622795, 0.040658243000507355, 0.07352852821350098, 0.037660062313079834, -0.01854666694998741, -0.0039396812207996845, 0.018720341846346855, 0.004536117892712355, -0.0020029761362820864, 0.035155486315488815, 0.012312646955251694, -0.01893972046673298, 0.08848286420106888, 0.030950721353292465, -0.009255051612854004, -0.03731271252036095, 0.015895837917923927, -0.03043883666396141, -0.07181005924940109, -0.0513712503015995, -0.025831878185272217, -0.02352839894592762, 0.04705679789185524, -0.052029386162757874, 0.014771520160138607, 0.03378436714410782, 0.02586844190955162, -0.00952470488846302, -0.0041133565828204155, 0.03912258893251419, -0.004643522202968597, -0.01069472637027502, -0.011883029714226723, 0.029469912871718407, -0.0022120715584605932, -0.036837391555309296, -0.059707652777433395, -0.016736790537834167, -0.012385773472487926, -0.03378436714410782, 0.03460703790187836, 0.010612459853291512, 0.01766001060605049, 0.0625961422920227, -0.017897671088576317, 0.031224945560097694, -0.013738610781729221, 0.04446081072092056, 0.00014175368414726108, -0.030694779008626938, 0.027605190873146057, -0.00435330206528306, -0.041864827275276184, -0.019104255363345146, -0.004291601944714785, -0.013144458644092083, -0.008843716233968735, -0.03639863431453705, 0.014040256850421429, -0.043181102722883224, -0.00572213577106595, -0.06248645484447479, -0.05378441885113716, -0.05572226643562317, -0.018043924123048782, -0.05206594988703728, -0.04899464547634125, 0.02855583466589451, -0.024899518117308617, -0.08511905372142792, -0.02036568522453308, -0.017312660813331604, -0.027660036459565163, 0.03864726796746254, -0.036362070590257645, -0.012861094437539577, 0.020182868465781212, -0.049543093889951706, 0.04120669141411781, -0.0025754182133823633, 0.03661801293492317, 0.057842932641506195, 0.07323602586984634, -0.002463443437591195, -0.029067719355225563, 0.008893990889191628, -0.03480813652276993, -0.024990925565361977, 0.021974463015794754, 0.02875693142414093, 0.014131664298474789, -0.026197509840130806, -0.08892162144184113, 0.04497269541025162, 0.07334571331739426, 0.005973507650196552, 0.016517411917448044, 0.006435117684304714, 0.06954314559698105, 0.00725778890773654, -0.008071319200098515, -0.028976310044527054, -0.043181102722883224, -0.08862911909818649, 0.021681958809494972, 0.039268843829631805, -0.017513757571578026, -0.0036060423590242863, -0.06168206408619881, 0.019579576328396797, 0.010027448646724224, 0.05630727857351303, 0.04358329623937607, 0.02669111266732216, -0.03480813652276993, 0.0018830031622201204, -0.02698361873626709, -0.004908605478703976, 0.04892151802778244, 0.04998185113072395, 0.042157333344221115, -0.05107874423265457, 0.0476052463054657, -0.0266179870814085, -0.006348280236124992, 0.00942415650933981, -0.03883008286356926, 0.02864724211394787, -0.057842932641506195, 0.011453412473201752, -0.03703849017620087, -0.018903158605098724, 0.07071316987276077, 0.026819083839654922, 0.025923285633325577, 0.024387633427977562, -0.006051204167306423, -0.01372032891958952, -0.00569928390905261, 0.014853786677122116, 0.047458991408348083, -0.0029296239372342825, 0.020036615431308746, 0.026380324736237526, 0.05433286726474762, 0.0175046157091856, 0.004490414168685675, 0.0032769739627838135, -0.023363864049315453, -0.0653749406337738, -0.0021252341102808714, -0.022285250946879387, 0.00008276701555587351, -0.03714817762374878, -0.011745917610824108, -0.03937853127717972, -0.025411400943994522, -0.0350092314183712, -0.020968977361917496, 0.010091434232890606, -0.043363917618989944, 0.025246867910027504, 0.03996354341506958, -0.015383953228592873, -0.07367478311061859, -0.008350113406777382, -0.009643535129725933, 0.008409528993070126, -0.0008792299195192754, -0.021499142050743103, -0.023583242669701576, -0.00686016445979476, -0.10054871439933777, -0.05425973981618881, 0.009826350957155228, -0.0015824995934963226, -0.06391241401433945, 0.03407687321305275, -0.05096905678510666, 0.015438797883689404, 0.02855583466589451, 0.014698393642902374, -0.013683765195310116, 0.026453452184796333, 0.046435222029685974, -0.08336402475833893, -0.020841006189584732, -0.008459802716970444, 0.0028679235838353634, -0.08840973675251007, 0.015557628124952316, -0.015493642538785934, 0.016608819365501404, -0.030566807836294174, 0.0102742500603199, -0.057367611676454544, -0.020036615431308746, 0.020493656396865845, 0.03594159334897995, -0.01265085581690073, -0.017833685502409935, -0.012861094437539577, 0.006576799787580967, -0.015182855539023876, -0.052431583404541016, -0.02475326508283615, 0.0006964140920899808, 0.0076417019590735435, -0.019177380949258804, -0.012020141817629337, 0.013363838195800781, -0.012915939092636108, -0.02371121384203434, 0.039268843829631805, 0.04237671196460724, -0.053930673748254776, -0.0021320898085832596, -0.014552140608429909, 0.009625254198908806, -0.028958028182387352, -0.05685572698712349, 0.026087820529937744, -0.01893972046673298, -0.08102398365736008, -0.08665470778942108, -0.07539325207471848, 0.03391233831644058, -0.06968940049409866, -0.008505507372319698, -0.0858503207564354, 0.06248645484447479, 0.027714882045984268, 0.04146263375878334, -0.009817210957407951, 0.010831838473677635, 0.0710056722164154, 0.014378465712070465, -0.010191982612013817, 0.04416830837726593, -0.03967103734612465, 0.046435222029685974, -0.01702929474413395, 0.0261426642537117, -0.06040235236287117, -0.07159068435430527, 0.01377517357468605, -0.017340082675218582, 0.04797087609767914, -0.005749558098614216, -0.010987231507897377, 0.03621581941843033, -0.00567643204703927, 0.048044003546237946, 0.037111613899469376, -0.01424135360866785, -0.011462553404271603, -0.07360165566205978, -0.0439123660326004, -0.003585475729778409, 0.06511900573968887, -0.04585021361708641, 0.023400427773594856, 0.05908608064055443, -0.0060740564949810505, 0.08263275772333145, -0.03930540382862091, 0.03967103734612465, 0.006691059563308954, 0.0710056722164154, -0.02500920742750168, -0.010776993818581104, -0.030018361285328865, -0.028921466320753098, -0.07612451910972595, -0.041023872792720795, 0.007134388200938702, -0.0522853285074234, 0.010146278887987137, -0.038427889347076416, -0.012029281817376614, -0.008601484820246696, 0.018628934398293495, 0.018235880881547928, 0.009716661646962166, -0.0059003811329603195, -0.009291615337133408, 0.009954322129487991, -0.005233103409409523, 0.001090039499104023, -0.018903158605098724, 0.002047537360340357, 0.03614269196987152, 0.01297078374773264, 0.0025617070496082306, -0.009963463060557842, 0.019177380949258804, -0.019561294466257095, 0.00509142130613327, 0.005530179012566805, -0.05780636891722679, -0.0074680270627141, 0.007728539407253265, -0.03407687321305275, 0.03407687321305275, -0.0001689618220552802, 0.03566737100481987, 0.018830031156539917, 0.012376632541418076, -0.004524691961705685, -0.018107909709215164, -0.0072120847180485725, -0.05659978464245796, 0.01675507239997387, -0.06471680849790573, 0.03511892259120941, -0.05915920436382294, 0.027477221563458443, -0.09074978530406952, -0.03769662603735924, 0.013638061471283436, 0.03941509500145912, 0.047203049063682556, 0.04135294258594513, 0.01307133212685585, -0.013756891712546349, 0.022541193291544914, -0.0018030211795121431, -0.04519207403063774, -0.02718471549451351, -0.022522911429405212, 0.04424143210053444, 0.003178710350766778, 0.042705781757831573, -0.019085973501205444, 0.04621584340929985, -0.015703881159424782, -0.031956207007169724, -0.07360165566205978, -0.03959790989756584, -0.029341941699385643, -0.012778826989233494, -0.0028976311441510916, -0.056161027401685715, -0.06804405897855759, -0.0003290685126557946, 0.03769662603735924, 0.018510103225708008, -0.04380267485976219, -0.03619753569364548, 0.016407720744609833, 0.0009220773936249316, 0.07195631414651871, -0.03469844534993172, -0.030950721353292465, 0.005073139443993568, 0.015082307159900665, -0.007358337752521038, -0.007637131493538618, -0.0023011944722384214, 0.03787944093346596, -0.07510074973106384, -0.004053941462188959, -0.0004604673886206001, -0.004024233669042587, 0.012431477196514606, -0.05049373582005501, -0.01793423295021057, 0.01970754750072956, -0.029817262664437294, -0.002664540894329548, 0.013382119126617908, -0.010374798439443111, 0.002278342377394438, -0.027404094114899635, 0.01106949895620346, -0.010502769611775875, -0.0504206083714962, -0.014808082953095436, -0.013976271264255047, -0.03883008286356926, 0.030402274802327156, -0.025521092116832733, -0.07729453593492508, -0.052139077335596085, -0.003304396290332079, 0.023107921704649925, 0.0011940159602090716, -0.00853750016540289, 0.018309006467461586, -0.010402221232652664, -0.0429617241024971, 0.04175513610243797, 0.02138945274055004, 0.008711175061762333, -0.0369105190038681, -0.002611981239169836, 0.019177380949258804, -0.03594159334897995, -0.03213902562856674, 0.019488168880343437, -0.03846445307135582, 0.021681958809494972, 0.00643968814983964, -0.020932413637638092, 0.050274357199668884, 0.014798942022025585, -0.01180990319699049, 0.018537526950240135, -0.003702020738273859, -0.012449759058654308, 0.03904946148395538, -0.009200206957757473, 0.025557653978466988, -0.0003087873919866979, -0.028153639286756516, 0.03332732617855072, 0.04957965388894081, 0.04424143210053444, 0.023382145911455154, 0.015749584883451462, -0.042998284101486206, 0.015694739297032356, 0.021590551361441612, 0.04069480672478676, 0.023857466876506805, 0.009963463060557842, -0.013519231230020523, 0.02782457135617733, -0.001986979739740491, -0.00005748701369157061, -0.02884833887219429, 0.0067459046840667725, 0.051590628921985626, -0.03157229721546173, 0.009542986750602722, 0.032340120524168015, 0.007609709165990353, -0.005562171805649996, -0.0018361565889790654, 0.032157305628061295, 0.048226818442344666, 0.013994552195072174, -0.017861107364296913, -0.018610652536153793, -0.0024360211100429296, 0.05371129512786865, -0.005429630633443594, 0.0728338286280632, 0.02248634770512581, -0.016919605433940887, 0.009680098854005337, -0.02875693142414093, -0.0038048545829951763, -0.028153639286756516, -0.004931457340717316, 0.00567643204703927, -0.0056124464608728886, 0.019835518673062325, -0.017102422192692757, 0.06040235236287117, 0.02736753039062023 ]
425
bitmath
_do_setup
Setup basic parameters for this class. `base` is the numeric base which when raised to `power` is equivalent to 1 unit of the corresponding prefix. I.e., base=2, power=10 represents 2^10, which is the NIST Binary Prefix for 1 Kibibyte. Likewise, for the SI prefix classes `base` will be 10, and the `power` for the Kilobyte is 3.
def _do_setup(self): """Setup basic parameters for this class. `base` is the numeric base which when raised to `power` is equivalent to 1 unit of the corresponding prefix. I.e., base=2, power=10 represents 2^10, which is the NIST Binary Prefix for 1 Kibibyte. Likewise, for the SI prefix classes `base` will be 10, and the `power` for the Kilobyte is 3. """ (self._base, self._power, self._name_singular, self._name_plural) = self._setup() self._unit_value = self._base ** self._power
(self)
[ 0.00286993570625782, 0.024792613461613655, 0.04047403112053871, 0.03277852013707161, 0.02090855874121189, -0.006924144923686981, -0.0296204574406147, -0.03007420338690281, -0.008090268820524216, 0.00560374790802598, 0.0034348478075116873, 0.07818929851055145, 0.09510490298271179, 0.048714037984609604, -0.03796936199069023, 0.030183101072907448, 0.043051302433013916, 0.010944323614239693, -0.02751508168876171, 0.007473176345229149, -0.0023866973351687193, 0.06559333950281143, 0.04599156975746155, 0.05909571796655655, -0.013040624558925629, 0.059458713978528976, -0.0009999399771913886, -0.006238990463316441, 0.01836758852005005, -0.10120323300361633, -0.0461367666721344, 0.05303368717432022, 0.01130731962621212, 0.04446698725223541, 0.05633695051074028, -0.07379704713821411, 0.03181658312678337, -0.0027814554050564766, -0.11129451543092728, 0.04914963245391846, 0.06958629935979843, -0.041454121470451355, 0.061019595712423325, 0.00014129895134828985, -0.030237551778554916, -0.0037139009218662977, 0.017269525676965714, 0.013494369573891163, -0.02711578644812107, 0.003203438129276037, 0.012242034077644348, 0.0029901780653744936, -0.004185795318335295, -0.048060644418001175, -0.04192601516842842, 0.05227139592170715, 0.0478428490459919, 0.042434211820364, -0.007709123659878969, 0.028186624869704247, -0.012278333306312561, 0.06032990291714668, -0.014174986630678177, -0.05248919501900673, -0.019601773470640182, -0.02021886594593525, -0.03466609865427017, 0.006992206908762455, 0.02631719596683979, 0.07274436205625534, 0.05248919501900673, 0.003840949386358261, -0.028041426092386246, 0.02196124568581581, 0.0297656562179327, 0.03401270881295204, -0.061418890953063965, -0.0592409148812294, 0.02842257171869278, -0.04061923176050186, -0.024284420534968376, 0.033105216920375824, -0.013594193384051323, -0.022342391312122345, 0.024756314232945442, 0.001064031501300633, -0.009410666301846504, 0.01413868647068739, 0.07608392089605331, 0.029402660205960274, -0.09706507623195648, 0.028604069724678993, 0.023249881342053413, 0.07256286591291428, -0.0006448847707360983, -0.03067314624786377, -0.027841778472065926, -0.04591897130012512, -0.03938504680991173, 0.00305143347941339, -0.035246893763542175, -0.031943630427122116, 0.017641596496105194, 0.007291678339242935, 0.014900977723300457, -0.031090591102838516, -0.0055538360029459, -0.0026975125074386597, 0.0012307827128097415, -0.02232424169778824, -0.04889553412795067, -0.0316169336438179, -0.020854109898209572, -0.020472964271903038, -0.044503286480903625, -0.048605140298604965, 0.00870282482355833, 0.01674318127334118, 0.013231197372078896, 0.011697540059685707, -0.018322212621569633, 0.011851813644170761, -0.027696579694747925, 0.028803717344999313, 0.061672989279031754, 0.0007089761784300208, 0.03862275555729866, 0.03187103196978569, 0.015499921515583992, -0.04936743155121803, 0.07898788899183273, -0.003260156139731407, -0.013439919799566269, 0.011080446653068066, 0.035192444920539856, -0.010535953566432, 0.025083011016249657, 0.03363156318664551, -0.00006199997005751356, 0.04011103883385658, 0.018186090514063835, -0.0009914323454722762, 0.0115341916680336, -0.030092353001236916, -0.0163711104542017, 0.05078311264514923, 0.048351041972637177, -0.02295948565006256, -0.04076442867517471, 0.010971548035740852, -0.015336573123931885, -0.0026725565548986197, 0.02611754834651947, -0.029039664193987846, -0.043196503072977066, -0.040800727903842926, 0.023140983656048775, 0.005004804581403732, 0.017269525676965714, 0.03286927193403244, -0.012913576327264309, 0.030037904158234596, -0.04352319613099098, -0.049911923706531525, 0.004791544750332832, 0.07056638598442078, -0.06827951222658157, -0.06715422123670578, 0.05550206080079079, -0.015164149925112724, 0.010481503792107105, -0.06642823666334152, 0.004285619128495455, 0.02936636097729206, 0.0518358014523983, -0.033050768077373505, -0.00020829720597248524, -0.02951155975461006, -0.029184862971305847, 0.008221855387091637, 0.04098222777247429, -0.010799125768244267, -0.08138366043567657, -0.0015234480379149318, 0.015935515984892845, 0.026026800274848938, 0.03898575156927109, 0.03782416507601738, -0.00793145876377821, -0.007495863363146782, 0.056663647294044495, -0.006860620807856321, -0.031489886343479156, 0.03121764026582241, 0.03668072819709778, 0.028495170176029205, 0.07651951909065247, -0.06366946548223495, 0.02201569639146328, 0.02722468599677086, -0.027297284454107285, 0.04076442867517471, 0.04856884106993675, -0.012051461264491081, 0.05423157289624214, -0.01991032063961029, 0.02196124568581581, 0.04167192056775093, -0.05423157289624214, -0.025355257093906403, 0.021180804818868637, -0.03608178347349167, 0.042107515037059784, 0.049512628465890884, -0.0068197837099432945, -0.08138366043567657, 0.03236107528209686, 0.005971280857920647, 0.015127850696444511, 0.01816794089972973, 0.07031229138374329, 0.010581327602267265, 0.012695778161287308, -0.04109112545847893, 0.006320664659142494, 0.020291466265916824, -0.009093045257031918, -0.00293345982208848, -0.03691667318344116, 0.003158063627779484, 0.008040357381105423, -0.042652007192373276, -0.05248919501900673, 0.020436663180589676, 0.0033191428519785404, -0.021035607904195786, 0.011416218243539333, 0.028241073712706566, 0.007772647775709629, -0.0350290946662426, -0.01126194465905428, 0.04254310950636864, 0.002402578480541706, -0.0018512785900384188, -0.03021940030157566, -0.016960978507995605, -0.03521059453487396, 0.05016602203249931, -0.00287674181163311, -0.012686703354120255, -0.016897454857826233, -0.007749960757791996, 0.006706347689032555, 0.022051995620131493, -0.0067970966920256615, 0.021344153210520744, 0.0060892547480762005, 0.010381679981946945, -0.0026476006023585796, 0.0032283940818160772, -0.043196503072977066, -0.01147974282503128, -0.003389473306015134, 0.03876795247197151, 0.00972828734666109, 0.0016198687953874469, 0.025881601497530937, 0.011987936682999134, -0.057970430701971054, 0.004054209683090448, 0.06846100836992264, 0.032488126307725906, -0.031145039945840836, 0.04159931838512421, -0.051908399909734726, -0.008975071832537651, -0.0015778974629938602, -0.025790851563215256, -0.015563445165753365, 0.007799872662872076, 0.04889553412795067, -0.02021886594593525, 0.03978434205055237, 0.023395080119371414, -0.020636312663555145, -0.0018047697376459837, 0.008253617212176323, 0.0013238003011792898, 0.005476699210703373, -0.010572252795100212, -0.038150858134031296, 0.037497468292713165, 0.023994022980332375, 0.03847755491733551, 0.049512628465890884, -0.06225378066301346, -0.05158170312643051, 0.0055538360029459, 0.04152671992778778, -0.012605029158294201, -0.05179950222373009, -0.03764266520738602, -0.032996319234371185, 0.03708002343773842, -0.020327765494585037, 0.0074504888616502285, 0.08632040023803711, -0.015018952079117298, 0.024556666612625122, 0.005844232626259327, -0.007101105526089668, 0.06566594541072845, 0.049512628465890884, 0.03992953896522522, 0.05143650621175766, -0.02041851356625557, -0.00578978331759572, 0.0043831742368638515, 0.0033440988045185804, 0.0777537003159523, -0.003443922847509384, 0.029892705380916595, 0.03771526366472244, 0.027188386768102646, 0.024502217769622803, -0.004764319863170385, -0.03573693707585335, 0.0018841751152649522, 0.02751508168876171, -0.038005661219358444, -0.1141984835267067, 0.017641596496105194, 0.02882186695933342, -0.007854321971535683, -0.035192444920539856, -0.009401591494679451, 0.01398441381752491, 0.009828111156821251, -0.01931137777864933, -0.009655688889324665, 0.0783344954252243, 0.001994208199903369, -0.06610153615474701, 0.0004534611653070897, 0.0067698718048632145, -0.03392195701599121, 0.015563445165753365, -0.046608660370111465, 0.06072919815778732, -0.010427054949104786, -0.03036459907889366, -0.06853360682725906, 0.030999843031167984, -0.0015983158955350518, 0.0657748430967331, -0.03127208724617958, -0.04588267207145691, -0.05702664330601692, 0.001940893242135644, 0.008435115218162537, 0.0057670958340168, -0.012904500588774681, -0.002411653520539403, 0.02286873571574688, -0.012069610878825188, -0.07397854328155518, -0.00038369791582226753, 0.02526450902223587, 0.01240538153797388, 0.003573240013793111, 0.015028026886284351, -0.03633588179945946, -0.04889553412795067, -0.020926708355545998, -0.013448994606733322, 0.046354565769433975, -0.004882293753325939, 0.007854321971535683, -0.05887791886925697, -0.05789783224463463, 0.05227139592170715, -0.016171462833881378, -0.06450435519218445, 0.058660123497247696, -0.01143436785787344, -0.044103991240262985, 0.02081780880689621, 0.04424918815493584, 0.0036118084099143744, 0.058369725942611694, -0.0032465436961501837, 0.05677254498004913, 0.018494635820388794, -0.012577804736793041, 0.002359472680836916, 0.003813724732026458, 0.02346767857670784, -0.03021940030157566, -0.03833235800266266, 0.017360273748636246, 0.03691667318344116, -0.08436022698879242, -0.033794909715652466, 0.059676509350538254, 0.02551860548555851, -0.015200449153780937, 0.03216142952442169, -0.0003700855595525354, -0.007191854529082775, 0.03916724771261215, -0.06504885107278824, -0.005109165795147419, -0.032651472836732864, -0.04918593168258667, -0.051218707114458084, -0.08022207766771317, -0.04188971593976021, -0.03435755521059036, 0.024447767063975334, -0.008512252010405064, -0.0033463677391409874, 0.012949875555932522, 0.019928470253944397, 0.05143650621175766, 0.05034751817584038, 0.04519297927618027, 0.02751508168876171, -0.002468371530994773, 0.025191908702254295, 0.03047349862754345, -0.06098329648375511, 0.07296215742826462, -0.06083809956908226, -0.024102922528982162, 0.06225378066301346, -0.06856990605592728, -0.020581861957907677, -0.006638285703957081, -0.03825975954532623, -0.041962314397096634, -0.006057492457330227, -0.0014417739585042, 0.03406715765595436, -0.011216570623219013, -0.00902952067553997, -0.004376368131488562, -0.0026702878531068563, -0.005562910810112953, -0.03887685015797615, 0.0023322480265051126, -0.0467175617814064, 0.031090591102838516, 0.04283350706100464, -0.06461325287818909, 0.06388726085424423, -0.037207070738077164, -0.04228901118040085, -0.015681419521570206, -0.009964235126972198, -0.0720546692609787, 0.00868921261280775, 0.005898681934922934, -0.053759679198265076, 0.02531895786523819, -0.018449261784553528, 0.04689905792474747, 0.05862382426857948, 0.043160200119018555, -0.011570491828024387, 0.012151285074651241, -0.018476486206054688, 0.033105216920375824, 0.012614103965461254, 0.02551860548555851, -0.0064567881636321545, -0.016443710774183273, -0.07710030674934387, 0.02506486140191555, -0.015146000310778618, -0.09583089500665665, 0.04758875072002411, -0.0058396952226758, 0.04904073476791382, 0.010018683969974518, -0.003092270577326417, -0.01240538153797388, 0.02246944047510624, 0.005744408816099167, 0.014991726726293564, -0.034448303282260895, -0.02666204236447811, 0.04762504994869232, 0.020636312663555145, 0.009791811928153038, -0.012940800748765469, 0.017469173297286034, -0.010817275382578373, -0.003468878800049424, -0.02887631580233574, 0.004855068866163492, 0.010653926990926266, -0.007700048852711916, 0.0059259068220853806, 0.012605029158294201, 0.010191107168793678, 0.020636312663555145, -0.06559333950281143, 0.016352960839867592, 0.004294694401323795, -0.03658997640013695, -0.008339828811585903, -0.027043187990784645, -0.03203437849879265, -0.026680191978812218, 0.037352267652750015, -0.004414936527609825, -0.04588267207145691, 0.0461367666721344, -0.035101693123579025, 0.025500455871224403, -0.0002671422262210399, 0.01123472023755312, -0.0020327765960246325, -0.02787807770073414, -0.011143971234560013, 0.005213527474552393, -0.04163561761379242, -0.0072372290305793285, 0.03227032721042633, 0.039348747581243515, 0.016761330887675285, -0.07031229138374329, -0.017795870080590248, 0.04218011349439621, -0.003223856445401907, 0.024538516998291016, -0.055465761572122574, -0.03628143295645714, 0.03724336996674538, 0.022106444463133812, 0.021580100059509277, 0.0012818289687857032, 0.02412107214331627, -0.04631826654076576, 0.03435755521059036, 0.02127155475318432, -0.013321946375072002, 0.011025997810065746, -0.02025516703724861, -0.038150858134031296, -0.003439385211095214, -0.06530294567346573, -0.02286873571574688, 0.010771900415420532, 0.04994822293519974, -0.04069183021783829, 0.04933113232254982, 0.01338547095656395, 0.015826616436243057, 0.026135697960853577, -0.029892705380916595, -0.014674105681478977, -0.0025976886972784996, 0.03130839020013809, -0.04599156975746155, -0.019402125850319862, -0.0404377318918705, -0.008240005001425743, -0.03651737794280052, -0.003498372156172991, 0.003657182678580284, 0.04047403112053871, 0.028858166188001633, 0.05397747829556465, -0.08501362055540085, -0.005635509733110666, -0.018930232152342796, -0.0057716332376003265, -0.00002149970350728836, -0.016988204792141914, 0.015391021966934204, 0.04537447541952133, -0.04363209754228592, 0.010581327602267265, 0.04188971593976021, -0.03257887437939644, 0.007618374656885862, -0.015073400922119617, 0.008766348473727703, -0.03884055092930794, -0.04417658969759941, -0.03205253183841705, 0.006284364964812994, -0.02065446227788925, -0.043196503072977066, -0.04777024686336517, -0.03767896443605423, -0.06896920502185822, 0.02931191213428974, -0.010073133744299412, -0.012768377549946308, 0.04769764840602875, -0.007749960757791996, 0.03227032721042633, 0.02076335996389389, 0.0029107725713402033, 0.02176159806549549, 0.050057120621204376, -0.02992900460958481, -0.008122031576931477, 0.019238777458667755, -0.026244597509503365, 0.0019148029386997223, -0.01080820057541132, -0.03927614539861679, -0.03537394106388092, 0.007273528724908829, -0.07710030674934387, 0.023685475811362267, -0.04116372391581535, -0.10200182348489761, 0.010472428984940052, -0.04417658969759941, 0.013893664814531803, -0.03354081138968468, 0.023540278896689415, 0.01063577737659216, -0.05815193057060242, 0.007228154223412275, -0.06915070116519928, 0.037497468292713165, -0.00912934448570013, 0.04076442867517471, -0.06994929164648056, -0.03261517360806465, 0.016480010002851486, -0.008480489253997803, 0.011016923002898693, 0.006320664659142494, 0.029602307826280594, 0.05775263160467148, 0.022886885330080986, 0.010427054949104786, 0.032252177596092224, -0.013730316422879696, 0.032397374510765076, -0.06758981943130493, -0.03938504680991173, 0.01717877760529518, 0.017922917380928993, -0.0336134135723114, 0.02871296927332878, 0.011851813644170761, 0.048459939658641815, -0.004251588601619005, -0.0319073311984539, -0.002668019151315093, -0.02081780880689621, 0.017251376062631607, -0.026680191978812218, -0.09495970606803894, 0.018839482218027115, -0.0013113223249092698, -0.01116212084889412, 0.02332248166203499, -0.0024592967238277197, 0.004185795318335295, -0.013358245603740215, -0.049258530139923096, -0.020491113886237144, 0.04109112545847893, 0.015871992334723473, 0.026280896738171577, -0.05528426170349121, -0.04777024686336517, 0.058660123497247696, 0.0003859666467178613, -0.0035618962720036507, 0.060221005231142044, 0.048351041972637177, 0.017224151641130447, -0.022886885330080986, -0.010000534355640411, -0.05129130929708481, 0.05503016337752342, 0.00606656726449728, -0.04573747143149376, 0.03796936199069023, -0.03230662643909454, -0.0004991192254237831, -0.015599745325744152, -0.0012523354962468147, -0.02996530383825302, 0.029402660205960274, -0.025609353557229042, -0.0319073311984539, -0.007514013443142176, -0.08740939199924469, 0.07818929851055145, -0.05818822979927063, 0.03187103196978569, -0.030146801844239235, -0.005490311421453953, -0.01213313452899456, -0.0064023383893072605, 0.005894144531339407, -0.04602786898612976, -0.0020293735433369875, 0.02597234956920147, 0.0373159684240818, 0.07855229079723358, 0.05630065128207207, -0.01905727945268154, -0.10011424124240875, 0.014075162820518017, 0.018839482218027115, 0.004433086141943932, 0.0931447222828865, -0.04791544750332832, 0.031108740717172623, 0.017078952863812447, -0.009964235126972198, 0.06584744155406952, -0.013276571407914162, 0.027696579694747925, 0.020799659192562103, -0.022179044783115387, 0.00571718392893672, 0.0030786581337451935, -0.01173383928835392, -0.03953024372458458, 0.01776864565908909, -0.07336145639419556, 0.011243795044720173, -0.00581700773909688, -0.04998452216386795, -0.0021291973534971476, -0.005880532320588827, 0.045156680047512054, -0.008961458690464497, -0.020545562729239464, -0.011697540059685707, 0.010744675993919373, 0.023086532950401306, -0.03435755521059036, 0.05818822979927063, 0.024901513010263443, -0.0034280417021363974, 0.0458463691174984, 0.015999039635062218, 0.0047007957473397255, 0.006243527866899967, -0.01123472023755312, -0.037043724209070206, 0.051363907754421234, -0.04682645946741104, 0.001712886500172317, -0.04424918815493584, -0.0007033043657429516, -0.046608660370111465, -0.06025730445981026, -0.08109326660633087, 0.031108740717172623, 0.07659211754798889, 0.03978434205055237, 0.04374099522829056, 0.07499493658542633, 0.02176159806549549 ]
426
bitmath
_norm
Normalize the input value into the fundamental unit for this prefix type
def _norm(self, value): """Normalize the input value into the fundamental unit for this prefix type""" self._bit_value = value * self._unit_value self._byte_value = self._bit_value / 8.0
(self, value)
[ -0.02524532750248909, 0.06916005164384842, 0.01740279421210289, 0.008146173320710659, 0.04382797330617905, -0.01899906061589718, -0.03428506478667259, -0.01931137405335903, 0.013611656613647938, -0.024846261367201805, 0.004632648080587387, 0.02729271538555622, 0.039455585181713104, 0.025401484221220016, -0.0004744343168567866, 0.04132946580648422, 0.0251065231859684, 0.0351005494594574, -0.004081761930137873, 0.010531899519264698, 0.017758483067154884, 0.04653468728065491, 0.010141507722437382, 0.03612424433231354, -0.009178541600704193, -0.007018374744802713, 0.007851210422813892, -0.049761924892663956, -0.03671416640281677, -0.03541286289691925, 0.04247461259365082, 0.037304092198610306, 0.05392610281705856, -0.024100178852677345, 0.04899849370121956, -0.08703131973743439, 0.0021645049564540386, 0.0018532760441303253, -0.08016042411327362, -0.01164234708994627, 0.028247006237506866, -0.04431379213929176, -0.012032738886773586, 0.050698865205049515, 0.027500923722982407, 0.02543618716299534, -0.0008892254554666579, 0.02300708182156086, -0.07134624570608139, 0.024204283952713013, -0.06176863983273506, 0.007183206733316183, 0.03862274810671806, 0.000887598842382431, -0.017741132527589798, 0.02803879790008068, 0.010696731507778168, 0.023909321054816246, -0.0392126739025116, 0.05645931139588356, -0.022937679663300514, 0.0719708725810051, -0.025158574804663658, -0.06378132104873657, 0.01596268266439438, -0.00466734915971756, -0.009187217801809311, 0.03407685458660126, -0.007308999542146921, 0.06364251673221588, -0.05212162807583809, 0.013308018445968628, -0.033053163439035416, 0.011130500584840775, 0.04809625446796417, 0.028715476393699646, 0.004541556350886822, 0.03312256559729576, 0.009360725060105324, -0.038796257227659225, 0.058680206537246704, 0.02580055221915245, 0.06641864031553268, 0.00035541909164749086, -0.013056432828307152, -0.02328469417989254, -0.007100790739059448, 0.041780583560466766, 0.06752908229827881, 0.05566117912530899, -0.027882641181349754, -0.03248058632016182, 0.015329379588365555, 0.06110931187868118, 0.004693375434726477, 0.03435446694493294, -0.039455585181713104, -0.04209289699792862, -0.02850726805627346, -0.049206700176000595, -0.009221918880939484, 0.05999886244535446, 0.03654066100716591, 0.005591276101768017, 0.039594389498233795, 0.040531329810619354, 0.038102228194475174, -0.07096453011035919, -0.02696305140852928, 0.03400745242834091, -0.022417157888412476, -0.05670222267508507, -0.039073869585990906, -0.026581335812807083, -0.06929886341094971, -0.03560372069478035, -0.006571593228727579, 0.029791222885251045, 0.03955968841910362, 0.029877975583076477, 0.0251065231859684, 0.03173450380563736, 0.0083326930180192, -0.0179580170661211, 0.014739454723894596, 0.054238416254520416, 0.059894759207963943, 0.02477685920894146, -0.030311744660139084, 0.015043092891573906, -0.020647382363677025, 0.04153767600655556, 0.00804640632122755, 0.030676109716296196, 0.01727266237139702, -0.014774155803024769, -0.0041858660988509655, 0.0033964074682444334, 0.01408880203962326, 0.06919475644826889, 0.011234604753553867, 0.04320334643125534, 0.10479847341775894, -0.05142759531736374, 0.05305856466293335, 0.06714736670255661, 0.0288369320333004, 0.00916986633092165, -0.05104587972164154, 0.016734790056943893, -0.06544699519872665, 0.04400147870182991, 0.09584549069404602, 0.02141081541776657, 0.014739454723894596, 0.01969309151172638, 0.03074551373720169, -0.0947350487112999, 0.018599994480609894, 0.04181528463959694, -0.01633572205901146, 0.022555964067578316, -0.013351395726203918, -0.09466564655303955, -0.037859316915273666, 0.05743095278739929, -0.029548311606049538, -0.011581619270145893, 0.0039429557509720325, -0.004205385688692331, 0.013403447344899178, -0.03896976634860039, -0.0034658105578273535, 0.03602013736963272, 0.06173393502831459, -0.02253861352801323, -0.001200454425998032, 0.02132406085729599, -0.02925334870815277, 0.0050534033216536045, 0.015659043565392494, -0.008618980646133423, -0.037581704556941986, -0.023215292021632195, 0.029687117785215378, 0.026216968894004822, 0.014938987791538239, 0.03799812123179436, 0.04320334643125534, -0.04764513671398163, 0.037165287882089615, -0.01194598525762558, -0.03350428119301796, -0.006059746257960796, 0.028680775314569473, -0.026425179094076157, 0.06638393551111221, -0.03421566262841225, 0.04969252273440361, -0.047853343188762665, -0.033903349190950394, -0.04278692603111267, 0.019016413018107414, 0.014756805263459682, 0.0013479356421157718, -0.061525728553533554, 0.01853059232234955, 0.029982080683112144, -0.05763916298747063, -0.043515659868717194, 0.0006918607978150249, -0.01828768104314804, 0.013039082288742065, 0.012266973964869976, -0.011347385123372078, -0.11680518835783005, -0.01731603965163231, -0.011416787281632423, 0.007252609822899103, 0.021636374294757843, -0.001381552778184414, 0.004988337866961956, 0.0619768463075161, -0.0658981129527092, -0.01572844758629799, 0.04483431577682495, -0.018599994480609894, 0.02692835032939911, -0.004949298687279224, 0.024533947929739952, 0.0462917760014534, -0.0173594169318676, -0.07745371013879776, 0.022469209507107735, -0.007942302152514458, -0.020838240161538124, 0.06503057479858398, 0.03227237984538078, 0.003719565225765109, -0.02599141001701355, -0.028854282572865486, -0.013559604063630104, 0.0242216344922781, 0.01624029316008091, -0.018270330503582954, 0.00033454399090260267, 0.023857269436120987, 0.022833574563264847, -0.019051114097237587, 0.009508206509053707, -0.08834997564554214, -0.022573314607143402, 0.021306710317730904, -0.008180874399840832, 0.11791563779115677, -0.0024074153043329716, -0.054620131850242615, 0.022243650630116463, 0.0015387939056381583, 0.016387775540351868, -0.06770259141921997, -0.004576257895678282, 0.050143640488386154, 0.012830873019993305, -0.013689734973013401, -0.009785817936062813, 0.003784630447626114, 0.02571379765868187, 0.015312029048800468, 0.032168272882699966, 0.06353841722011566, -0.011017720215022564, -0.02057797834277153, -0.003585096914321184, -0.03327872231602669, 0.011798503808677197, 0.04157237708568573, 0.028194954618811607, 0.025019768625497818, 0.0007384908967651427, 0.027448872104287148, -0.05933953449130058, -0.001453124568797648, -0.008042068220674992, -0.03681827336549759, 0.04722871631383896, 0.013334044255316257, -0.04396677762269974, -0.006267955061048269, -0.03246323764324188, 0.024533947929739952, 0.015233950689435005, -0.02193133719265461, 0.0251065231859684, -0.0085365641862154, -0.05781266838312149, -0.052433937788009644, -0.03900446742773056, 0.05777796730399132, 0.019241971895098686, -0.05017834156751633, -0.01472210418432951, -0.01401939895004034, 0.04750632867217064, 0.02052592672407627, -0.0004923272645100951, 0.04604886844754219, 0.009083112701773643, -0.0030255354940891266, 0.017975367605686188, -0.028767528012394905, -0.006298318970948458, -0.04722871631383896, -0.013611656613647938, 0.07134624570608139, 0.055175356566905975, 0.058055579662323, -0.0065889437682926655, -0.009187217801809311, 0.08085445314645767, -0.0009879078716039658, 0.030034132301807404, -0.004370218142867088, 0.019762493669986725, -0.07544102519750595, -0.05108058080077171, 0.003478823695331812, 0.000941819918807596, 0.003094938350841403, -0.046499986201524734, -0.03458002582192421, -0.00844547338783741, 0.014904286712408066, 0.012457831762731075, -0.01425363402813673, -0.027327416464686394, 0.03331342339515686, -0.024759506806731224, -0.03334812447428703, -0.037720512598752975, 0.04788804426789284, 0.05642461031675339, 0.012561936862766743, -0.005010026507079601, 0.013629007153213024, 0.0020397964399307966, -0.03470148146152496, -0.013819864951074123, 0.03537816181778908, -0.0018868930637836456, -0.019536934792995453, -0.021115852519869804, 0.022555964067578316, 0.006827516481280327, 0.08314475417137146, -0.04032312333583832, -0.03027704358100891, -0.07523281127214432, -0.025696447119116783, 0.005291976034641266, 0.058020878583192825, -0.01683889515697956, 0.032359130680561066, -0.009950649924576283, 0.016309697180986404, -0.025696447119116783, -0.03789401799440384, -0.02113320305943489, -0.02286827750504017, 0.05073356628417969, -0.012058764696121216, -0.02337144874036312, -0.05701453611254692, -0.06065819039940834, -0.017663054168224335, 0.035673122853040695, -0.030676109716296196, 0.011841881088912487, -0.04778394103050232, -0.028524618595838547, 0.07190147042274475, 0.0066583468578755856, -0.04538954049348831, 0.02309383638203144, 0.0076777031645178795, -0.02566174603998661, 0.04563244804739952, 0.005951303988695145, -0.04386267438530922, 0.035343460738658905, -0.02309383638203144, 0.01889495737850666, 0.045146629214286804, -0.08300594240427017, 0.023024434223771095, 0.04545894265174866, -0.015320704318583012, -0.03019028902053833, 0.008163523860275745, 0.013663708232343197, -0.0007786144851706922, -0.023492902517318726, -0.035950735211372375, 0.0890440046787262, -0.0077557810582220554, -0.029982080683112144, 0.008827189914882183, 0.0005731166456826031, -0.017532924190163612, 0.05239923670887947, -0.04618767276406288, 0.010965668596327305, 0.030120886862277985, 0.004554569721221924, 0.00687089329585433, -0.040670137852430344, -0.015155872330069542, -0.09882982075214386, -0.00923926942050457, 0.03928207606077194, 0.002717559924349189, 0.021115852519869804, 0.04226640611886978, 0.06586341559886932, 0.06541229039430618, -0.0015312029281631112, 0.06745968014001846, -0.01364635769277811, -0.06308729201555252, 0.04205819591879845, 0.0036111229564994574, 0.019675740972161293, -0.06634923070669174, -0.03671416640281677, 0.013863242231309414, 0.0005438373191282153, -0.02016156166791916, 0.015450835227966309, -0.008549577556550503, -0.023458201438188553, 0.006189876701682806, 0.029964730143547058, 0.020421821624040604, -0.016318371519446373, 0.048790283501148224, -0.02930540218949318, -0.02220894768834114, 0.011043746955692768, -0.019016413018107414, -0.006267955061048269, -0.03799812123179436, -0.05621640011668205, 0.03928207606077194, -0.005062078591436148, 0.030832266435027122, -0.01731603965163231, -0.05913132429122925, -0.03353898227214813, -0.021115852519869804, -0.08710072189569473, -0.01689962111413479, 0.04008021205663681, -0.02939215488731861, -0.017767159268260002, -0.002878054277971387, 0.06846602261066437, 0.04372386634349823, 0.027830589562654495, 0.02370111271739006, 0.02430838905274868, -0.004099112469702959, -0.03737349808216095, 0.06364251673221588, 0.03331342339515686, 0.03051995299756527, -0.014496544376015663, -0.042162299156188965, -0.009039736352860928, -0.024048127233982086, -0.07710669189691544, 0.010453821159899235, 0.000008590650395490229, -0.02477685920894146, 0.02585260383784771, 0.00493628578260541, -0.025366783142089844, -0.015008390881121159, 0.033573683351278305, 0.04778394103050232, -0.04087834432721138, -0.016170891001820564, 0.05458543077111244, 0.013386096805334091, -0.003272783476859331, 0.017758483067154884, 0.00860596727579832, -0.032584693282842636, 0.0156850703060627, -0.02370111271739006, 0.023249993100762367, -0.017697755247354507, 0.0022621029056608677, -0.07891117036342621, 0.010401769541203976, -0.011330033652484417, 0.0541343130171299, -0.0719708725810051, -0.010896265506744385, -0.015615667216479778, -0.024048127233982086, -0.048547372221946716, -0.02198338881134987, -0.006701723672449589, -0.016405126079916954, 0.02753562666475773, 0.028906334191560745, -0.055314160883426666, -0.048130955547094345, -0.02156697027385235, -0.003910423256456852, -0.022035440430045128, 0.001866289065219462, -0.0694376677274704, -0.040010809898376465, -0.021948687732219696, -0.02184458263218403, -0.05507125332951546, -0.06135221943259239, 0.04011491313576698, -0.013767813332378864, 0.010184885002672672, -0.050039537250995636, 0.0512193888425827, 0.030016781762242317, 0.005986005533486605, -0.0032142247073352337, -0.025904657319188118, -0.04167648032307625, 0.022104844450950623, 0.000014470247151621152, -0.03541286289691925, -0.017203260213136673, 0.03444122150540352, -0.013030407018959522, 0.00446781562641263, 0.03551696613430977, -0.022313052788376808, -0.012527234852313995, -0.01418423093855381, 0.027726484462618828, -0.08869698643684387, -0.035534318536520004, 0.01778450980782509, 0.00816786102950573, 0.01390661858022213, -0.025974059477448463, 0.01908581517636776, 0.03563842177391052, -0.007916275411844254, 0.024100178852677345, -0.012032738886773586, -0.05701453611254692, 0.0462917760014534, 0.014366413466632366, -0.06794550269842148, 0.022660067304968834, -0.04018431529402733, -0.056528713554143906, 0.028489917516708374, 0.027136558666825294, -0.014531245455145836, 0.021115852519869804, 0.016717439517378807, 0.01899906061589718, -0.03485763818025589, 0.04292573407292366, -0.021289359778165817, -0.06745968014001846, 0.008063756860792637, -0.04278692603111267, -0.014531245455145836, -0.007985678501427174, 0.0010958077618852258, -0.015129846520721912, 0.039594389498233795, -0.031023124232888222, 0.03378189355134964, 0.02141081541776657, -0.03740819916129112, -0.044348493218421936, -0.057882070541381836, -0.054238416254520416, -0.00353521341457963, -0.053821999579668045, -0.03051995299756527, -0.06038057804107666, -0.06798020005226135, -0.0645100548863411, 0.01847853884100914, 0.0323764830827713, 0.03225502744317055, 0.02170577645301819, -0.006614970043301582, 0.0562858022749424, 0.036054838448762894, -0.03284495323896408, 0.01820092648267746, 0.0060120318084955215, -0.024846261367201805, -0.042717523872852325, 0.035065848380327225, 0.03778991475701332, -0.02571379765868187, -0.018721450120210648, 0.004476491361856461, -0.02005745656788349, 0.009525557048618793, -0.0832141563296318, -0.015572289936244488, -0.0196063369512558, -0.05468953773379326, -0.00004578291191137396, -0.03997610881924629, -0.0033595373388379812, -0.0003066201170440763, 0.013863242231309414, 0.030624058097600937, 0.029877975583076477, -0.004923272877931595, -0.07856415212154388, 0.025366783142089844, 0.007929288782179356, -0.01763702742755413, -0.016639361158013344, -0.029565662145614624, 0.020092157647013664, -0.05309326946735382, 0.008501863107085228, -0.007230921182781458, 0.038102228194475174, 0.055834684520959854, -0.0024030776694417, 0.010367067530751228, 0.010341041721403599, -0.0045936089009046555, 0.03924737498164177, -0.03190801292657852, -0.05701453611254692, -0.06024177372455597, 0.0002700209151953459, -0.006784139666706324, 0.05722274258732796, 0.027934692800045013, -0.00019112926383968443, 0.044209688901901245, -0.019051114097237587, 0.021723126992583275, -0.008324017748236656, -0.017107831314206123, -0.02543618716299534, -0.08300594240427017, -0.03723469004034996, 0.029617715626955032, 0.018443837761878967, 0.015554939396679401, 0.006627982947975397, 0.03612424433231354, -0.03463207930326462, -0.04226640611886978, -0.06190744414925575, -0.015754472464323044, 0.04091304913163185, -0.03369513899087906, -0.03392069786787033, -0.02193133719265461, 0.014227607287466526, -0.001165752881206572, -0.01931137405335903, 0.04296043515205383, 0.03574252501130104, -0.007564923260360956, -0.008315342478454113, 0.005218235310167074, 0.011529567651450634, 0.05465483292937279, -0.04445260018110275, -0.03952498733997345, 0.043515659868717194, -0.04223170503973961, -0.021688425913453102, -0.04035782441496849, -0.02828170731663704, -0.05927013233304024, -0.008393420837819576, -0.04035782441496849, 0.030311744660139084, 0.022885628044605255, -0.015806525945663452, 0.06895184516906738, 0.02803879790008068, 0.05344028398394585, -0.0502130463719368, -0.026668088510632515, 0.01001137774437666, 0.023267343640327454, 0.02491566352546215, -0.0068318541161715984, -0.00577345909550786, 0.003290134249255061, 0.10132832825183868, 0.06215035542845726, 0.08016042411327362, -0.0441402867436409, -0.02715390920639038, 0.007430454716086388, 0.051635805517435074, -0.04181528463959694, 0.07287311553955078, 0.01619691774249077, 0.01576314866542816, 0.0146093238145113, -0.0370611846446991, 0.049866028130054474, 0.010072105564177036, -0.01781921088695526, -0.014574622735381126, 0.013377421535551548, 0.032549988478422165, -0.058819010853767395, 0.009456153959035873, -0.014357738196849823, 0.045146629214286804, -0.020751485601067543, 0.04382797330617905, 0.021549619734287262, 0.012136843055486679, -0.023440850898623466, 0.0076430016197264194, -0.02063003182411194, -0.02809084951877594, 0.021861933171749115, -0.027500923722982407, 0.02645988017320633, -0.00024711250443942845, -0.023319395259022713, 0.04573655501008034, 0.03740819916129112, -0.016743464395403862, 0.029045140370726585, -0.0021547451615333557, 0.034042153507471085, -0.003730409312993288, -0.025869954377412796, -0.010714082978665829, 0.05684102699160576, -0.03563842177391052, 0.04368916526436806, -0.015103819780051708, -0.013767813332378864, -0.02080353908240795, -0.032584693282842636, -0.05330147594213486, 0.020751485601067543, 0.05267684906721115, -0.0004050313727930188, 0.030971072614192963, 0.045563045889139175, 0.03131808713078499 ]
427
bitmath
_set_prefix_value
null
def _set_prefix_value(self): self.prefix_value = self._to_prefix_value(self._bit_value)
(self)
[ -0.03728190064430237, 0.031588438898324966, 0.005899251904338598, 0.011627014726400375, 0.0074598100036382675, 0.0458906926214695, -0.005234728567302227, 0.03632155805826187, 0.0724373310804367, -0.06578352302312851, -0.003766346722841263, 0.015777070075273514, 0.0621822327375412, 0.010983927175402641, -0.002064309548586607, -0.050898198038339615, 0.0265809316188097, 0.018675249069929123, -0.0011779211927205324, 0.048051465302705765, 0.01474812999367714, 0.0022336558904498816, 0.03465810790657997, 0.05971277877688408, 0.016951775178313255, -0.016891753301024437, -0.03302895277738571, -0.006923904176801443, 0.021573428064584732, -0.04294106736779213, 0.022293685004115105, -0.014568066224455833, -0.0019249740289524198, -0.019103974103927612, 0.08039446175098419, -0.058615244925022125, -0.004162916913628578, 0.003612005850300193, -0.07031085342168808, 0.002673098584637046, 0.05772349610924721, -0.03834513947367668, -0.03632155805826187, -0.006225083023309708, 0.028827449306845665, 0.0433526448905468, 0.0376591794192791, 0.06598930805921555, 0.06667526811361313, 0.03019936941564083, 0.002966775093227625, -0.0012443735031411052, -0.025106118991971016, -0.028330128639936447, -0.04959487542510033, 0.01227867603302002, 0.04407289996743202, 0.027078252285718918, -0.032874610275030136, 0.03957986459136009, -0.02455735206604004, 0.061496272683143616, -0.010357988998293877, -0.03151984140276909, 0.007245447486639023, -0.025191863998770714, 0.0012411581119522452, 0.014645236544311047, -0.010280818678438663, 0.01631726324558258, 0.024420158937573433, -0.028107192367315292, 0.002184352371841669, -0.022225089371204376, -0.0021886397153139114, 0.034486617892980576, -0.06537194550037384, 0.0018327981233596802, -0.040197230875492096, -0.04626797139644623, 0.019549846649169922, -0.0051661329343914986, 0.03621866554021835, -0.014250809326767921, -0.01369346771389246, 0.007704182993620634, 0.026357995346188545, 0.024437308311462402, 0.0996699258685112, 0.028312981128692627, -0.02287675067782402, -0.009440517984330654, 0.005063239019364119, 0.04462166875600815, 0.018572354689240456, 0.012621656060218811, 0.014405150897800922, -0.0669153556227684, -0.00836013164371252, -0.012012866325676441, -0.025843525305390358, -0.0034019306767731905, -0.03316614404320717, 0.0007974279578775167, 0.043078258633613586, -0.005959273781627417, 0.01635156013071537, -0.020681681111454964, 0.008698824793100357, -0.003337621921673417, -0.01287889014929533, -0.05525404214859009, 0.015176855027675629, -0.01594856008887291, -0.0035734204575419426, 0.006893893238157034, 0.04822295531630516, -0.018503759056329727, 0.029239024966955185, 0.027266891673207283, 0.04208361729979515, -0.0008938910323195159, 0.003843517042696476, 0.023888541385531425, 0.025191863998770714, 0.0215905774384737, 0.06952200084924698, 0.0784737691283226, 0.0392368845641613, -0.052921779453754425, 0.025037523359060287, 0.022636665031313896, -0.023922838270664215, -0.019035376608371735, 0.032051458954811096, -0.03951127082109451, -0.03261737525463104, 0.006199359428137541, -0.03837943822145462, 0.056591663509607315, 0.01881244033575058, 0.023219730705022812, 0.04016293212771416, -0.02978779375553131, 0.007163989823311567, 0.00737406499683857, 0.047571294009685516, 0.06406862288713455, -0.011918547563254833, -0.02822723612189293, 0.006851021200418472, 0.022653814405202866, 0.034057892858982086, 0.0374876894056797, -0.04866883158683777, 0.024214372038841248, -0.008488749153912067, -0.05113828554749489, 0.04174063727259636, 0.02498607710003853, 0.006156486924737692, -0.002778136171400547, -0.019103974103927612, -0.07922832667827606, -0.05072670802474022, 0.042735278606414795, -0.04626797139644623, -0.017817799001932144, -0.018898185342550278, -0.0431811548769474, 0.04047161340713501, -0.04290676862001419, 0.0024437308311462402, 0.057483408600091934, 0.03597857803106308, 0.02692391164600849, 0.001077706809155643, -0.008227227255702019, -0.034915339201688766, 0.02867310866713524, 0.010529479011893272, 0.03813935071229935, -0.02004716731607914, -0.0004946411354467273, 0.03359486907720566, 0.028810301795601845, 0.04774278402328491, 0.005852092523127794, 0.07140839099884033, -0.02330547571182251, 0.03957986459136009, -0.009577710181474686, -0.01750911772251129, 0.004015007056295872, 0.014422299340367317, -0.021367639303207397, 0.07476959377527237, -0.0775134265422821, 0.022242238745093346, 0.014765279367566109, -0.0034640957601368427, 0.006439445074647665, 0.017714904621243477, 0.07017365843057632, 0.034881044179201126, -0.019498400390148163, 0.04691963270306587, 0.06406862288713455, -0.0472969114780426, -0.03184567019343376, 0.0017717048758640885, -0.05717472732067108, 0.06468598544597626, 0.025123268365859985, -0.03263452649116516, -0.09164419770240784, -0.02407718077301979, 0.026752421632409096, 0.02779851108789444, -0.0277642123401165, 0.020287252962589264, 0.04462166875600815, 0.0033676326274871826, -0.0637599378824234, -0.020218657329678535, -0.0001619775575818494, 0.006019295193254948, -0.0466795489192009, -0.027301190420985222, 0.026357995346188545, 0.04047161340713501, -0.0061950720846652985, -0.04623367264866829, -0.0009555201977491379, 0.004000001586973667, -0.0072540221735835075, 0.09329050034284592, 0.008883176371455193, -0.0077256192453205585, 0.0026345134247094393, -0.01800643838942051, -0.016471603885293007, 0.07600431889295578, 0.001359057379886508, -0.023871392011642456, 0.03215435519814491, 0.027198296040296555, 0.008514473214745522, 0.016634518280625343, 0.03434942290186882, -0.03549840673804283, 0.016188645735383034, -0.00940622016787529, 0.0302165187895298, 0.036870326846838, 0.008098609745502472, -0.01917256973683834, 0.0547395721077919, -0.025449099019169807, 0.016951775178313255, -0.09418224543333054, -0.03594427928328514, 0.01966989040374756, -0.06039873883128166, 0.03680172935128212, 0.055425532162189484, 0.016128623858094215, 0.04664525017142296, -0.03110826574265957, 0.007841374725103378, 0.10584355890750885, -0.026752421632409096, -0.030370859429240227, 0.042769577354192734, -0.03184567019343376, -0.006190784741193056, -0.003035370958968997, 0.01997857168316841, -0.02212219499051571, -0.011704185046255589, 0.016205795109272003, -0.059884268790483475, 0.03172563016414642, -0.0014640948502346873, -0.0028703119605779648, 0.0179549902677536, 0.06396573036909103, 0.03103967010974884, 0.011524120345711708, -0.03062809444963932, -0.016214368864893913, 0.02253377065062523, -0.0011157561093568802, 0.023922838270664215, 0.0018435162492096424, -0.04537622258067131, -0.06228512525558472, 0.017046093940734863, 0.017329053953289986, 0.02824438363313675, -0.027627021074295044, -0.015725621953606606, -0.08643089979887009, 0.0028167213313281536, 0.0034640957601368427, 0.016668817028403282, 0.053367651998996735, 0.039922844618558884, 0.014971067197620869, 0.034949637949466705, -0.055356934666633606, 0.016934625804424286, -0.04321544989943504, -0.06170206144452095, 0.028724556788802147, 0.034126486629247665, 0.01100965030491352, 0.01123258750885725, 0.014405150897800922, 0.04866883158683777, -0.02001287043094635, -0.016557348892092705, -0.07291749864816666, 0.04626797139644623, -0.04242659732699394, -0.008437301963567734, 0.018212225288152695, 0.041466254740953445, -0.04331834614276886, -0.05192713811993599, -0.06742982566356659, -0.006066454574465752, -0.01550268568098545, 0.0050503769889473915, -0.020235806703567505, -0.022276535630226135, 0.03813935071229935, -0.014628087170422077, -0.048428744077682495, 0.02327117696404457, 0.029290473088622093, 0.027129700407385826, -0.0441414974629879, -0.0028660246171057224, 0.031657032668590546, 0.010778139345347881, -0.026323698461055756, 0.013504828326404095, 0.0277642123401165, -0.0031961428467184305, -0.020784573629498482, -0.02500322461128235, 0.034555211663246155, -0.0204072967171669, 0.129097580909729, -0.0506238155066967, -0.03879101201891899, -0.06317687779664993, -0.01045230869203806, 0.04201502352952957, 0.013684893026947975, -0.05878673493862152, 0.05803217738866806, -0.004135049879550934, 0.010092180222272873, -0.0006441588629968464, -0.06211363524198532, 0.03522402420639992, -0.011575567536056042, 0.007481246255338192, 0.008823154494166374, -0.05467097461223602, -0.03800215944647789, -0.0596441812813282, -0.007751342840492725, 0.04990355670452118, -0.03201716020703316, -0.009260454215109348, -0.06458309292793274, -0.07133979350328445, 0.08224654942750931, -0.011369779706001282, 0.0006521974573843181, 0.06410291790962219, -0.023991435766220093, 0.005114685744047165, 0.06053593009710312, -0.006478030700236559, 0.029530558735132217, 0.038619522005319595, 0.011386928148567677, 0.06626369059085846, 0.05343624949455261, -0.07669027894735336, 0.030010730028152466, -0.0006682746461592615, -0.02735263668000698, -0.03628725931048393, 0.06101610139012337, -0.006375136319547892, -0.0009844591841101646, -0.09109542518854141, -0.019446952268481255, 0.08951772004365921, 0.029187578707933426, -0.030096475034952164, 0.04249519482254982, 0.026735274121165276, -0.0026109335012733936, 0.025466248393058777, -0.10968492925167084, -0.0037191868759691715, 0.03714470937848091, -0.006726691033691168, -0.02819293737411499, -0.011386928148567677, 0.0027073966339230537, -0.0451018400490284, 0.011189715005457401, 0.03920258954167366, -0.02659808099269867, 0.04489605128765106, 0.0257920790463686, 0.029341919347643852, 0.0531618632376194, -0.0017341914353892207, 0.03975135460495949, 0.003965703770518303, -0.013110402040183544, 0.04400430619716644, 0.02006431668996811, -0.006490892264991999, -0.0071511282585561275, 0.015854239463806152, 0.012021441012620926, -0.014053596183657646, 0.007322618272155523, 0.005466239992529154, -0.0159828569740057, -0.05103538930416107, 0.04297536611557007, -0.03666453808546066, 0.011506970971822739, -0.02248232439160347, 0.03102252073585987, 0.0011832802556455135, -0.05058951675891876, -0.013822085224092007, -0.041843533515930176, 0.0046388013288378716, -0.05388212203979492, -0.031588438898324966, -0.008934623561799526, -0.008866026997566223, 0.007236873265355825, -0.007811364252120256, -0.04853163659572601, -0.023202581331133842, -0.015597005374729633, -0.07518116384744644, 0.006469456013292074, 0.061496272683143616, -0.04445017874240875, 0.004634513985365629, -0.02088746801018715, 0.08533336967229843, 0.02164202369749546, 0.0400257408618927, -0.05679745227098465, 0.0004863346111960709, -0.04537622258067131, -0.05933550000190735, 0.003286174964159727, 0.027867106720805168, 0.007614151109009981, -0.00899464450776577, -0.05477387085556984, 0.0236484557390213, -0.03673313558101654, -0.022602366283535957, -0.017869247123599052, -0.004192927852272987, 0.04901180788874626, 0.018898185342550278, 0.02977064438164234, -0.019909976050257683, 0.014002148993313313, 0.00775991752743721, -0.014568066224455833, -0.03762488067150116, 0.01999572105705738, 0.04791427403688431, -0.038996800780296326, 0.015494110994040966, 0.02733548730611801, 0.009517688304185867, -0.05275028944015503, 0.022705260664224625, -0.01680600829422474, 0.05161845684051514, -0.06338266283273697, -0.01709754206240177, -0.06718973815441132, 0.042666684836149216, 0.01671168953180313, 0.015734197571873665, -0.08375565707683563, 0.0225509200245142, -0.0029539132956415415, -0.02702680602669716, -0.017783502116799355, 0.007695608772337437, -0.04626797139644623, 0.010760989971458912, -0.02977064438164234, 0.014096468687057495, -0.04400430619716644, 0.0026430878788232803, -0.03933978080749512, -0.03851662948727608, -0.02736978605389595, -0.03026796504855156, 0.0023601294960826635, -0.032926056534051895, -0.02857021428644657, -0.010460883378982544, 0.007914258167147636, -0.0500064492225647, 0.014053596183657646, -0.0036012877244502306, -0.025243312120437622, -0.024625947698950768, 0.028450172394514084, 0.09514258801937103, 0.005800645332783461, 0.02008146606385708, 0.019858529791235924, -0.03546410799026489, 0.023802796378731728, -0.0024823162239044905, 0.006105039734393358, -0.0049003236927092075, -0.0027481254655867815, -0.03518972545862198, 0.027181146666407585, 0.07401503622531891, -0.03515542671084404, 0.03704181686043739, -0.008917474187910557, 0.009003219194710255, -0.041843533515930176, -0.05559702217578888, 0.009337624534964561, -0.01754341460764408, 0.010332265868782997, -0.03402359411120415, 0.002795285079628229, 0.002986067673191428, 0.010538053698837757, 0.04702252522110939, -0.0025337631814181805, -0.03138265013694763, 0.023905690759420395, 0.049663472920656204, -0.024694543331861496, -0.00799571629613638, -0.06238802149891853, -0.07991428673267365, 0.005170420277863741, 0.031708478927612305, 0.01082101184874773, -0.0004681138088926673, -0.006636658683419228, 0.03872241824865341, -0.06520045548677444, 0.012098611332476139, 0.030816731974482536, -0.030405156314373016, 0.019018229097127914, 0.008523046970367432, -0.028124341741204262, 0.030405156314373016, 0.04060880467295647, 0.01966989040374756, 0.07655308395624161, -0.004081459250301123, 0.012775996699929237, 0.060741718858480453, -0.05816936865448952, -0.07175137102603912, -0.09761204570531845, -0.04997215420007706, -0.031314052641391754, -0.06338266283273697, -0.030079325661063194, -0.00837728101760149, -0.019909976050257683, -0.10289393365383148, 0.07490678131580353, 0.007905683480203152, -0.003774921176955104, 0.003140408545732498, -0.039031099528074265, 0.021196149289608, -0.021556278690695763, -0.018572354689240456, 0.03347482532262802, 0.02447160705924034, -0.001484459382481873, -0.012150058522820473, 0.009646305814385414, 0.016951775178313255, -0.02172776870429516, -0.0359099805355072, -0.057826388627290726, -0.023597007617354393, 0.03717900812625885, -0.0352926179766655, -0.04654235392808914, -0.05405361205339432, -0.07010506838560104, 0.012098611332476139, -0.02942766435444355, -0.0036527346819639206, -0.020630232989788055, 0.015837091952562332, 0.008218652568757534, 0.025843525305390358, 0.024351563304662704, -0.07950270920991898, 0.014010723680257797, -0.012150058522820473, 0.017440522089600563, -0.013273317366838455, -0.012347271665930748, -0.027506977319717407, -0.03680172935128212, 0.01410504337400198, -0.016668817028403282, -0.01720901019871235, -0.02949625998735428, -0.03479529917240143, 0.005899251904338598, -0.004574492573738098, -0.022362280637025833, 0.028038596734404564, -0.02826153300702572, -0.07051663845777512, -0.06976208835840225, -0.012304399162530899, 0.008115759119391441, -0.008278674446046352, -0.027918552979826927, 0.07161417603492737, 0.024608798325061798, 0.022190790623426437, 0.042735278606414795, 0.013419083319604397, 0.031588438898324966, -0.04201502352952957, -0.08492179214954376, -0.028724556788802147, 0.022688111290335655, -0.02210504561662674, 0.050075046718120575, 0.031708478927612305, 0.03308039903640747, -0.039476972073316574, 0.012021441012620926, -0.01674598827958107, -0.009148985147476196, -0.021007511764764786, -0.07271171361207962, -0.02731833979487419, 0.009500539861619473, -0.05436229333281517, 0.0005857451469637454, -0.024694543331861496, 0.03265167400240898, -0.00765702361240983, -0.022190790623426437, -0.028312981128692627, 0.044347286224365234, 0.0022315122187137604, 0.024797437712550163, -0.01709754206240177, -0.011858525685966015, 0.0021800652612000704, 0.009500539861619473, -0.004510183818638325, -0.03803645819425583, -0.027644170448184013, -0.02935906872153282, 0.019378356635570526, -0.06135908141732216, 0.03222294896841049, -0.008737409487366676, -0.048840317875146866, 0.03632155805826187, -0.047605592757463455, 0.03717900812625885, -0.0005409970181062818, -0.009937838651239872, -0.033320486545562744, -0.00839443039149046, 0.008840303868055344, -0.016488753259181976, -0.0498349629342556, -0.04956057667732239, 0.07867956161499023, 0.030062176287174225, 0.05357344076037407, -0.0409860834479332, -0.03868811950087547, -0.027043955400586128, 0.016454454511404037, -0.04054021090269089, -0.0010557345813140273, 0.0009062168537639081, 0.0612218901515007, 0.008025726303458214, 0.021419087424874306, -0.015391217544674873, 0.03313184529542923, -0.008574494160711765, -0.04170634225010872, 0.06369134038686752, 0.04777708277106285, -0.07765062153339386, 0.013753488659858704, -0.0032733131665736437, 0.052510201930999756, -0.018949631601572037, -0.014585214667022228, 0.06794429570436478, -0.0020632375963032246, 0.04163774475455284, 0.01371919084340334, 0.02210504561662674, 0.02615220844745636, 0.04009433463215828, -0.032102905213832855, -0.0066195097751915455, 0.03422938287258148, -0.01668596640229225, 0.06818437576293945, 0.022242238745093346, -0.006735265254974365, 0.0014683821937069297, 0.03069669008255005, -0.016857456415891647, 0.02663237974047661, -0.0019571282900869846, -0.020733127370476723, 0.017423372715711594, -0.042666684836149216, -0.014285107143223286, 0.028004297986626625, 0.002381565747782588, -0.022293685004115105, -0.06650377810001373, -0.03302895277738571, 0.016248667612671852, 0.03995714336633682, 0.032926056534051895, 0.024265818297863007, 0.039442673325538635, 0.00023767426318954676 ]
428
bitmath
_setup
null
def _setup(self): return (2, 0, 'Bit', 'Bits')
(self)
[ 0.0016102580120787024, -0.022419745102524757, 0.035354893654584885, -0.01771283708512783, 0.03238211199641228, 0.008391921408474445, -0.020101681351661682, 0.01657150126993656, -0.002101298188790679, -0.021110305562615395, 0.03213438019156456, 0.08238858729600906, 0.029550887644290924, 0.06897566467523575, 0.004260105546563864, -0.015615963377058506, 0.010440134443342686, 0.013828754425048828, -0.03719519078731537, 0.04321153834462166, -0.013439460657536983, 0.021234171465039253, 0.07290399074554443, 0.04183131828904152, 0.025392530485987663, 0.07431960105895996, -0.013589869253337383, -0.01063478086143732, 0.013872992247343063, -0.07651379704475403, -0.11919447779655457, -0.015439012087881565, 0.010891360230743885, 0.020809488371014595, 0.03160352632403374, -0.014740053564310074, 0.012722807936370373, 0.09880967438220978, -0.023198332637548447, 0.00234903022646904, 0.04590120166540146, -0.05460720881819725, -0.016774995252490044, -0.012873216532170773, -0.031196536496281624, -0.01634146459400654, 0.02806449681520462, -0.053333159536123276, -0.054111745208501816, -0.03424010053277016, 0.058606311678886414, 0.006210994906723499, 0.0317096970975399, -0.0007564673433080316, -0.008710433728992939, -0.038610801100730896, 0.04243295267224312, 0.0544656477868557, 0.034487832337617874, 0.09116537868976593, -0.026666579768061638, 0.10199480503797531, 0.0010196826187893748, -0.03294835612177849, -0.01500548142939806, -0.017376629635691643, -0.0439901240170002, -0.00969693809747696, 0.03365616127848625, 0.14368456602096558, 0.034965600818395615, 0.016421092674136162, -0.010121621191501617, 0.033107612282037735, 0.033974673599004745, -0.03386850282549858, -0.023676101118326187, 0.003968135919421911, 0.040592655539512634, -0.02312755212187767, -0.015439012087881565, 0.07042666524648666, -0.024313125759363174, 0.03712441027164459, 0.014368455857038498, 0.013439460657536983, 0.011227567680180073, -0.0033797721844166517, 0.026471933349967003, 0.007569097448140383, -0.03424010053277016, 0.01750934310257435, 0.007529283408075571, 0.08394575864076614, -0.013306747190654278, -0.022791344672441483, -0.0210926104336977, -0.023534540086984634, -0.022968295961618423, -0.017580123618245125, -0.06384407728910446, -0.06196838989853859, -0.06901105493307114, -0.01935848593711853, -0.0078124054707586765, -0.03519563749432564, -0.010015450417995453, 0.007321365177631378, -0.034540917724370956, -0.07173610478639603, 0.0018436126410961151, -0.034452442079782486, 0.015085109509527683, 0.034063149243593216, -0.004565346986055374, -0.04685673862695694, 0.02785215526819229, -0.04721064120531082, 0.02403000369668007, 0.017403172329068184, 0.0034793075174093246, -0.01220964826643467, -0.008290174417197704, 0.023587625473737717, 0.0607297308743, 0.06802012771368027, 0.014908157289028168, 0.010033145546913147, -0.005029844120144844, -0.045795030891895294, 0.027038177475333214, -0.0004376783035695553, -0.05963262915611267, -0.004441480617970228, -0.043105367571115494, -0.0643395408987999, 0.06395024806261063, -0.010917902924120426, -0.0038088795263320208, 0.05478416010737419, -0.01861529052257538, 0.05581048130989075, 0.02017246186733246, -0.00033067798358388245, -0.03216977044939995, 0.00017598371778149158, 0.03815072774887085, 0.00948459655046463, 0.03393928334116936, 0.027781374752521515, 0.022366659715771675, -0.0362042635679245, -0.03356768563389778, 0.02052636630833149, -0.0598449744284153, 0.03567340597510338, 0.017288153991103172, -0.036275044083595276, 0.0670292004942894, 0.005370475817471743, -0.016624586656689644, -0.01318288128823042, -0.042326781898736954, 0.0030302931554615498, 0.019517742097377777, 0.06448110193014145, -0.0565536767244339, -0.06235768273472786, 0.045405734330415726, -0.019694693386554718, 0.012590094469487667, -0.040380313992500305, -0.026312677189707756, 0.023021381348371506, 0.05128052458167076, 0.011784965172410011, 0.002000657143071294, 0.010095078498125076, 0.016376854851841927, -0.01896919310092926, 0.06034043803811073, 0.018296778202056885, -0.06709998100996017, 0.012899759225547314, 0.04604276269674301, 0.018863022327423096, 0.060517389327287674, 0.057827726006507874, 0.04222061112523079, 0.002798044355586171, 0.044662538915872574, 0.02408308908343315, 0.00428001256659627, 0.007834524847567081, -0.005074081942439079, 0.00383321032859385, 0.018119826912879944, -0.008002628572285175, 0.025622567161917686, -0.015492097474634647, 0.012191953137516975, -0.015129347331821918, 0.00736117921769619, 0.06472883373498917, 0.048520080745220184, -0.020296327769756317, 0.04724603146314621, -0.049900300800800323, -0.05351011082530022, -0.0008548965561203659, 0.04604276269674301, -0.03547875955700874, 0.025534091517329216, 0.023764576762914658, -0.004574194550514221, -0.10673709958791733, 0.0037447346840053797, 0.010882512666285038, -0.05747382342815399, -0.008546753786504269, 0.07339945435523987, 0.014651577919721603, 0.026648884639143944, -0.014111876487731934, 0.04873242229223251, 0.013067862950265408, -0.023180637508630753, -0.05036037787795067, -0.0831671729683876, 0.017164288088679314, 0.0035722069442272186, -0.020544061437249184, -0.02689661644399166, 0.011678794398903847, -0.019907034933567047, 0.018774546682834625, 0.0634193941950798, -0.02615342102944851, -0.009263407438993454, -0.02675505541265011, 0.01606719009578228, 0.03850463032722473, 0.07205462455749512, -0.009926974773406982, -0.011961916461586952, -0.02620650641620159, -0.009404968470335007, 0.013536783866584301, -0.01771283708512783, -0.003771277377381921, -0.0547487698495388, -0.01318288128823042, 0.015598268248140812, -0.006109247915446758, 0.031815867871046066, -0.030541816726326942, -0.016474178060889244, -0.03036486543715, 0.018827632069587708, -0.03779682517051697, -0.011953068897128105, 0.030683377757668495, 0.01036935392767191, 0.0368058979511261, 0.03227594122290611, -0.0037624298129230738, 0.020579451695084572, 0.04321153834462166, -0.09010366350412369, 0.005202372092753649, 0.1208932176232338, 0.02510940656065941, -0.0341162346303463, 0.007493893150240183, -0.0631362721323967, -0.03698284924030304, 0.04604276269674301, -0.026348067447543144, 0.004967911168932915, -0.007440807297825813, 0.02806449681520462, -0.02001320570707321, -0.00963500514626503, 0.08161000162363052, -0.005702259950339794, 0.012103477492928505, -0.01258124690502882, 0.07198384404182434, -0.029763229191303253, -0.040557265281677246, -0.02914389967918396, 0.07347023487091064, 0.009838499128818512, -0.0072992462664842606, 0.08613995462656021, 0.008157460950314999, -0.04377778246998787, 0.070001982152462, 0.04253912344574928, -0.01335983257740736, -0.04126507416367531, -0.025127101689577103, -0.014226894825696945, 0.05149286612868309, 0.0006126943044364452, 0.004574194550514221, 0.02755133807659149, -0.007777015212923288, -0.011634556576609612, 0.001817069947719574, 0.0010019874898716807, 0.03356768563389778, 0.036310434341430664, 0.027745984494686127, 0.0038221508730202913, -0.032329026609659195, -0.00454765185713768, 0.022614391520619392, -0.008714857511222363, 0.07205462455749512, -0.010625933296978474, -0.04922788590192795, 0.015554030425846577, -0.03956633806228638, 0.03673511743545532, -0.05435947701334953, -0.018509119749069214, -0.08345029503107071, 0.000669650558847934, 0.050643499940633774, -0.10970988124608994, 0.017031574621796608, 0.04377778246998787, 0.0526607446372509, -0.020650232210755348, 0.024950150400400162, 0.016828080639243126, -0.015102804638445377, -0.028789997100830078, -0.04561807960271835, 0.028418399393558502, -0.017040422186255455, -0.06412719935178757, -0.021765025332570076, 0.03698284924030304, -0.030931109562516212, -0.01705811731517315, 0.01403224840760231, 0.040911171585321426, -0.014978938736021519, 0.03992024064064026, -0.07453194260597229, 0.015669049695134163, 0.04048648476600647, 0.08217624574899673, 0.004662670195102692, -0.06734771281480789, -0.029250070452690125, 0.02118108607828617, 0.05209450051188469, 0.03992024064064026, -0.015722135081887245, 0.038433849811553955, 0.016828080639243126, -0.00903337076306343, -0.034275490790605545, -0.030471036210656166, 0.04650283604860306, -0.007255008444190025, -0.028913863003253937, 0.013625259511172771, -0.007759320084005594, -0.09088224917650223, -0.03878775238990784, 0.04119429364800453, -0.00765314931049943, -0.02997557260096073, 0.006467574741691351, -0.05612899363040924, -0.0903867855668068, 0.022755954414606094, 0.02606494538486004, -0.02597646974027157, 0.02771059423685074, -0.022225098684430122, -0.03117884136736393, 0.014023400843143463, 0.04491027072072029, -0.01063478086143732, 0.03995563089847565, -0.018650680780410767, 0.06529507786035538, -0.013112100772559643, -0.021623464301228523, -0.010280878283083439, -0.012598942033946514, 0.03754909336566925, 0.017995961010456085, 0.016270684078335762, -0.03634582459926605, 0.051032792776823044, -0.03602731227874756, -0.045228783041238785, 0.009174931794404984, -0.010041993111371994, 0.011731879785656929, -0.009360730648040771, 0.04105273261666298, -0.020030900835990906, -0.04395473375916481, -0.019500046968460083, 0.03048873133957386, -0.007825677283108234, -0.06617983430624008, -0.03305452689528465, -0.026648884639143944, -0.0005560145364142954, 0.04706908017396927, 0.015315146185457706, -0.0008007052238099277, 0.03424010053277016, -0.01896919310092926, 0.0013558903010562062, 0.04002641141414642, 0.02663118951022625, 0.0565536767244339, 0.015412469394505024, 0.07906189560890198, -0.014315370470285416, -0.00629062345251441, -0.04954639822244644, 0.05046654865145683, 0.019942425191402435, -0.052377622574567795, 0.0055474271066486835, -0.08698932081460953, -0.009068761020898819, -0.04639666527509689, -0.011537233367562294, 0.023799967020750046, 0.040167972445487976, 0.021641159430146217, 0.016854623332619667, -0.016553806141018867, 0.028223752975463867, -0.028312228620052338, -0.07332867383956909, 0.044273246079683304, 0.017367782071232796, 0.02264978177845478, -0.0439901240170002, 0.04667978733778, 0.07396569848060608, -0.05343933030962944, 0.04416707530617714, -0.013926077634096146, -0.07474428415298462, -0.03892931342124939, -0.043282318860292435, -0.07297477126121521, 0.021588074043393135, -0.018420644104480743, -0.05343933030962944, 0.0020205641631036997, -0.005056386813521385, -0.0532623790204525, 0.027745984494686127, -0.040592655539512634, -0.00675512058660388, 0.022755954414606094, -0.03197512403130531, -0.010510914959013462, 0.019287705421447754, -0.023534540086984634, 0.02935624122619629, -0.024490077048540115, -0.03723058104515076, 0.013713735155761242, -0.03294835612177849, -0.09463362395763397, 0.00032874257885850966, -0.004804231226444244, 0.016801537945866585, -0.02615342102944851, -0.03641660511493683, -0.034063149243593216, 0.004220291506499052, -0.01487276703119278, -0.03652277588844299, -0.034063149243593216, -0.029391631484031677, 0.006485269870609045, -0.029480107128620148, -0.01660689152777195, 0.025215579196810722, 0.016323769465088844, 0.012758198194205761, 0.0030125980265438557, -0.04034492373466492, 0.021765025332570076, 0.004164994228631258, -0.017819007858633995, -0.03850463032722473, -0.04494566097855568, 0.007692963350564241, -0.04126507416367531, -0.02264978177845478, -0.08012360334396362, 0.004706908017396927, -0.02031402289867401, -0.004490142688155174, -0.04066343605518341, -0.025711042806506157, -0.029196985065937042, 0.0394955575466156, 0.023764576762914658, -0.004045552108436823, 0.030895719304680824, -0.00001558693293191027, 0.012421989813446999, -0.006746273022145033, 0.01570443995296955, 0.0323113314807415, -0.00819727499037981, 0.012846673838794231, 0.021747330203652382, -0.01807558909058571, -0.05478416010737419, 0.010103926062583923, 0.03510716184973717, 0.02794063091278076, -0.07856643199920654, -0.046750567853450775, 0.040203362703323364, -0.03871697187423706, 0.015164737589657307, -0.034399356693029404, 0.0760183334350586, -0.02017246186733246, -0.02615342102944851, 0.028825387358665466, -0.03052412159740925, 0.020243242383003235, -0.004116332624107599, 0.0030037504620850086, 0.04767071455717087, -0.00011439633090049028, -0.008927199058234692, 0.0021355825010687113, -0.05028959736227989, -0.04066343605518341, -0.02723282389342785, -0.018650680780410767, -0.07230235636234283, 0.06076512113213539, -0.027215128764510155, 0.034841734915971756, -0.018049046397209167, -0.003386407857760787, 0.039814069867134094, -0.03581496700644493, -0.0023269113153219223, -0.07460272312164307, 0.006405641790479422, -0.03052412159740925, -0.0017949510365724564, -0.018933802843093872, -0.012943997047841549, -0.026701970025897026, 0.022225098684430122, 0.017403172329068184, 0.005481070373207331, 0.04342387989163399, 0.03160352632403374, -0.0075248596258461475, -0.016491873189806938, -0.01524436566978693, 0.03009943850338459, 0.012342361733317375, -0.012245038524270058, -0.011121396906673908, 0.06709998100996017, 0.027162043377757072, -0.0075912163592875, 0.025746433064341545, -0.05188215896487236, -0.005994229577481747, -0.002065907930955291, -0.027604423463344574, -0.013802211731672287, 0.018597595393657684, -0.010165859013795853, 0.01342176552861929, 0.0012862157309427857, -0.043671611696481705, -0.01693425141274929, -0.03558493033051491, -0.05301464721560478, 0.022508220747113228, -0.005003301426768303, 0.014934699982404709, 0.019712388515472412, -0.0239415280520916, 0.006848020013421774, 0.020296327769756317, -0.01312094833701849, 0.04101734235882759, -0.009670395404100418, -0.03195742890238762, 0.0006447667838074267, 0.03197512403130531, -0.04763532429933548, 0.00993582233786583, -0.04183131828904152, -0.048307739198207855, -0.025923384353518486, -0.003351017599925399, 0.021623464301228523, -0.005100625101476908, -0.023109856992959976, -0.07552286982536316, 0.02641884796321392, -0.01403224840760231, 0.012652027420699596, -0.007370026782155037, -0.02615342102944851, -0.013775669038295746, 0.004804231226444244, 0.05113896355032921, -0.007396569475531578, 0.06062356010079384, 0.001577079645358026, 0.07014354318380356, -0.07495662569999695, 0.0007597851799800992, 0.0032536943908780813, -0.01840294897556305, 0.015191280283033848, 0.039000093936920166, 0.07439038157463074, -0.000046829918574076146, 0.04197287932038307, 0.023888442665338516, -0.010970988310873508, -0.0065648979507386684, 0.01918153464794159, -0.02693200670182705, -0.030824938789010048, 0.005326237995177507, -0.037089020013809204, -0.043282318860292435, -0.0005316837341524661, 0.016863470897078514, -0.0005938932299613953, -0.012413142248988152, -0.009174931794404984, -0.05485494062304497, 0.040592655539512634, -0.022968295961618423, -0.06600288301706314, -0.06076512113213539, 0.01374912541359663, 0.03275370970368385, 0.009077608585357666, -0.000513988605234772, 0.02944471687078476, 0.019446961581707, -0.014262285083532333, -0.05542118847370148, 0.00804686639457941, 0.015810610726475716, -0.00721077062189579, 0.021322647109627724, -0.03208129480481148, -0.012890911661088467, 0.008338836021721363, -0.02477319911122322, 0.04186670854687691, 0.01708466000854969, 0.04551190882921219, -0.0009920339798554778, 0.002239541383460164, -0.03723058104515076, -0.006856867577880621, 0.05319159850478172, -0.0024153869599103928, -0.05520884692668915, 0.01327135693281889, -0.010714408941566944, -0.01939387619495392, -0.05096201226115227, 0.005688988603651524, 0.009617310017347336, 0.030205609276890755, -0.04568886011838913, 0.006507388781756163, 0.0038597530219703913, -0.05510267615318298, 0.0643395408987999, -0.04512261226773262, 0.038823142647743225, -0.03615117818117142, -0.04239756241440773, 0.034753259271383286, -0.001551642781123519, -0.021145695820450783, -0.018473729491233826, -0.018172912299633026, 0.0051581342704594135, 0.05131591483950615, 0.004023433197289705, 0.08097296953201294, -0.043883953243494034, -0.06745388358831406, -0.02217201329767704, -0.03162122145295143, -0.015881391242146492, 0.06221612170338631, -0.024667028337717056, 0.04144202545285225, 0.00007306158659048378, 0.017553580924868584, 0.009750023484230042, -0.001496345503255725, 0.011466452851891518, 0.038221508264541626, -0.012678570114076138, -0.012023849412798882, -0.014023400843143463, -0.01888071745634079, 0.02339297905564308, -0.017394324764609337, -0.07396569848060608, 0.06189760938286781, 0.019110754132270813, 0.01008623093366623, 0.03462939336895943, 0.027657508850097656, 0.022419745102524757, -0.008060137741267681, 0.0252863597124815, 0.02827683836221695, 0.013023625127971172, 0.036664336919784546, -0.04625510424375534, 0.034576307982206345, 0.03662894666194916, -0.005105048883706331, -0.011484147980809212, 0.04834312945604324, -0.014748901128768921, -0.0004915932076983154, 0.02740977518260479, -0.027162043377757072, 0.0032625419553369284, -0.05078506097197533, 0.019995510578155518, -0.033373039215803146, -0.046962909400463104, -0.027427470311522484, -0.018155217170715332, -0.028312228620052338, 0.015058566816151142, 0.03372694179415703, 0.022508220747113228, 0.04377778246998787, 0.02641884796321392, 0.053156208246946335 ]
429
bitmath
_to_prefix_value
Return the number of bits/bytes as they would look like if we converted *to* this unit
def _to_prefix_value(self, value): """Return the number of bits/bytes as they would look like if we converted *to* this unit""" return value / float(self._unit_value)
(self, value)
[ -0.032300110906362534, -0.007817724719643593, 0.018680201843380928, 0.007157313171774149, 0.05996876582503319, 0.03612534701824188, 0.0023650438524782658, 0.0004090046277269721, 0.004785836674273014, -0.03437568619847298, 0.03492460027337074, -0.004798701964318752, 0.05485701188445091, -0.015206610783934593, 0.04017358273267746, 0.03784070163965225, 0.03269464150071144, -0.006072352174669504, 0.035816583782434464, 0.0276171937584877, 0.03278040885925293, 0.011003993451595306, 0.03463299199938774, 0.024323714897036552, -0.01852582022547722, -0.031991347670555115, 0.0017689585220068693, -0.019743720069527626, -0.015884175896644592, -0.014786348678171635, -0.025044163689017296, 0.01404017023742199, 0.040139276534318924, -0.008894109167158604, 0.028646405786275864, -0.028406256809830666, 0.002697393763810396, -0.0015127274673432112, -0.1363363116979599, -0.01295092049986124, 0.02933254837989807, -0.0540679469704628, -0.011261296458542347, 0.03986481949687004, 0.011998899281024933, 0.023397423326969147, -0.017822524532675743, 0.02307150699198246, -0.0030683388467878103, 0.043329834938049316, -0.0072087738662958145, -0.007491806987673044, -0.03425561264157295, 0.027068281546235085, -0.04504518583416939, 0.03629688546061516, 0.004652896896004677, -0.01169013511389494, -0.047240838408470154, 0.08590491116046906, -0.036262575536966324, 0.0646345242857933, 0.0468977689743042, -0.04504518583416939, -0.018851736560463905, -0.0053390380926430225, -0.009751785546541214, 0.013010957278311253, -0.04459919407963753, 0.026999667286872864, 0.006788512226194143, -0.02574745938181877, 0.029178166761994362, 0.009314370341598988, 0.010669499635696411, 0.05094600468873978, -0.0005301514756865799, 0.007886338979005814, 0.013122455216944218, -0.010763844475150108, 0.03845822811126709, 0.0111926831305027, 0.08254282176494598, -0.02651936747133732, 0.03284902125597, -0.018096981570124626, 0.011578637175261974, 0.05001971498131752, 0.05382779985666275, 0.06586958467960358, -0.028063185513019562, -0.018337130546569824, 0.023260196670889854, 0.04936787858605385, -0.04085972532629967, 0.010609462857246399, -0.039075758308172226, -0.041923243552446365, -0.042677998542785645, -0.0262106042355299, -0.002059496473520994, 0.05791034176945686, -0.012281931936740875, -0.0029675618279725313, 0.05914539471268654, 0.027514273300766945, 0.010069126263260841, -0.037600550800561905, -0.0031969903502613306, 0.004918776452541351, -0.022968586534261703, -0.05485701188445091, -0.014383240602910519, -0.013019534759223461, -0.020961621776223183, -0.052970122545957565, 0.0374976322054863, 0.023997798562049866, 0.024769706651568413, 0.013379758223891258, 0.03346655145287514, 0.0474809892475605, 0.0126936174929142, 0.013825750909745693, 0.02964131161570549, 0.05248982086777687, 0.07327990978956223, 0.02718835510313511, 0.026913899928331375, 0.022368211299180984, 0.044530581682920456, 0.01643308810889721, -0.003482168074697256, -0.0016939117340371013, 0.07046672701835632, -0.00584506755694747, -0.02784018963575363, 0.0030576179269701242, 0.025044163689017296, 0.07156455516815186, 0.011458562687039375, 0.02821756713092327, 0.06871706992387772, -0.051186151802539825, 0.04082541912794113, 0.03523336350917816, 0.05098031088709831, 0.04305537790060043, -0.04120279476046562, -0.028200414031744003, -0.011921708472073078, 0.04734376072883606, 0.08370926231145859, -0.004202616401016712, -0.006681302562355995, -0.019211960956454277, 0.032454490661621094, -0.03530197963118553, 0.020412709563970566, -0.0029139569960534573, 0.03688010573387146, 0.05389641225337982, -0.008971299976110458, -0.0712214857339859, -0.031150823459029198, 0.0535876490175724, -0.056023452430963516, 0.007972106337547302, -0.02202514186501503, -0.03338078409433365, 0.024958396330475807, -0.02217952348291874, 0.007032949943095446, 0.05818479508161545, 0.038561150431632996, -0.022659821435809135, -0.016913387924432755, -0.0007665486773476005, -0.04315830022096634, 0.021973680704832077, 0.016844773665070534, 0.016081441193819046, -0.03650272637605667, 0.008075027726590633, 0.03447860851883888, 0.03473591059446335, 0.06353670358657837, 0.01837143860757351, 0.02837195061147213, -0.030567603185772896, 0.04645177721977234, 0.0010099144419655204, -0.0024679650086909533, 0.024323714897036552, 0.005669244099408388, -0.05396502837538719, 0.06048336997628212, -0.039693284779787064, 0.007727668154984713, -0.005163214635103941, -0.05863078683614731, -0.058356333523988724, 0.013954401947557926, 0.033483702689409256, 0.0007451067795045674, -0.029178166761994362, 0.04442765936255455, 0.03904144838452339, -0.052215367555618286, -0.055577460676431656, -0.036845795810222626, -0.03787500783801079, -0.021390460431575775, 0.0334322415292263, -0.024546710774302483, -0.10532271862030029, -0.009666018187999725, 0.004978814162313938, 0.005652090534567833, 0.0004154372145421803, 0.004674338735640049, 0.03852684423327446, 0.04158017411828041, -0.04308968409895897, -0.01731649599969387, -0.012556388974189758, -0.010858188383281231, 0.0030018689576536417, 0.009202872402966022, 0.016707545146346092, 0.05389641225337982, 0.00032002065563574433, -0.02784018963575363, 0.026039069518446922, 0.005566322710365057, 0.019537879154086113, 0.04645177721977234, -0.02015540562570095, -0.01566975563764572, -0.03238587826490402, -0.03128805011510849, -0.04212908446788788, 0.052078139036893845, 0.039007142186164856, -0.01284799911081791, -0.025352926924824715, 0.005197521764785051, -0.007603305391967297, -0.0331406332552433, 0.04295245558023453, -0.058287717401981354, -0.007444635033607483, 0.037600550800561905, -0.0007065113168209791, 0.03965897858142853, -0.008563903160393238, -0.041031260043382645, 0.04336414113640785, -0.0045285336673259735, 0.006977200973778963, -0.04754960536956787, -0.04017358273267746, 0.024392329156398773, -0.03869837895035744, -0.043192606419324875, 0.010909649543464184, 0.0009354038047604263, 0.040516652166843414, -0.02590184099972248, 0.0634680837392807, 0.05235259234905243, -0.03427276760339737, -0.037223175168037415, -0.01679331250488758, -0.045216724276542664, -0.08165083825588226, 0.05643513426184654, 0.024392329156398773, -0.0005617783172056079, -0.001958719454705715, -0.014717734418809414, -0.06086074933409691, -0.009185719303786755, -0.018457205966114998, -0.02195652760565281, 0.04010497033596039, 0.05564607307314873, -0.013577024452388287, 0.015395299531519413, -0.013405488803982735, -0.01583271473646164, -0.02993292175233364, -0.0425407700240612, 0.02627921849489212, -0.02271128259599209, -0.024992702528834343, -0.048201438039541245, -0.05015693977475166, 0.05502854660153389, 0.0646345242857933, -0.071701779961586, -0.009460175409913063, -0.0728682205080986, 0.04123710095882416, 0.00016751501243561506, 0.043947361409664154, 0.061032284051179886, 0.011647251434624195, 0.001045829732902348, 0.03204280510544777, -0.041340023279190063, -0.014108783565461636, 0.022814203053712845, -0.040139276534318924, 0.05471978336572647, 0.009082797914743423, -0.005347615107893944, 0.033638086169958115, 0.01681046560406685, 0.06381115317344666, 0.0073288483545184135, 0.08384648710489273, -0.02792595699429512, 0.0668644830584526, -0.014571929350495338, -0.008272293023765087, 0.009288639761507511, 0.03941882774233818, 0.030275993049144745, -0.08988453447818756, -0.06436006724834442, -0.02837195061147213, 0.005557745695114136, -0.012787961401045322, -0.05739573389291763, -0.01702488586306572, 0.06943751871585846, 0.014426124282181263, -0.05060293525457382, 0.01250492874532938, 0.07760260254144669, -0.00813935324549675, -0.018011214211583138, 0.0380808524787426, -0.007191620301455259, 0.01422885898500681, -0.04075680300593376, 0.0026995379012078047, 0.042232006788253784, 0.01549821998924017, -0.03482167795300484, -0.018474359065294266, 0.035850889980793, 0.020961621776223183, 0.06748201698064804, -0.012779384851455688, 0.0068013775162398815, -0.07588724792003632, -0.013688522391021252, 0.045285336673259735, 0.007839166559278965, -0.013577024452388287, 0.05554315075278282, -0.025575922802090645, 0.03504467383027077, -0.007847743108868599, -0.01741083897650242, -0.011801633052527905, -0.005266135558485985, 0.02075577899813652, -0.010678076185286045, 0.0050259861163794994, -0.02657082863152027, -0.04034511744976044, 0.004264798015356064, 0.0350789837539196, -0.0392472930252552, 0.011252719908952713, -0.07067257165908813, -0.047309454530477524, 0.0601746067404747, -0.0140744773671031, -0.07355436682701111, 0.0723879262804985, 0.022368211299180984, -0.009280063211917877, 0.025850379839539528, -0.04919634386897087, -0.023843416944146156, 0.01034358236938715, -0.02440948225557804, 0.04158017411828041, 0.0027938822750002146, -0.06936890631914139, 0.020652858540415764, 0.0464174710214138, -0.012041782960295677, -0.037291787564754486, 0.055886223912239075, 0.0281489547342062, 0.027274124324321747, -0.10189200937747955, -0.006059486884623766, 0.07183901220560074, -0.003795220050960779, -0.020927315577864647, 0.03561074286699295, 0.009889014065265656, -0.004464208148419857, 0.0212703850120306, -0.07801428437232971, -0.019280575215816498, 0.0049359300173819065, 0.0070115081034600735, -0.0585278682410717, -0.033638086169958115, -0.0761617049574852, -0.10326429456472397, -0.03024168498814106, 0.002620202722027898, -0.021613456308841705, 0.037669166922569275, 0.02398064360022545, 0.027582887560129166, 0.08123914897441864, -0.023774802684783936, 0.05458255484700203, 0.026690904051065445, -0.023534651845693588, 0.08425816893577576, 0.0025708863977342844, -0.02135615237057209, -0.04339844733476639, -0.048270054161548615, 0.035061828792095184, -0.004824432078748941, 0.005763588473200798, 0.005437671206891537, -0.011801633052527905, -0.01265931036323309, 0.031116515398025513, 0.04284953325986862, 0.029384007677435875, 0.04411889612674713, 0.02022401988506317, -0.07677923142910004, -0.040139276534318924, -0.011527176946401596, -0.04974525794386864, -0.020807240158319473, -0.04679484665393829, -0.07623031735420227, 0.039384521543979645, -0.00698148924857378, 0.03315778821706772, -0.011827363632619381, -0.062164418399333954, -0.017513761296868324, -0.007187332026660442, -0.08377787470817566, 0.02338027022778988, 0.05502854660153389, -0.005647801794111729, -0.002202085219323635, 0.000289197894744575, 0.032677486538887024, 0.01897181198000908, 0.020875854417681694, 0.009065643884241581, 0.01799405924975872, -0.013645638711750507, -0.008988453075289726, 0.013474103063344955, 0.016398781910538673, 0.025112777948379517, 0.009082797914743423, -0.056572362780570984, 0.03663995489478111, 0.000344946893164888, -0.05286720022559166, -0.004541398957371712, -0.0045285336673259735, 0.01723930425941944, 0.003166971728205681, -0.0006636274629272521, 0.002678095828741789, -0.025593075901269913, 0.00817794818431139, 0.026416447013616562, -0.049539413303136826, -0.03845822811126709, 0.053347498178482056, -0.025936147198081017, -0.026399293914437294, 0.003981764893978834, 0.00008214935951400548, 0.012736501172184944, 0.008130776695907116, -0.047378066927194595, 0.04432474076747894, -0.017119228839874268, 0.016930541023612022, -0.06099797785282135, 0.035850889980793, -0.03487313911318779, 0.035576436668634415, -0.05211244523525238, 0.0061109475791454315, 0.000769228907302022, -0.003089780919253826, -0.027685808017849922, 0.02995007485151291, -0.045148108154535294, 0.025250006467103958, 0.00798497162759304, 0.004721511155366898, -0.04518241435289383, -0.004768683109432459, -0.026845285668969154, -0.006934317294508219, -0.01724788174033165, -0.007247369270771742, -0.0027231238782405853, -0.015884175896644592, -0.0507744699716568, 0.017299341037869453, -0.04974525794386864, -0.034976061433553696, 0.006256752647459507, 0.014083053916692734, -0.01150144636631012, -0.0350789837539196, 0.048956193029880524, 0.0695747435092926, 0.008894109167158604, -0.05108323320746422, -0.009511636570096016, -0.0562979094684124, 0.010240660980343819, 0.009417291730642319, -0.009991935454308987, -0.04542256519198418, 0.036022428423166275, -0.028920862823724747, 0.032282955944538116, 0.06655572354793549, -0.018131287768483162, 0.028938015922904015, 0.01681046560406685, 0.0008088964386843145, -0.05128907412290573, -0.0430210717022419, 0.03295194357633591, 0.00801927875727415, 0.04621162638068199, 0.024152180179953575, 0.012582119554281235, 0.008096469566226006, -0.0106351925060153, -0.005146061070263386, 0.01187882386147976, -0.0474809892475605, 0.0331406332552433, 0.02941831573843956, -0.06936890631914139, -0.01093538012355566, -0.011398524977266788, -0.0519409105181694, -0.00036102833109907806, 0.027445659041404724, -0.01641593500971794, 0.010815304704010487, 0.01560971885919571, -0.0023157275281846523, -0.03447860851883888, 0.0009884726023301482, -0.03396400436758995, -0.08254282176494598, 0.03254025802016258, -0.04830436035990715, -0.0639483854174614, 0.018697354942560196, 0.03777208924293518, 0.031185129657387733, 0.05420517548918724, 0.014477585442364216, 0.0011600079014897346, 0.01612432487308979, -0.015180880203843117, -0.024546710774302483, -0.06072352081537247, -0.057601574808359146, -0.04000204801559448, -0.019469264894723892, -0.01041219662874937, -0.08631660044193268, -0.06490898132324219, -0.055886223912239075, 0.028389103710651398, 0.02024117298424244, 0.040207888931035995, 0.0034714469220489264, 0.0014623389579355717, 0.052661359310150146, 0.014314626343548298, -0.005600629840046167, 0.03869837895035744, 0.007877761498093605, 0.0006604111404158175, -0.030739137902855873, 0.04926495626568794, 0.030447527766227722, 0.006702744401991367, -0.053793489933013916, -0.045148108154535294, -0.01897181198000908, 0.012084666639566422, -0.07300545275211334, -0.05646944418549538, -0.012616426683962345, -0.04778975248336792, 0.02710258774459362, -0.014923577196896076, 0.0223853662610054, 0.012161857448518276, 0.015884175896644592, 0.024220794439315796, 0.0196236465126276, 0.002868928946554661, -0.07273099571466446, 0.03428991883993149, 0.015215187333524227, 0.03612534701824188, -0.04003635421395302, -0.042437851428985596, -0.010772421024739742, -0.04923065006732941, 0.01709350012242794, -0.02322588860988617, 0.0007049031555652618, 0.02970992587506771, 0.026176296174526215, -0.015300954692065716, 0.012359123677015305, -0.008040720596909523, -0.02657082863152027, -0.024752553552389145, -0.06713894009590149, -0.04943649470806122, 0.005489131901413202, 0.001024387776851654, 0.028646405786275864, 0.03948744013905525, 0.00531759625300765, 0.0320771150290966, -0.0029439758509397507, 0.05190660059452057, 0.02240251936018467, -0.04099695384502411, -0.024683939293026924, -0.07636754214763641, -0.026896744966506958, -0.021459074690937996, 0.018834583461284637, 0.03451291471719742, 0.0025387234054505825, 0.022951431572437286, -0.021544842049479485, -0.021699223667383194, -0.06168411672115326, 0.008851224556565285, 0.041031260043382645, -0.05520008131861687, -0.036262575536966324, -0.029692772775888443, 0.0039238715544342995, 0.000400695891585201, -0.006153831258416176, 0.04295245558023453, 0.007817724719643593, -0.016596047207713127, -0.011166952550411224, -0.0017968330066651106, 0.03331216797232628, 0.047240838408470154, -0.06930028647184372, -0.03480452671647072, 0.015927059575915337, -0.014597659930586815, -0.02554161660373211, -0.023654727265238762, -0.0017367956461384892, -0.07314267754554749, 0.03657133877277374, -0.037291787564754486, 0.00926291011273861, 0.009417291730642319, 0.05091169849038124, 0.05945415794849396, -0.012033206410706043, 0.0320771150290966, -0.06072352081537247, 0.017496608197689056, -0.019006118178367615, -0.0018311400199308991, 0.007787705864757299, 0.010849611833691597, -0.04212908446788788, -0.05839063972234726, 0.045353952795267105, 0.011424255557358265, 0.07575001567602158, -0.07767121493816376, -0.010146317072212696, -0.03996774181723595, 0.07643616199493408, -0.04734376072883606, 0.05286720022559166, 0.004991678986698389, 0.03859545662999153, -0.011355641297996044, 0.003134808735921979, 0.0370173305273056, 0.05235259234905243, -0.05784172564744949, -0.023774802684783936, 0.05139199644327164, 0.04391305521130562, -0.05568037927150726, 0.030344607308506966, 0.009091374464333057, 0.017127806320786476, -0.03650272637605667, -0.0223853662610054, 0.033706698566675186, 0.026639442890882492, -0.0010120586957782507, -0.0013111734297126532, 0.017136383801698685, -0.009657441638410091, 0.06477175652980804, -0.011295603588223457, 0.008671113289892673, 0.02360326610505581, -0.024838320910930634, 0.021750684827566147, 0.049985405057668686, 0.04182032123208046, -0.004708645865321159, -0.03276325389742851, 0.002798170782625675, -0.0031433855183422565, -0.010034819133579731, -0.051700759679079056, 0.0646345242857933, -0.05585191398859024, 0.0248554740101099, -0.026553675532341003, -0.007744821719825268, -0.007174466736614704, -0.050054021179676056, -0.06556081771850586, 0.02995007485151291, 0.046245936304330826, -0.0032613161019980907, 0.01934918947517872, -0.004382728599011898, 0.0017496607033535838 ]
430
bitmath
best_prefix
Optional parameter, `system`, allows you to prefer NIST or SI in the results. By default, the current system is used (Bit/Byte default to NIST). Logic discussion/notes: Base-case, does it need converting? If the instance is less than one Byte, return the instance as a Bit instance. Else, begin by recording the unit system the instance is defined by. This determines which steps (NIST_STEPS/SI_STEPS) we iterate over. If the instance is not already a ``Byte`` instance, convert it to one. NIST units step up by powers of 1024, SI units step up by powers of 1000. Take integer value of the log(base=STEP_POWER) of the instance's byte value. E.g.: >>> int(math.log(Gb(100).bytes, 1000)) 3 This will return a value >= 0. The following determines the 'best prefix unit' for representation: * result == 0, best represented as a Byte * result >= len(SYSTEM_STEPS), best represented as an Exbi/Exabyte * 0 < result < len(SYSTEM_STEPS), best represented as SYSTEM_PREFIXES[result-1]
def best_prefix(self, system=None): """Optional parameter, `system`, allows you to prefer NIST or SI in the results. By default, the current system is used (Bit/Byte default to NIST). Logic discussion/notes: Base-case, does it need converting? If the instance is less than one Byte, return the instance as a Bit instance. Else, begin by recording the unit system the instance is defined by. This determines which steps (NIST_STEPS/SI_STEPS) we iterate over. If the instance is not already a ``Byte`` instance, convert it to one. NIST units step up by powers of 1024, SI units step up by powers of 1000. Take integer value of the log(base=STEP_POWER) of the instance's byte value. E.g.: >>> int(math.log(Gb(100).bytes, 1000)) 3 This will return a value >= 0. The following determines the 'best prefix unit' for representation: * result == 0, best represented as a Byte * result >= len(SYSTEM_STEPS), best represented as an Exbi/Exabyte * 0 < result < len(SYSTEM_STEPS), best represented as SYSTEM_PREFIXES[result-1] """ # Use absolute value so we don't return Bit's for *everything* # less than Byte(1). From github issue #55 if abs(self) < Byte(1): return Bit.from_other(self) else: if type(self) is Byte: # pylint: disable=unidiomatic-typecheck _inst = self else: _inst = Byte.from_other(self) # Which table to consult? Was a preferred system provided? if system is None: # No preference. Use existing system if self.system == 'NIST': _STEPS = NIST_PREFIXES _BASE = 1024 elif self.system == 'SI': _STEPS = SI_PREFIXES _BASE = 1000 # Anything else would have raised by now else: # Preferred system provided. if system == NIST: _STEPS = NIST_PREFIXES _BASE = 1024 elif system == SI: _STEPS = SI_PREFIXES _BASE = 1000 else: raise ValueError("Invalid value given for 'system' parameter." " Must be one of NIST or SI") # Index of the string of the best prefix in the STEPS list _index = int(math.log(abs(_inst.bytes), _BASE)) # Recall that the log() function returns >= 0. This doesn't # map to the STEPS list 1:1. That is to say, 0 is handled with # special care. So if the _index is 1, we actually want item 0 # in the list. if _index == 0: # Already a Byte() type, so return it. return _inst elif _index >= len(_STEPS): # This is a really big number. Use the biggest prefix we've got _best_prefix = _STEPS[-1] elif 0 < _index < len(_STEPS): # There is an appropriate prefix unit to represent this _best_prefix = _STEPS[_index - 1] _conversion_method = getattr( self, 'to_%sB' % _best_prefix) return _conversion_method()
(self, system=None)
[ 0.02592577040195465, -0.021564073860645294, -0.02167687565088272, -0.013573898002505302, 0.024402936920523643, -0.016722967848181725, -0.022240888327360153, -0.016309358179569244, 0.0268469899892807, -0.07429923117160797, 0.029535450041294098, 0.06301898509263992, 0.0005302304052747786, -0.025888169184327126, -0.01911062002182007, 0.02034204639494419, 0.01609315350651741, -0.018067197874188423, -0.006965552922338247, 0.008850294165313244, 0.024365335702896118, 0.052077144384384155, 0.051588334143161774, 0.06974953413009644, 0.006363939959555864, 0.045910608023405075, 0.020830858498811722, -0.017051974311470985, -0.02325611189007759, -0.04779065027832985, 0.022128086537122726, 0.006660046521574259, -0.0027613106649369, -0.0053581176325678825, 0.038052037358284, -0.049407485872507095, 0.03250591456890106, 0.0015827597817406058, -0.11325369030237198, -0.018950816243886948, 0.007830372080206871, -0.06986233592033386, 0.004972709342837334, -0.016910972073674202, -0.015801746398210526, 0.010058221407234669, -0.013207290321588516, 0.04305294528603554, -0.008182879537343979, 0.06625265628099442, 0.004751804284751415, -0.05805567651987076, -0.030813876539468765, -0.06294378638267517, -0.07599127292633057, 0.014401116408407688, 0.014335314743220806, -0.049257081001996994, -0.037412822246551514, 0.04113530367612839, 0.02643338032066822, 0.04102250188589096, 0.04459457844495773, -0.0008795068133622408, -0.009954818524420261, 0.001317203976213932, -0.010142822749912739, -0.0210188627243042, -0.018715811893343925, 0.07584086805582047, 0.030043059960007668, -0.016657166182994843, -0.010500030592083931, 0.027956213802099228, 0.008361483924090862, 0.020360847935080528, -0.02235369198024273, -0.04369216039776802, 0.014918128028512001, -0.013978106901049614, 0.02759900689125061, -0.00913230050355196, 0.03017466329038143, -0.08708351105451584, -0.007694069296121597, -0.002869413001462817, 0.04918188229203224, 0.03150949254631996, 0.04621141403913498, -0.02235369198024273, -0.08287221938371658, 0.005447419825941324, 0.05602523311972618, 0.04805385693907738, 0.013169689103960991, -0.01766298897564411, -0.054257992655038834, -0.06170295551419258, 0.007200558204203844, -0.02419613115489483, -0.003962187096476555, 0.059747714549303055, -0.009367305785417557, -0.0257753673940897, 0.0247789453715086, 0.02442173659801483, -0.026546183973550797, -0.010772637091577053, -0.029328644275665283, -0.017832191661000252, -0.03278791904449463, -0.01554794143885374, -0.011985263787209988, -0.0333707332611084, -0.010377828031778336, -0.01317908987402916, 0.03288192301988602, 0.032148707658052444, 0.008699891157448292, 0.024703742936253548, -0.016215356066823006, 0.008018376305699348, -0.02267329767346382, -0.011975863017141819, 0.016995573416352272, 0.016149554401636124, 0.08535387367010117, -0.0013054537121206522, 0.013583298772573471, -0.009607011452317238, 0.08693311363458633, -0.010650434531271458, -0.004422797355800867, 0.06038692593574524, 0.04350415617227554, -0.010030020028352737, -0.027730610221624374, 0.014184911735355854, -0.02944144792854786, 0.07738249748945236, 0.03295712545514107, -0.016309358179569244, 0.05094911903142929, -0.020360847935080528, 0.012060465291142464, 0.07121596485376358, 0.07820972055196762, -0.0257753673940897, 0.020060040056705475, 0.010105222463607788, 0.0009024198516272008, 0.016563164070248604, 0.042000122368335724, 0.03432955592870712, -0.06922312080860138, -0.017474984750151634, -0.018067197874188423, -0.043165747076272964, -0.013959307223558426, -0.036980412900447845, 0.010218024253845215, 0.0037741828709840775, -0.02959185093641281, -0.06339499354362488, -0.02944144792854786, 0.04895627498626709, -0.09197162091732025, 0.04779065027832985, 0.004580250475555658, 0.014325914904475212, -0.008347383700311184, 0.018715811893343925, -0.015171932987868786, 0.02068045362830162, 0.01833980344235897, 0.009813815355300903, -0.009719813242554665, -0.013141488656401634, -0.017991995438933372, 0.023876525461673737, 0.018744012340903282, 0.040646493434906006, -0.057002853602170944, -0.0572284571826458, -0.009691612794995308, 0.05820607766509056, 0.06110134348273277, 0.02000363916158676, 0.04519619420170784, 0.0028153618331998587, -0.007468464318662882, 0.03276912122964859, 0.045497000217437744, 0.023782523348927498, 0.030663473531603813, 0.00904769916087389, 0.07708169519901276, 0.004855206701904535, -0.00239822780713439, 0.03812723979353905, -0.030738675966858864, 0.04534659534692764, 0.020906059071421623, 0.00777397071942687, -0.004448647610843182, -0.028745831921696663, 0.00821578036993742, 0.046061012893915176, -0.07730729877948761, 0.0021972982212901115, -0.04530899599194527, -0.03393474593758583, -0.023237310349941254, 0.021733278408646584, 0.029460247606039047, -0.07546485960483551, 0.04677542671561241, 0.04121050611138344, -0.017127176746726036, -0.03891685605049133, 0.044820185750722885, 0.016976773738861084, 0.009066498838365078, -0.026207776740193367, -0.022410092875361443, -0.015388138592243195, 0.008944296278059483, -0.012511675246059895, 0.024083329364657402, 0.028163019567728043, 0.027805810794234276, -0.035231973975896835, 0.039894476532936096, 0.011618655174970627, 0.013752502389252186, 0.052829161286354065, 0.029798654839396477, 0.007966674864292145, 0.05403238907456398, -0.014899327419698238, -0.04718903824687004, -0.007134757004678249, 0.034724362194538116, 0.021977683529257774, 0.009301504120230675, -0.037563227117061615, 0.010810237377882004, -0.019778035581111908, -0.03278791904449463, 0.007261659484356642, -0.03596518933773041, 0.007910273969173431, 0.021075263619422913, -0.037901632487773895, 0.057078056037425995, -0.012276669964194298, -0.03220510855317116, -0.00047353541594929993, 0.01777579076588154, 0.018161199986934662, -0.07723210006952286, -0.010227425023913383, 0.012098065577447414, -0.03487476706504822, -0.08738432079553604, 0.015989750623703003, 0.017719389870762825, 0.030663473531603813, -0.010434228926897049, 0.07061435282230377, -0.026790589094161987, 0.028388623148202896, -0.04012008011341095, 0.04361695796251297, -0.01410030946135521, -0.0438801646232605, 0.019890837371349335, 0.007994875311851501, -0.025154951959848404, -0.021300869062542915, -0.05068591237068176, -0.010471830144524574, 0.013160289265215397, -0.022748500108718872, -0.013940506614744663, 0.022992905229330063, 0.02759900689125061, -0.06486142426729202, 0.0268469899892807, -0.02325611189007759, 0.036491602659225464, -0.0008701066253706813, -0.052829161286354065, -0.017192978411912918, 0.03293832391500473, 0.0014582070289179683, -0.0517011359333992, -0.003950436599552631, 0.04012008011341095, 0.011853660456836224, -0.04842986539006233, -0.003040966810658574, -0.015247135423123837, 0.010133422911167145, -0.0016650116303935647, 0.0027260598726570606, 0.06610225141048431, -0.021000061184167862, 0.022635698318481445, 0.02844502590596676, -0.05621323361992836, 0.002634407952427864, 0.08475226163864136, -0.03278791904449463, 0.001176200807094574, 0.029328644275665283, 0.0004362283507362008, 0.0708775594830513, 0.011985263787209988, 0.067042276263237, 0.012596276588737965, 0.1115240529179573, -0.040646493434906006, 0.04809145629405975, -0.02267329767346382, -0.008070077747106552, -0.05034750699996948, 0.019148221239447594, -0.0015345837455242872, -0.046061012893915176, -0.02058645337820053, -0.011505852453410625, 0.015388138592243195, -0.0018353903433308005, -0.04560980200767517, -0.011270848102867603, 0.0799393579363823, 0.04553459957242012, -0.02786221168935299, -0.008540087379515171, 0.10460549592971802, -0.004105540458112955, -0.023707320913672447, 0.032637517899274826, 0.023782523348927498, -0.022165687754750252, 0.02560616284608841, 0.0005496183293871582, -0.01802019588649273, 0.04335375130176544, -0.005268815904855728, -0.047151435166597366, -0.004403996746987104, 0.00007894705049693584, 0.08287221938371658, -0.009118200279772282, -0.02810661680996418, -0.05414519086480141, 0.035664383322000504, 0.04278973862528801, 0.011891261674463749, -0.019364425912499428, 0.0004147841245867312, -0.0053910184651613235, -0.014297714456915855, -0.046737827360630035, -0.008939596824347973, 0.0318291001021862, -0.01422251295298338, -0.00619473634287715, 0.007722269743680954, 0.0020116441883146763, -0.008770393207669258, -0.04196252301335335, -0.0010287350742146373, 0.0665910616517067, -0.01827400177717209, -0.011317849159240723, -0.07320880889892578, -0.055160410702228546, 0.07305840402841568, -0.005799927283078432, -0.038804054260253906, 0.07132876664400101, 0.037318821996450424, 0.014654922299087048, 0.024214932695031166, -0.024233732372522354, 0.04997149854898453, 0.02227848954498768, -0.004150191321969032, -0.00003194601595168933, 0.03483716398477554, -0.04294014349579811, 0.0021138715092092752, 0.011327248997986317, 0.0065848445519804955, 0.01911062002182007, -0.0027331099845469, -0.009729214012622833, -0.014119110070168972, -0.060838136821985245, -0.01401570811867714, 0.048993878066539764, -0.036905210465192795, -0.029215842485427856, 0.07836012542247772, 0.02116926573216915, -0.03692401200532913, 0.04425617307424545, -0.09264843910932541, -0.01992843858897686, 0.00648614251986146, -0.025230154395103455, -0.06294378638267517, -0.028896234929561615, -0.06572624295949936, 0.006533143576234579, -0.012915884144604206, 0.03985687717795372, -0.027298200875520706, 0.04045848920941353, 0.07320880889892578, 0.029723452404141426, 0.07516404986381531, 0.03468676283955574, -0.0025028050877153873, 0.014119110070168972, -0.038992058485746384, 0.04060889407992363, 0.007684668991714716, 0.008986597880721092, -0.009353205561637878, -0.029159441590309143, 0.03876645117998123, -0.06301898509263992, -0.008859694935381413, -0.029009036719799042, -0.03258111700415611, -0.034724362194538116, 0.04688823223114014, -0.04703863337635994, 0.002136196941137314, 0.07805931568145752, 0.0220904853194952, -0.06456062197685242, -0.05418279021978378, -0.016863970085978508, -0.019740434363484383, 0.009447207674384117, -0.02267329767346382, -0.09738613665103912, 0.02427133359014988, -0.018245801329612732, 0.06741828471422195, -0.002895263722166419, -0.017907394096255302, 0.02043604850769043, -0.0306070726364851, -0.05046030879020691, 0.029084239155054092, 0.05963490903377533, 0.04278973862528801, 0.038240041583776474, -0.029610650613904, 0.045985810458660126, 0.05222754925489426, 0.02611377462744713, 0.03402874618768692, 0.01054703164845705, -0.028877435252070427, -0.010556432418525219, -0.016892170533537865, -0.015406938269734383, -0.002365326974540949, -0.009296804666519165, -0.05677724629640579, -0.0009787965100258589, -0.0030997181311249733, -0.0572284571826458, 0.03844684362411499, -0.023726120591163635, 0.028783433139324188, 0.015811147168278694, 0.025794167071580887, -0.04519619420170784, 0.004827006254345179, 0.03778883069753647, 0.03305112570524216, -0.060913339257240295, -0.029328644275665283, 0.06512463092803955, -0.02318090945482254, 0.03432955592870712, 0.004197192378342152, 0.02143247053027153, -0.01934562437236309, -0.01143065094947815, -0.039819274097681046, 0.0332203283905983, 0.015566742047667503, 0.004150191321969032, -0.030625872313976288, 0.03808963671326637, -0.0008659940212965012, 0.017221178859472275, -0.0362095944583416, 0.005329917185008526, 0.0018236400792375207, -0.026207776740193367, -0.05790527164936066, -0.001272552995942533, -0.011280247941613197, 0.017615986987948418, -0.03538237884640694, 0.019646432250738144, -0.02842622436583042, -0.019571229815483093, 0.020060040056705475, 0.016469161957502365, -0.006298138294368982, -0.015717145055532455, -0.015247135423123837, -0.009141701273620129, -0.019890837371349335, -0.024214932695031166, 0.02417733147740364, -0.06486142426729202, 0.01410030946135521, -0.0004635476798284799, -0.015952151268720627, -0.030907878652215004, 0.02468494325876236, 0.0882115364074707, 0.0065848445519804955, 0.015482140704989433, -0.025248954072594643, -0.05136273056268692, 0.05279156193137169, -0.03532597795128822, 0.014354115352034569, -0.05053551122546196, 0.022165687754750252, -0.0161119531840086, 0.010669234208762646, 0.03092668019235134, -0.011656256392598152, 0.035908788442611694, -0.036322399973869324, -0.018866214901208878, -0.030306266620755196, -0.06034932658076286, 0.029892656952142715, -0.008864394389092922, 0.06004852056503296, -0.005452119745314121, 0.0026626086328178644, 0.045158591121435165, 0.016318758949637413, 0.02951664850115776, -0.011975863017141819, -0.03786403313279152, 0.025418158620595932, -0.008455486036837101, -0.037149615585803986, -0.01583934761583805, -0.04278973862528801, -0.04376736283302307, 0.022992905229330063, 0.029084239155054092, 0.017380982637405396, 0.033069927245378494, 0.01267147809267044, 0.03891685605049133, -0.03647280111908913, 0.02994905784726143, -0.006410941015928984, -0.035401176661252975, 0.029009036719799042, -0.02902783825993538, 0.00010979147191392258, 0.05760446563363075, 0.005118412431329489, 0.01844320446252823, 0.05677724629640579, 0.02084965817630291, -0.023914124816656113, -0.00270960945636034, -0.0805409699678421, -0.036905210465192795, 0.0032548215240240097, -0.02143247053027153, 0.012530475854873657, -0.012850082479417324, -0.04346655681729317, -0.0034498758614063263, 0.009428407065570354, -0.0805409699678421, -0.003022166434675455, -0.008817393332719803, -0.025418158620595932, 0.024045728147029877, 0.03269391879439354, 0.016741767525672913, 0.06452301889657974, 0.024308934807777405, 0.009607011452317238, -0.011261447332799435, -0.005734126083552837, -0.019740434363484383, 0.042150527238845825, 0.02517375349998474, -0.006876251194626093, -0.008126478642225266, -0.08159379661083221, -0.026320578530430794, 0.04726423695683479, -0.07674328982830048, -0.019721632823348045, -0.08347383141517639, -0.07219358533620834, 0.008201680146157742, -0.0011086368467658758, 0.012699679471552372, -0.05948450788855553, 0.0403456874191761, -0.014617321081459522, -0.011571654118597507, 0.05388198420405388, -0.03254351392388344, 0.03278791904449463, -0.013959307223558426, 0.057491663843393326, -0.0016591364983469248, -0.041661716997623444, -0.021620474755764008, -0.02494814805686474, 0.04997149854898453, -0.068734310567379, 0.03763842582702637, -0.03417915105819702, 0.033239129930734634, -0.009691612794995308, 0.025812966749072075, -0.040571290999650955, -0.049332283437252045, -0.0119288619607687, -0.0021890730131417513, -0.0024182030465453863, 0.04117290675640106, -0.03218630701303482, 0.033991146832704544, 0.01247407402843237, 0.0010769111104309559, 0.01472072396427393, 0.0011145119788125157, 0.06422220915555954, -0.0053205168806016445, -0.0014911077450960875, -0.039480868726968765, -0.02551216073334217, -0.021300869062542915, -0.029309844598174095, 0.014645521529018879, -0.028877435252070427, 0.029817454516887665, 0.04309054836630821, -0.017615986987948418, 0.0012995785800740123, -0.04910667985677719, 0.015453939326107502, -0.0012455274118110538, -0.015162533149123192, -0.07234399020671844, -0.05546122044324875, 0.023237310349941254, 0.013893505558371544, 0.042827341705560684, 0.04177451878786087, -0.011440051719546318, 0.02184608019888401, -0.048166658729314804, 0.006222936790436506, 0.0068245502188801765, 0.003471026197075844, -0.0002107702603098005, -0.004331144969910383, 0.011675057001411915, -0.047489844262599945, -0.04959549009799957, -0.004096140153706074, -0.0015980351017788053, -0.011628055945038795, 0.053581178188323975, -0.0123894726857543, 0.05230274796485901, -0.011280247941613197, -0.021883681416511536, 0.02976105362176895, -0.05418279021978378, 0.060762934386730194, -0.03461156040430069, -0.008775092661380768, -0.014137910678982735, -0.023970527574419975, 0.03784523159265518, -0.07020074129104614, -0.008446085266768932, -0.04143610969185829, 0.08212020248174667, 0.06407181173563004, 0.05760446563363075, 0.021789679303765297, -0.02750500477850437, -0.016892170533537865, -0.0033370733726769686, 0.029986659064888954, 0.04286494106054306, -0.04030808433890343, 0.06425981223583221, -0.03951846808195114, -0.05888289585709572, 0.03295712545514107, 0.035307176411151886, -0.038804054260253906, 0.03370914235711098, 0.044068168848752975, 0.015059131197631359, -0.07775850594043732, 0.016140155494213104, -0.033991146832704544, 0.04346655681729317, -0.052979566156864166, -0.0041995421051979065, 0.0767056867480278, -0.04301534593105316, 0.027147796005010605, -0.03359633684158325, 0.04459457844495773, -0.002415853086858988, -0.0013336542760953307, 0.016384560614824295, -0.0000010602772135825944, 0.036905210465192795, -0.08708351105451584, 0.007256959564983845, 0.04245133325457573, 0.014983929693698883, 0.020360847935080528, 0.01917642168700695, 0.0335211381316185, -0.06798229366540909, 0.010086421854794025, -0.001850665663369, 0.01610255427658558, -0.028708230704069138, -0.03652920201420784, -0.031490691006183624, -0.005405118688941002, -0.0067916493862867355, -0.05012190341949463, -0.11528413742780685, 0.029291043058037758, 0.053242769092321396, -0.03111468441784382, -0.028802232816815376, -0.011740857735276222, 0.0002543930895626545 ]
431
bitmath
format
Return a representation of this instance formatted with user supplied syntax
def format(self, fmt): """Return a representation of this instance formatted with user supplied syntax""" _fmt_params = { 'base': self.base, 'bin': self.bin, 'binary': self.binary, 'bits': self.bits, 'bytes': self.bytes, 'power': self.power, 'system': self.system, 'unit': self.unit, 'unit_plural': self.unit_plural, 'unit_singular': self.unit_singular, 'value': self.value } return fmt.format(**_fmt_params)
(self, fmt)
[ 0.06484465301036835, -0.03965220972895622, 0.06429249048233032, -0.01414055097848177, 0.005357707384973764, -0.04900447279214859, -0.02358771674335003, -0.07419691234827042, -0.0012035429244861007, -0.021413573995232582, -0.013622897677123547, 0.04627816751599312, -0.00979226641356945, 0.012570337392389774, -0.009455792605876923, 0.04334479942917824, -0.017557060346007347, -0.0626705065369606, 0.04089457541704178, 0.03390626236796379, 0.04634718596935272, 0.05794261023402214, 0.03040347807109356, 0.044173046946525574, 0.039686720818281174, 0.03875494375824928, -0.0037357283290475607, -0.0246402770280838, -0.03276742622256279, -0.054008450359106064, 0.01320014800876379, -0.0011733465362340212, 0.016461361199617386, 0.01536566298455, 0.010887965559959412, -0.025779113173484802, -0.06902038305997849, 0.011526403948664665, -0.09973445534706116, 0.01725509576499462, 0.03112819232046604, -0.01759156957268715, 0.011793858371675014, -0.024001838639378548, 0.012363276444375515, 0.015089580789208412, 0.07433494925498962, 0.07744087278842926, -0.06774350255727768, -0.024001838639378548, 0.039272598922252655, 0.03844435513019562, -0.03007563203573227, -0.03349214047193527, -0.07633654028177261, -0.0003955191350542009, 0.014209571294486523, 0.046209145337343216, 0.08089189231395721, 0.022414369508624077, -0.05777006223797798, 0.06332620233297348, 0.02762540802359581, -0.03178388625383377, -0.044621676206588745, -0.04117065668106079, -0.033078018575906754, 0.013493484817445278, -0.02816031686961651, 0.04810720682144165, 0.040825556963682175, 0.0012402100255712867, -0.0414467416703701, 0.021724166348576546, 0.030541518703103065, 0.020947685465216637, -0.08316956460475922, -0.02272496186196804, -0.013760939240455627, 0.009731873869895935, 0.04161928966641426, 0.013579760678112507, 0.004490638617426157, -0.021758675575256348, 0.0052541764453053474, -0.06405091285705566, 0.014261336997151375, 0.019360218197107315, 0.050660960376262665, 0.01270837802439928, -0.008429114706814289, -0.03055877424776554, 0.009369516745209694, 0.055147286504507065, -0.02101670578122139, -0.06263599544763565, -0.00242218398489058, -0.0190151147544384, -0.016168024390935898, 0.034251365810632706, -0.020533563569188118, -0.04638169705867767, -0.03419959917664528, -0.038409844040870667, 0.007566359359771013, -0.03145603835582733, -0.0000222765975195216, -0.0010665806476026773, -0.00654830876737833, 0.014106040820479393, -0.0005969184567220509, 0.009317751973867416, -0.029609743505716324, -0.03602863848209381, 0.03138701990246773, 0.03851337358355522, -0.0074067497625947, 0.028125805780291557, 0.009231476113200188, -0.020136697217822075, -0.01297583244740963, 0.009412654675543308, 0.030507009476423264, 0.013709173537790775, 0.011129536665976048, 0.004205929581075907, -0.04117065668106079, -0.02358771674335003, 0.07336866855621338, -0.020757880061864853, 0.022086523473262787, 0.008127150125801563, -0.019204922020435333, -0.04475971683859825, 0.0759224221110344, -0.007385180797427893, 0.018877074122428894, -0.033233314752578735, -0.005068684462457895, 0.1409396231174469, 0.04827975854277611, 0.007449887692928314, -0.009697363711893559, -0.05887438729405403, -0.01154365949332714, 0.020291993394494057, 0.060979507863521576, 0.05131665617227554, -0.024346940219402313, -0.007553418166935444, 0.03028269298374653, 0.04099810868501663, 0.03827180340886116, 0.027780704200267792, 0.03250860050320625, 0.024916358292102814, 0.0029053266625851393, -0.05190332978963852, 0.013105245307087898, 0.01330367848277092, 0.0414467416703701, 0.018307656049728394, 0.018756289035081863, 0.00748871173709631, 0.008144404739141464, 0.10118388384580612, -0.05252451077103615, 0.012302882969379425, 0.02831561304628849, 0.030714070424437523, 0.002053356496617198, -0.06515523791313171, -0.04883192107081413, 0.061876773834228516, 0.027194030582904816, 0.027349326759576797, -0.01665116660296917, 0.0014580555725842714, -0.029644254595041275, -0.030938386917114258, 0.004581227898597717, 0.0040010251104831696, 0.001064423704519868, -0.012449551373720169, 0.011604052037000656, -0.06059989705681801, 0.026089705526828766, -0.02313908375799656, 0.0037357283290475607, -0.008420486934483051, 0.05083351209759712, 0.03052426502108574, -0.029609743505716324, 0.01203542947769165, -0.010439332574605942, -0.027590898796916008, 0.03181839734315872, -0.04158478230237961, 0.06491366773843765, 0.033716458827257156, 0.006634584162384272, 0.016211163252592087, -0.016314692795276642, 0.0017007053829729557, -0.0012283471878618002, -0.016797835007309914, 0.06246344745159149, -0.027694428339600563, -0.04051496461033821, -0.0307658351957798, -0.026210490614175797, -0.02822933718562126, -0.02798776514828205, 0.05821869149804115, 0.02460576593875885, -0.01823863573372364, 0.03875494375824928, 0.03447568044066429, -0.038340821862220764, 0.06850273162126541, 0.0603928342461586, -0.05652769282460213, 0.006470660679042339, -0.013053479604423046, -0.02313908375799656, 0.05166175588965416, 0.055595919489860535, -0.03438940644264221, -0.04717543348670006, 0.0024286548141390085, 0.03223251923918724, -0.04948761314153671, -0.005357707384973764, 0.06629408150911331, -0.03847886249423027, 0.05801163241267204, -0.026710888370871544, -0.005797712132334709, 0.0041520074009895325, 0.018462952226400375, 0.023570461198687553, 0.02134455367922783, 0.022793982177972794, 0.006453405600041151, 0.021982992067933083, -0.046209145337343216, 0.02256966568529606, 0.03318154811859131, -0.01336407195776701, -0.01620253548026085, -0.03295723348855972, 0.06246344745159149, 0.014209571294486523, 0.013450346887111664, -0.029575234279036522, 0.018997861072421074, -0.02080964483320713, -0.0003723326080944389, 0.017522549256682396, 0.015805667266249657, -0.054008450359106064, -0.0052067250944674015, -0.0012876614928245544, 0.023328889161348343, 0.03830631077289581, -0.012328766286373138, 0.0005796633777208626, 0.004973781295120716, 0.006384385284036398, 0.03661531209945679, 0.015607234090566635, 0.03806474059820175, -0.021430829539895058, -0.0013642309932038188, -0.046450719237327576, -0.05594101920723915, 0.03340586647391319, 0.003205134067684412, 0.010646394453942776, -0.041929882019758224, 0.017004895955324173, -0.0018667856929823756, 0.029126601293683052, -0.0064922296442091465, 0.048003677278757095, -0.013950744643807411, -0.0010094230528920889, 0.022017501294612885, -0.021982992067933083, 0.03419959917664528, 0.022586921229958534, 0.010370312258601189, -0.025606561452150345, 0.010646394453942776, 0.011724837124347687, -0.01799706555902958, 0.0025041457265615463, -0.0032029771246016026, 0.009680109098553658, -0.038340821862220764, -0.055630430579185486, -0.043517351150512695, 0.04313774034380913, 0.048624858260154724, -0.034009791910648346, 0.022224564105272293, 0.014019764959812164, -0.045518942177295685, -0.016124887391924858, -0.0055733961053192616, 0.011095026507973671, 0.05145469680428505, 0.05393942818045616, -0.0027133638504892588, 0.005836536176502705, 0.025606561452150345, -0.0380302295088768, -0.027021480724215508, 0.01717744767665863, 0.016953131183981895, -0.015089580789208412, 0.01470996905118227, 0.011491893790662289, -0.00865343026816845, 0.011491893790662289, -0.017048034816980362, -0.07254042476415634, 0.01487389300018549, 0.00365808024071157, 0.012458179146051407, 0.008429114706814289, -0.029730530455708504, 0.048210736364126205, -0.005676926579326391, -0.009524812921881676, -0.04451814666390419, 0.035148631781339645, -0.020999452099204063, -0.05331824719905853, 0.0035804323852062225, 0.06432699412107468, 0.03285370394587517, 0.013087989762425423, 0.0040010251104831696, -0.029247388243675232, -0.024916358292102814, -0.017945298925042152, -0.020792391151189804, -0.0000171455667441478, -0.003532980801537633, -0.05342177674174309, -0.03616667911410332, 0.01619390770792961, 0.012484061531722546, -0.0037184732500463724, -0.05059194192290306, 0.041929882019758224, -0.023484185338020325, -0.03285370394587517, 0.006526739802211523, 0.04065300524234772, 0.013657407835125923, 0.03397528454661369, 0.001487173605710268, -0.01827314682304859, -0.02631402015686035, 0.015417427755892277, -0.030990151688456535, 0.040825556963682175, 0.03223251923918724, 0.01016325131058693, -0.009317751973867416, 0.003763767657801509, -0.015011933632194996, -0.0481417179107666, 0.06401640176773071, -0.01937747187912464, -0.00006881817535031587, -0.053594328463077545, -0.13562504947185516, 0.03390626236796379, 0.0031576824840158224, -0.010292664170265198, 0.05521630495786667, 0.04790014401078224, -0.011474638245999813, -0.004710641223937273, 0.014123295433819294, -0.026331275701522827, 0.007186747156083584, -0.04558796435594559, 0.013062107376754284, 0.016426851972937584, -0.02819482609629631, -0.060737937688827515, -0.0013502112124115229, 0.026745397597551346, 0.012984459288418293, -0.043310292065143585, -0.03585609048604965, 0.0003912053653039038, -0.08655156195163727, -0.023397909477353096, -0.007838127203285694, -0.033147040754556656, -0.04179184138774872, 0.033681947737932205, 0.010620511136949062, -0.03147329390048981, 0.06204932555556297, -0.04883192107081413, -0.0012736417120322585, -0.03671884536743164, 0.008131464011967182, 0.044380106031894684, -0.05297314375638962, -0.04092908650636673, -0.017401764169335365, -0.04379343241453171, 0.048038188368082047, -0.029126601293683052, 0.04541541263461113, 0.004779661539942026, 0.06577642261981964, 0.049556635320186615, 0.01385584194213152, -0.03333684429526329, -0.023001043125987053, 0.06042734533548355, 0.04658875986933708, -0.030351713299751282, 0.024795573204755783, 0.012190724723041058, 0.020222973078489304, 0.04382794350385666, -0.07219532132148743, -0.009869914501905441, 0.00871382374316454, -0.02024022676050663, 0.01055149082094431, 0.05393942818045616, -0.04779661446809769, 0.018135106191039085, 0.02191397175192833, -0.05787359178066254, -0.033681947737932205, -0.0435863733291626, 0.024139879271388054, -0.04341382160782814, 0.005150645971298218, 0.06287756562232971, 0.021310042589902878, 0.015503703616559505, -0.012225235812366009, 0.057804569602012634, -0.07226434350013733, 0.040342412889003754, -0.04541541263461113, 0.023984583094716072, -0.029799550771713257, -0.0052541764453053474, 0.03713296726346016, -0.020826900377869606, 0.011897388845682144, -0.05904693901538849, -0.07009019702672958, 0.060047734528779984, -0.0015572723932564259, -0.03147329390048981, 0.0007053020526655018, -0.025899898260831833, 0.04389696195721626, -0.04941859468817711, 0.03521765023469925, -0.008524017408490181, 0.021206513047218323, -0.011000123806297779, -0.012199352495372295, -0.10311645269393921, -0.06436150521039963, -0.04386245459318161, -0.07847617566585541, 0.0013998196227476, 0.06277403980493546, 0.02505439892411232, 0.025123419240117073, 0.047520533204078674, 0.015451937913894653, 0.03174937516450882, 0.008118522353470325, -0.002335908589884639, 0.07336866855621338, -0.018411187455058098, 0.01856648363173008, -0.012294256128370762, 0.01571076549589634, -0.02558930777013302, -0.04248204454779625, -0.04703739285469055, 0.05017782002687454, 0.04406951367855072, -0.018635503947734833, -0.023604970425367355, -0.004313773941248655, 0.029730530455708504, -0.0636713057756424, 0.019360218197107315, 0.0783381313085556, 0.040860068053007126, 0.004563972819596529, -0.03161133453249931, -0.02669363282620907, -0.01937747187912464, -0.005154959857463837, -0.016556264832615852, -0.03540745750069618, -0.02954072318971157, -0.02212103269994259, -0.011716210283339024, 0.03872043639421463, 0.006267913617193699, 0.028212081640958786, -0.038340821862220764, -0.03124897927045822, -0.014986050315201283, 0.0159523356705904, 0.019187666475772858, -0.019118646159768105, -0.03257761895656586, -0.015288014896214008, 0.03644276410341263, -0.0014774675946682692, 0.014062902890145779, -0.020499054342508316, 0.004689072258770466, 0.044173046946525574, -0.005871046334505081, 0.025106163695454597, -0.07951147854328156, -0.04362088069319725, 0.05186881870031357, 0.015313897281885147, 0.015063698403537273, -0.08102992922067642, 0.02643480710685253, -0.007928716950118542, 0.00968873593956232, -0.043310292065143585, 0.03671884536743164, -0.05014330893754959, -0.018169615417718887, -0.054905716329813004, -0.016495872288942337, 0.06166971102356911, 0.015805667266249657, 0.034130580723285675, 0.018462952226400375, 0.05863281711935997, 0.043724413961172104, 0.008454997092485428, -0.027728939428925514, 0.024571256712079048, 0.035718049854040146, 0.040618494153022766, -0.06960705667734146, -0.00871382374316454, -0.006319678854197264, -0.006138500291854143, -0.04938408359885216, 0.0217931866645813, 0.001317857881076634, 0.03202545642852783, 0.0525590218603611, 0.027038734406232834, -0.007544790394604206, 0.009611088782548904, -0.019739829003810883, 0.07813107222318649, 0.0050902534276247025, 0.015728019177913666, -0.04544992372393608, 0.02419164404273033, -0.03692590445280075, -0.06826116144657135, 0.021310042589902878, 0.04779661446809769, -0.01930845156311989, 0.00427494989708066, 0.015253504738211632, 0.029609743505716324, 0.02810855023562908, -0.053835898637771606, -0.005711436737328768, -0.0027478740084916353, 0.04006633162498474, -0.0013502112124115229, -0.014356239698827267, -0.06322266906499863, 0.026900693774223328, 0.049142513424158096, -0.04852132871747017, 0.04738249257206917, -0.013959372416138649, 0.055561408400535583, 0.04838328808546066, 0.007574987132102251, 0.05435355007648468, 0.01346760243177414, -0.05414649099111557, -0.03402704745531082, -0.0029139542020857334, 0.04983271658420563, -0.029557978734374046, 0.03820278123021126, -0.01904962584376335, -0.006802821531891823, -0.04134320840239525, -0.025106163695454597, -0.028988560661673546, -0.06933097541332245, -0.021844951435923576, 0.04075653478503227, -0.10408274084329605, 0.011664444580674171, 0.0012865830212831497, -0.008101267740130424, -0.014796244911849499, 0.01330367848277092, -0.005940066650509834, -0.050626449286937714, 0.018169615417718887, 0.02586538903415203, 0.02308731898665428, -0.019636299461126328, -0.0737827867269516, -0.04517384245991707, -0.03363018110394478, 0.018790800124406815, -0.06080695614218712, 0.01681509055197239, 0.025779113173484802, -0.021033961325883865, -0.00785538274794817, -0.026883440092206, -0.0010428548557683825, -0.05097155272960663, -0.0660870149731636, -0.0569763258099556, -0.00027217218303121626, 0.004389265086501837, -0.03352665156126022, 0.0033496455289423466, 0.00977501180022955, -0.00693654827773571, 0.03352665156126022, -0.014287219382822514, 0.016349203884601593, 0.04451814666390419, 0.01093973033130169, 0.008144404739141464, -0.06763997673988342, 0.000002443348421365954, 0.007191061042249203, -0.01701352372765541, -0.019515512511134148, -0.001653253915719688, -0.06294658780097961, 0.003412195248529315, -0.028350122272968292, -0.012121704407036304, 0.005849477369338274, 0.0414467416703701, -0.04293067753314972, 0.011069144122302532, -0.08834609389305115, -0.010956985875964165, 0.03283644840121269, -0.015106836333870888, 0.04168831184506416, -0.011069144122302532, 0.04189537093043327, -0.026106959208846092, -0.03295723348855972, 0.03295723348855972, 0.001971394754946232, 0.012941321358084679, 0.004632993135601282, 0.029040325433015823, -0.03504509851336479, -0.061876773834228516, -0.05790810286998749, -0.05921948701143265, -0.04538090154528618, 0.002965719671919942, -0.019187666475772858, -0.015848806127905846, 0.03982476145029068, -0.02358771674335003, 0.04758955538272858, 0.01491702999919653, 0.0022604174446314573, -0.011940525844693184, 0.01497742347419262, 0.017738237977027893, 0.027245795354247093, 0.009654225781559944, 0.04313774034380913, -0.039272598922252655, 0.0005233146948739886, -0.003200820181518793, 0.04834877699613571, 0.10932828485965729, 0.016142142936587334, 0.0010444725630804896, 0.01270837802439928, -0.005413786508142948, -0.029903080314397812, 0.030041120946407318, -0.0062247756868600845, -0.02526145987212658, -0.020378267392516136, 0.04669228941202164, -0.009947562590241432, -0.04220596328377724, 0.024502236396074295, 0.06298109889030457, -0.053180206567049026, -0.02101670578122139, 0.009516185149550438, -0.018048830330371857, 0.008700882084667683, 0.05666573345661163, -0.0526280403137207, -0.030938386917114258, 0.02358771674335003, -0.006401640363037586, -0.0020652192179113626, 0.009964818134903908, 0.05997871235013008, 0.033681947737932205, -0.04272361844778061, 0.0915900468826294, -0.023639481514692307, -0.011379735544323921, -0.030696814879775047, 0.04945310577750206, 0.032215263694524765, 0.021775931119918823, -0.027366582304239273, 0.038789454847574234, 0.0031210153829306364, -0.030092887580394745, -0.02640029601752758, 0.05442257225513458, 0.14494280517101288, -0.007255767937749624, -0.01224249042570591, 0.0013739370042458177, 0.013139755465090275, -0.027728939428925514, -0.06066891551017761, -0.05173077806830406, 0.041964393109083176, 0.048210736364126205, -0.016461361199617386, -0.003317292081192136, -0.039962802082300186, -0.010215017013251781 ]
432
bitmath
to_Bit
null
def to_Bit(self): return Bit(self._bit_value)
(self)
[ 0.02648862451314926, -0.03728533908724785, 0.042265813797712326, 0.007018717937171459, -0.0012792317429557443, -0.04734862968325615, 0.0061061992309987545, 0.0012845618184655905, -0.03076978586614132, -0.05464877933263779, 0.003628753824159503, 0.059390462934970856, 0.026829753071069717, 0.015768662095069885, 0.004334463272243738, -0.026062212884426117, -0.04642758145928383, 0.006366309709846973, 0.00018522208847571164, 0.09913192689418793, 0.015990396961569786, 0.006809776648879051, 0.05120338127017021, 0.04547242075204849, 0.03143498674035072, 0.04127654433250427, -0.011402218602597713, 0.02355491928756237, -0.0333453044295311, 0.005176624283194542, -0.07729970663785934, -0.019017910584807396, 0.028347773477435112, -0.015026708133518696, -0.005607299041002989, -0.0031682304106652737, -0.020501820370554924, 0.09483370929956436, -0.05881054326891899, -0.0463593564927578, 0.0023175415117293596, -0.04468782618641853, -0.05833296477794647, 0.05038467049598694, 0.0220880676060915, -0.08657839894294739, 0.008980206213891506, 0.020245973020792007, -0.013892455957829952, -0.011999193578958511, 0.03215135633945465, 0.017994524911046028, 0.0017120384145528078, 0.03643251955509186, -0.007001661695539951, -0.07668567448854446, 0.006451591849327087, 0.038615740835666656, 0.002724763471633196, 0.07368374615907669, -0.050248220562934875, 0.058776430785655975, 0.014156830497086048, -0.06733875721693039, 0.0704089105129242, 0.05246555432677269, -0.04376678168773651, -0.017636340111494064, 0.02418600767850876, 0.10151983052492142, 0.05331837758421898, -0.015299610793590546, 0.002332465723156929, 0.049872979521751404, -0.01689438708126545, -0.012510886415839195, 0.01611831970512867, -0.010182684287428856, -0.048235561698675156, 0.01760222762823105, 0.007287356536835432, 0.03957090154290199, 0.014847615733742714, 0.027853138744831085, -0.04284573346376419, -0.007671126164495945, 0.04922483488917351, -0.0348803848028183, 0.00785874668508768, -0.01425916887819767, 0.03882041946053505, -0.04581354930996895, 0.0014071548357605934, 0.016604427248239517, 0.04407379776239395, -0.03261188045144081, -0.009884197264909744, 0.012348850257694721, -0.038786303251981735, -0.016519146040081978, -0.07709503173828125, 0.006037973798811436, -0.12342027574777603, -0.015444590710103512, 0.07163697481155396, 0.049327172338962555, 0.012988465838134289, -0.01992190070450306, -0.05400063470005989, -0.07757260650396347, -0.05867409333586693, 0.03557969629764557, -0.044585488736629486, -0.012783789075911045, -0.016399750486016273, 0.029934020712971687, 0.010941695421934128, 0.0025755197275429964, -0.035989049822092056, 0.03817227482795715, 0.01627182774245739, 0.02379371039569378, 0.04850846529006958, 0.00941514503210783, 0.030820956453680992, 0.081802599132061, 0.028501281514763832, -0.037762921303510666, 0.005185152404010296, -0.009969479404389858, 0.0059782760217785835, 0.02362314611673355, -0.028859466314315796, 0.008174290880560875, -0.06542843580245972, -0.01571749337017536, 0.00185488595161587, -0.008894924074411392, -0.04540419578552246, 0.061027880758047104, -0.00006066356581868604, 0.018011583015322685, 0.08651017397642136, 0.019973071292042732, 0.03076978586614132, -0.020791778340935707, -0.01813097670674324, 0.03387405350804329, 0.0033302665688097477, -0.004236388951539993, 0.010523812845349312, -0.041583556681871414, 0.007871539331972599, 0.023827822878956795, -0.03691009804606438, 0.09333274513483047, 0.035375021398067474, -0.04260694235563278, 0.03711477667093277, -0.012877599336206913, 0.0003376638633199036, 0.034129902720451355, -0.029848739504814148, -0.004204408265650272, -0.011265766806900501, -0.002995534101501107, -0.019546659663319588, 0.022514477372169495, 0.008502626791596413, 0.00010400420433143154, 0.02486826479434967, -0.01650208793580532, 0.0009167827083729208, 0.0787324458360672, -0.01720993034541607, 0.006413214839994907, 0.025055885314941406, 0.040491946041584015, 0.0323730893433094, -0.02333318628370762, -0.005176624283194542, 0.02744378335773945, -0.02626689150929451, -0.04042372107505798, 0.04949773848056793, 0.004187351558357477, 0.047928545624017715, 0.0623241662979126, 0.049565963447093964, 0.002677858341485262, 0.06652005016803741, 0.041583556681871414, 0.015239913947880268, -0.010319136083126068, -0.0509645901620388, -0.07839132100343704, -0.010984336026012897, 0.012255039997398853, 0.0007797983125783503, 0.028074871748685837, 0.05485345423221588, -0.026079270988702774, 0.03991203010082245, 0.044892504811286926, -0.019427265971899033, -0.012323264963924885, 0.01096727978438139, -0.03295300900936127, 0.07559406757354736, -0.022378025576472282, 0.012681449763476849, -0.036364294588565826, -0.041890572756528854, 0.03643251955509186, 0.0011513085337355733, -0.0675775483250618, -0.029814627021551132, 0.001019654213450849, -0.030513940379023552, 0.0575142577290535, 0.005624355282634497, -0.030513940379023552, -0.016246242448687553, 0.0033068140037357807, 0.014472374692559242, 0.07648099958896637, -0.02943938598036766, -0.05229499191045761, -0.029507610946893692, -0.017252571880817413, 0.045677099376916885, -0.014574713073670864, -0.016485031694173813, -0.01231473684310913, -0.043903231620788574, 0.039946142584085464, 0.07593519240617752, -0.024237176403403282, -0.061641912907361984, -0.019785450771450996, -0.01301405020058155, -0.005436734762042761, 0.06413214653730392, 0.04349387809634209, 0.011956552043557167, -0.026983261108398438, 0.012510886415839195, -0.020501820370554924, 0.004600970074534416, -0.006660533137619495, -0.04509717971086502, -0.0250388290733099, 0.012621752917766571, 0.0060592941008508205, 0.04540419578552246, -0.022207461297512054, -0.04161767289042473, -0.02145697921514511, -0.03186139836907387, 0.04192468523979187, -0.0016384825576096773, 0.03602316603064537, 0.04393734410405159, -0.02161048725247383, -0.0004178823437541723, -0.024220120161771774, -0.046836934983730316, 0.040798962116241455, 0.03557969629764557, 0.01394362561404705, 0.08030163496732712, -0.08105211704969406, -0.0038312990218400955, -0.00441334955394268, -0.05976570397615433, -0.06413214653730392, 0.04925894737243652, 0.02851833775639534, -0.04117420315742493, -0.05099870264530182, 0.021661655977368355, -0.025704028084874153, -0.027085598558187485, -0.0012099399464204907, -0.043425653129816055, 0.07532116025686264, -0.005833296570926905, 0.046461693942546844, -0.02705148607492447, -0.020433593541383743, 0.03929799795150757, 0.05478522926568985, 0.0010447058593854308, -0.02331613004207611, 0.020638272166252136, -0.014131246134638786, -0.007538938894867897, 0.005300283432006836, 0.09114952385425568, 0.0008416278287768364, 0.0011918175732716918, -0.006669061258435249, -0.07661744952201843, 0.04960007593035698, -0.013150501996278763, 0.025294674560427666, -0.02060415782034397, 0.012800845317542553, -0.021286414936184883, 0.06515553593635559, -0.0031213252805173397, -0.0267956405878067, 0.033584095537662506, -0.008877867832779884, 0.01744019240140915, -0.029814627021551132, 0.02324790321290493, -0.01819920353591442, -0.012621752917766571, 0.04151533171534538, 0.021354641765356064, 0.012894655577838421, 0.0068353614769876, -0.009483370929956436, -0.055126357823610306, -0.08425872772932053, -0.0356479249894619, -0.012613224796950817, -0.0209964569658041, 0.01483908761292696, -0.009781857952475548, -0.01147044450044632, 0.06573545187711716, -0.009884197264909744, -0.04601822793483734, 0.022599760442972183, 0.06324521452188492, -0.002984873950481415, -0.030820956453680992, -0.015768662095069885, 0.04809911176562309, 0.043903231620788574, 0.007671126164495945, 0.02184927649796009, -0.004792854655534029, 0.022053955122828484, -0.05863998085260391, 0.03324296697974205, 0.013414876535534859, -0.03464159369468689, 0.021167021244764328, -0.07477535307407379, -0.020808836445212364, 0.01441267691552639, 0.003647942328825593, -0.049156609922647476, 0.0058119758032262325, 0.019103193655610085, 0.0040402403101325035, 0.029729343950748444, -0.014352979138493538, -0.029319990426301956, 0.05556982383131981, -0.020655328407883644, 0.029030030593276024, 0.028228379786014557, -0.06130078434944153, -0.004421877674758434, -0.028774185106158257, -0.021883390843868256, 0.0494295135140419, 0.018335653468966484, -0.05297724902629852, -0.023571975529193878, -0.0006859879940748215, -0.0021693636663258076, -0.04502895474433899, 0.03206607326865196, -0.01664706878364086, -0.028262492269277573, 0.02394721657037735, -0.026693301275372505, -0.030360432341694832, 0.036227840930223465, 0.03612550348043442, -0.017551058903336525, 0.03595493733882904, -0.017261099070310593, 0.011265766806900501, -0.014881729148328304, -0.02316262200474739, 0.016331525519490242, -0.04601822793483734, -0.057957723736763, -0.012340322136878967, 0.002795121166855097, 0.04895193129777908, -0.005023116245865822, 0.054444100707769394, -0.010438530705869198, 0.03595493733882904, 0.021047625690698624, -0.0009103865595534444, 0.004161767195910215, -0.006460119970142841, 0.013431932777166367, 0.0013900984777137637, 0.0546828918159008, -0.06020916998386383, -0.02851833775639534, -0.04038960859179497, 0.021729882806539536, 0.003946429584175348, 0.0306162778288126, -0.059629254043102264, -0.033976394683122635, 0.024612417444586754, 0.0033046819735318422, -0.00023412605514749885, 0.020245973020792007, 0.006715966388583183, 0.015845416113734245, -0.008280892856419086, -0.024936489760875702, -0.004856816492974758, 0.028381887823343277, 0.060550298541784286, 0.08937565237283707, -0.05874231830239296, 0.03464159369468689, 0.008741416968405247, -0.02797253243625164, -0.018250372260808945, -0.03503389284014702, 0.01425916887819767, -0.046154677867889404, -0.027153825387358665, -0.03755824267864227, -0.015171688050031662, 0.06348400563001633, 0.05863998085260391, 0.00036458103568293154, 0.022292744368314743, -0.05093047767877579, -0.020587101578712463, -0.04240226745605469, -0.03899098187685013, 0.05628619343042374, 0.014190943911671638, 0.002210938837379217, 0.02277032472193241, 0.015939226374030113, 0.08882984519004822, -0.0474509671330452, -0.01251941453665495, -0.0030914766248315573, -0.06761165708303452, -0.014557656832039356, 0.03643251955509186, -0.06959020346403122, 0.008037839084863663, 0.008886395953595638, -0.030360432341694832, -0.015094934031367302, -0.02635217271745205, -0.0452677458524704, 0.028654789552092552, 0.007014453876763582, 0.02169577032327652, 0.01790924370288849, 0.012306208722293377, -0.0348803848028183, 0.040798962116241455, -0.050725799053907394, 0.04386911913752556, -0.020791778340935707, -0.04919072240591049, -0.012826429679989815, -0.01905202493071556, -0.07620809972286224, -0.03484627231955528, -0.0016011716797947884, -0.004767270293086767, -0.012468244880437851, -0.014634410850703716, -0.0196831114590168, 0.003720432287082076, 0.035375021398067474, -0.036534857004880905, -0.029422329738736153, -0.023776652291417122, 0.059868041425943375, -0.007526146247982979, -0.0113169364631176, 0.005522016901522875, 0.060482073575258255, -0.05260200798511505, -0.00863907765597105, -0.021132906898856163, 0.05945868790149689, -0.028808297589421272, 0.009713632985949516, -0.10404417663812637, -0.015666324645280838, -0.03929799795150757, -0.03424929827451706, -0.026249835267663002, -0.01736343838274479, -0.005099870264530182, -0.006285291630774736, 0.002801517490297556, -0.001216336153447628, -0.05519458279013634, -0.03136676177382469, 0.005082814022898674, 0.01209300383925438, 0.03307240456342697, -0.007018717937171459, -0.0326971635222435, -0.0012248643906787038, 0.0026842544320970774, 0.026949146762490273, -0.028995918110013008, -0.0034624538384377956, -0.03131559118628502, -0.017150232568383217, 0.0037119039334356785, -0.044517263770103455, 0.01193949580192566, 0.0153081389144063, -0.00011599699791986495, -0.051885638386011124, -0.040628399699926376, 0.031878452748060226, -0.04895193129777908, -0.01658737100660801, -0.006174425128847361, 0.06348400563001633, -0.07613986730575562, -0.012928768061101437, -0.05082814022898674, -0.011521613225340843, 0.08282598853111267, 0.03612550348043442, -0.003061627969145775, 0.047689758241176605, -0.052567895501852036, 0.016937026754021645, 0.015572513453662395, 0.040491946041584015, -0.03307240456342697, 0.0023964273277670145, -0.0035050949081778526, -0.013824230059981346, 0.07996051013469696, -0.012604696676135063, 0.043118637055158615, 0.061641912907361984, -0.042811620980501175, 0.006664797198027372, -0.032117243856191635, -0.02510705403983593, -0.012323264963924885, -0.0035328115336596966, -0.04444903880357742, -0.01293729618191719, 0.012544998899102211, -0.038479290902614594, 0.03960501402616501, 0.050862252712249756, 0.03527268022298813, 0.0398096889257431, 0.0010020647896453738, 0.012655865401029587, 0.03143498674035072, 0.04161767289042473, -0.046154677867889404, 0.04472193866968155, -0.02486826479434967, 0.03820638731122017, -0.039400335401296616, 0.01201624982059002, 0.01595628261566162, 0.02309439703822136, 0.011717761866748333, -0.027546122670173645, -0.016536202281713486, 0.005001795943826437, -0.026215720921754837, -0.03140087425708771, 0.08146147429943085, 0.00047118368092924356, -0.002763140480965376, 0.0029401008505374193, -0.01363660953938961, -0.03199784830212593, -0.018267428502440453, -0.04673459753394127, 0.09101307392120361, 0.0020936757791787386, 0.04424436017870903, -0.017022309824824333, -0.014429733157157898, 0.012724091298878193, 0.010609094984829426, 0.03152026981115341, -0.015009651891887188, -0.040491946041584015, -0.006617892067879438, 0.011299880221486092, 0.014267697930335999, -0.010208268649876118, -0.01460882555693388, -0.032287806272506714, -0.030394544824957848, -0.02549935132265091, -0.009986535646021366, 0.04339154064655304, -0.09121774882078171, 0.007726559415459633, -0.01867678202688694, 0.04004848003387451, -0.055672165006399155, 0.06106199324131012, 0.0012707035057246685, -0.06883972138166428, -0.00043227372225373983, 0.05461466684937477, 0.038854531943798065, 0.03858162835240364, 0.030343376100063324, -0.013252840377390385, -0.014455318450927734, -0.02416895143687725, -0.03749001771211624, -0.023128509521484375, -0.055603936314582825, 0.03261188045144081, 0.03694421052932739, 0.09428790211677551, -0.018693838268518448, 0.02858656458556652, 0.004677724093198776, -0.02394721657037735, 0.0011982136638835073, -0.037387676537036896, -0.017772791907191277, -0.04455137625336647, -0.05696845054626465, -0.06740698218345642, -0.07648099958896637, 0.04059428721666336, -0.008152970112860203, -0.013048163615167141, 0.008954621851444244, -0.03864985331892967, 0.008553795516490936, 0.04902015998959541, -0.010592038743197918, -0.006515553221106529, -0.07552584260702133, -0.04468782618641853, 0.007926972582936287, -0.02161048725247383, -0.007986669428646564, 0.01189685519784689, -0.010336192324757576, -0.0426410548388958, -0.04284573346376419, 0.0015915774274617434, -0.016792047768831253, -0.015853945165872574, -0.019580774009227753, -0.0006353517528623343, 0.019580774009227753, 0.02845011278986931, -0.012579111382365227, 0.028501281514763832, 0.002876139245927334, 0.003856883617118001, 0.007078415248543024, 0.024203063920140266, -0.010105930268764496, 0.04325508698821068, 0.03435163572430611, -0.041583556681871414, -0.05144216865301132, 0.006630684249103069, -0.0161865446716547, -0.026539793238043785, -0.03895686939358711, 0.029405271634459496, -0.04666637256741524, 0.016246242448687553, -0.0019359039142727852, 0.07975583523511887, 0.008626285940408707, -0.02959289401769638, 0.05185152590274811, 0.001367711927741766, -0.011760403402149677, -0.051646847277879715, -0.011137844063341618, 0.032117243856191635, 0.020518876612186432, -0.027409670874476433, 0.025704028084874153, -0.010796715505421162, 0.025942819193005562, 0.0060592941008508205, -0.017875131219625473, 0.09108129888772964, -0.06423448771238327, -0.034675706177949905, -0.012306208722293377, -0.059390462934970856, -0.05038467049598694, 0.04728040471673012, -0.04584766551852226, 0.016391221433877945, -0.007538938894867897, -0.06375690549612045, 0.03510211780667305, 0.012340322136878967, 0.036227840930223465, 0.04393734410405159, 0.04182234779000282, 0.02222451940178871, -0.051715072244405746, 0.014583241194486618, 0.022497421130537987, -0.002138448879122734, -0.006460119970142841, 0.001623558229766786, 0.006788456346839666, 0.025158222764730453, -0.008242515847086906, 0.017858074977993965, 0.02169577032327652, 0.04813322424888611, 0.06389335542917252, 0.054205309599637985, -0.008668926544487476, -0.014847615733742714, -0.026676245033740997, 0.024510079994797707, -0.0002891596523113549, -0.017167288810014725, 0.006852417718619108, -0.020860005170106888, -0.037012435495853424, -0.00038190395571291447, 0.05393240973353386, 0.0019081872887909412, 0.06290408968925476, 0.0289788618683815, -0.028995918110013008, 0.07668567448854446, -0.02906414493918419, -0.013807173818349838, -0.015154631808400154, -0.019103193655610085, 0.024424796923995018, -0.023299073800444603, -0.04540419578552246, 0.03735356405377388, 0.006157368421554565, 0.013969209976494312 ]
433
bitmath
to_Byte
null
def to_Byte(self): return Byte(self._byte_value / float(NIST_STEPS['Byte']))
(self)
[ 0.0027008068282157183, -0.04112652689218521, -0.004552915226668119, 0.02226066030561924, 0.022950228303670883, -0.033417511731386185, -0.020633988082408905, 0.006387342233210802, -0.027847927063703537, -0.000848146213684231, 0.05742861330509186, -0.0012807836756110191, 0.019396301358938217, 0.030535472556948662, 0.02533719316124916, 0.02745893970131874, 0.00690893828868866, -0.007328866980969906, 0.015585999004542828, 0.047314953058958054, -0.006577415391802788, 0.018300065770745277, 0.012889611534774303, 0.008106840774416924, -0.009715832769870758, 0.007589665241539478, 0.04462740942835808, -0.03631723299622536, -0.059656448662281036, -0.00008032524783629924, -0.04777466505765915, -0.04034855216741562, 0.024842118844389915, 0.012942655943334103, 0.03513259068131447, -0.01010481920093298, 0.016708755865693092, 0.05007322505116463, -0.08996206521987915, -0.04324827343225479, -0.06156602129340172, -0.04430914670228958, -0.05824195221066475, 0.020598625764250755, 0.0036754843313246965, -0.04063145071268082, 0.006055818870663643, -0.010237428359687328, -0.019502390176057816, -0.010378878563642502, -0.014622371643781662, -0.012845409102737904, 0.036387957632541656, 0.03783781826496124, 0.011501636356115341, -0.012279610149562359, -0.007452635560184717, -0.03850970417261124, -0.05856021121144295, 0.11146243661642075, 0.0027295388281345367, 0.011696129105985165, 0.05509469285607338, -0.05845412611961365, 0.06156602129340172, 0.10106587409973145, -0.04452132061123848, 0.03702448308467865, -0.0014697517035529017, 0.0741904154419899, 0.0427531972527504, -0.02959836833178997, -0.03723665699362755, 0.07221011817455292, -0.050285398960113525, 0.025779223069548607, 0.0003809751069638878, 0.011369027197360992, 0.009264960885047913, 0.01119221467524767, 0.036564771085977554, 0.00239138538017869, 0.07189185172319412, -0.0050258878618478775, 0.01427758764475584, -0.048269741237163544, 0.01687672734260559, 0.012102797627449036, -0.040666814893484116, 0.018812822178006172, -0.0209522508084774, -0.0038611372001469135, -0.013552658259868622, 0.01907804049551487, 0.04770394042134285, 0.0006542052724398673, 0.002130587352439761, 0.018264703452587128, -0.013870920054614544, -0.05198279768228531, 0.007448215503245592, 0.04742104187607765, -0.0016476690070703626, -0.001355928834527731, -0.002309609903022647, 0.06796662509441376, 0.01372062973678112, -0.004318638704717159, -0.039676666259765625, -0.03621114417910576, -0.0023582330904901028, 0.0744733139872551, -0.06050514802336693, -0.02556704916059971, -0.026840098202228546, -0.014560488052666187, 0.05053293704986572, 0.031118953600525856, 0.0004975606570951641, 0.06273297965526581, 0.03681230917572975, 0.03591056540608406, 0.00016755721298977733, 0.00789908692240715, 0.008761046454310417, 0.06874459981918335, 0.023781245574355125, 0.01678832247853279, -0.00792118813842535, 0.009379888884723186, 0.03932303935289383, -0.00422360235825181, -0.029439236968755722, 0.0635463148355484, -0.004583857022225857, -0.011254099197685719, 0.006290095392614603, -0.009096989408135414, 0.006060239393264055, 0.03850970417261124, 0.018441516906023026, -0.006506690289825201, 0.13565035164356232, -0.004619219806045294, 0.0526900477707386, 0.008902495726943016, 0.03467287868261337, -0.022738054394721985, -0.01702701859176159, -0.001996873179450631, 0.013835557736456394, 0.019838333129882812, 0.02869662642478943, -0.023091677576303482, -0.02432936429977417, 0.026062123477458954, 0.0317201167345047, -0.034513749182224274, 0.01687672734260559, -0.03829753026366234, -0.016249043866991997, -0.010237428359687328, -0.020969931036233902, -0.03709520772099495, -0.015630202367901802, 0.037590280175209045, -0.07638288289308548, 0.04897698760032654, 0.0318615660071373, 0.010962358675897121, -0.012376856058835983, -0.011943666264414787, -0.00953017920255661, 0.05406918004155159, 0.0419045016169548, 0.009282642044126987, 0.019696883857250214, 0.02846677042543888, 0.013031061738729477, 0.007704593241214752, 0.0033174394629895687, -0.032162144780159, -0.031366489827632904, -0.053503382951021194, 0.02972213737666607, 0.0017835934413596988, 0.04551146924495697, 0.04169232398271561, 0.010909315198659897, -0.06782517582178116, 0.04954278841614723, 0.042930010706186295, 0.017583977431058884, 0.024771394208073616, 0.0025306250900030136, -0.04883553832769394, 0.032338958233594894, 0.017486730590462685, 0.05007322505116463, 0.008155464194715023, 0.0006426019826903939, -0.03914622962474823, 0.034336935728788376, -0.03840361908078194, -0.05817122384905815, 0.00894669909030199, -0.009866123087704182, 0.017513252794742584, -0.0021018553525209427, -0.026928503066301346, -0.03889869153499603, 0.008898075670003891, -0.03631723299622536, -0.05580194294452667, 0.00031853828113526106, -0.08960843831300735, -0.028007058426737785, 0.020775437355041504, -0.006422704551368952, 0.02972213737666607, 0.02546096220612526, -0.024099508300423622, 0.007430534344166517, -0.042788561433553696, -0.01906035840511322, 0.015479911118745804, -0.010750183835625648, -0.014436719007790089, -0.030977504327893257, -0.03608737885951996, -0.004035739228129387, 0.025213424116373062, -0.019856013357639313, 0.04791611433029175, 0.030164167284965515, 0.05226569622755051, -0.0005796126206405461, 0.0014973785728216171, -0.07659506052732468, -0.009662788361310959, -0.02763575315475464, 0.0037263177800923586, 0.03370041027665138, 0.06216718256473541, 0.011731491424143314, -0.01582469418644905, 0.04409697279334068, 0.011881782673299313, -0.056615278124809265, 0.00902184471487999, 0.0034588894341140985, -0.08543567359447479, 0.037554919719696045, -0.01907804049551487, 0.07083097845315933, 0.02848445065319538, 0.03935840353369713, -0.028113145381212234, 0.010202066041529179, 0.05930282548069954, 0.007470317184925079, -0.013950485736131668, 0.015727449208498, 0.0029461339581757784, -0.027900971472263336, 0.04338972270488739, -0.053432658314704895, 0.01918412744998932, 0.0531851202249527, 0.037484195083379745, 0.09752962738275528, -0.025036612525582314, -0.049224525690078735, -0.023798927664756775, 0.0004329137154854834, -0.07631216198205948, 0.05392773076891899, 0.013269757851958275, -0.01263323426246643, -0.02871430665254593, 0.010794387198984623, -0.07673650979995728, -0.022667327895760536, 0.002309609903022647, -0.02954532392323017, 0.05838340148329735, 0.00949481688439846, -0.0026521836407482624, 0.022826459258794785, -0.03695375844836235, 0.022773416712880135, 0.063015878200531, -0.032338958233594894, -0.01893659122288227, 0.02540791779756546, -0.0009299218654632568, -0.03705984354019165, -0.026610242202878, 0.06619849801063538, 0.06807271391153336, -0.03311693295836449, -0.01925485208630562, -0.023675158619880676, 0.024099508300423622, -0.024594582617282867, 0.029103294014930725, 0.039747390896081924, 0.00607792055234313, -0.04480421915650368, -0.000997884082607925, -0.002039971062913537, -0.0041351960971951485, 0.04745640233159065, -0.019378621131181717, -0.023604433983564377, -0.037519555538892746, 0.03723665699362755, 0.01925485208630562, 0.019838333129882812, 0.06609241664409637, 0.012792365625500679, 0.04971960186958313, 0.03301084414124489, 0.02968677505850792, 0.0159661453217268, -0.055412955582141876, 0.008738944306969643, 0.0014564908342435956, 0.00506567070260644, -0.019626157358288765, 0.02966909296810627, -0.0637584924697876, 0.031118953600525856, 0.011218735948204994, -0.03449606895446777, 0.009061627089977264, 0.024612262845039368, 0.04950742423534393, -0.014357153326272964, -0.0159838255494833, -0.0020178696140646935, -0.028042420744895935, 0.040843624621629715, 0.044910307973623276, 0.012721640057861805, -0.03808535635471344, -0.0527254082262516, -0.02956300601363182, -0.004579436965286732, 0.020421812310814857, -0.004849075339734554, -0.044910307973623276, 0.012465262785553932, 0.05194743350148201, 0.003673274302855134, 0.0019371990347281098, 0.0052734250202775, -0.05703962594270706, -0.009344526566565037, -0.011864100582897663, 0.017203830182552338, 0.024559220299124718, -0.011033083312213421, -0.02105833776295185, 0.011395548470318317, 0.012889611534774303, -0.03670622035861015, 0.006802850868552923, 0.0013702948344871402, 0.0632634162902832, -0.00996336992830038, 0.03366504982113838, -0.04770394042134285, -0.007757636718451977, -0.005909949075430632, 0.018353110179305077, -0.06061123311519623, 0.003768310882151127, -0.015488752163946629, -0.0320737399160862, -0.014975996688008308, -0.0035340345930308104, -0.08338464796543121, 0.03071228601038456, 0.07970695942640305, 0.04664306715130806, 0.02332153357565403, -0.05088656023144722, 0.008800828829407692, -0.02630966156721115, -0.07305881381034851, -0.010263950563967228, -0.04664306715130806, -0.025620093569159508, 0.022667327895760536, 0.0010918155312538147, 0.033205337822437286, 0.035521578043699265, 0.06711792200803757, 0.0006713339826092124, -0.024983568117022514, 0.03797926753759384, 0.0046545821242034435, 0.049189165234565735, -0.020934568718075752, -0.03999492898583412, 0.009821919724345207, 0.00505240960046649, -0.013031061738729477, -0.028042420744895935, -0.035468533635139465, 0.024152550846338272, -0.043920159339904785, 0.0210406556725502, -0.0317731574177742, 0.010829749517142773, -0.06050514802336693, -0.04137406498193741, -0.03465519845485687, -0.013641064055263996, -0.03484969213604927, 0.05848948657512665, 0.05159381031990051, -0.0018156406003981829, 0.04466276988387108, -0.008557712659239769, 0.026716329157352448, 0.06170747056603432, -0.014666575007140636, 0.06110630929470062, 0.007386330980807543, -0.01115685235708952, -0.049295250326395035, -0.0036578031722456217, -0.004035739228129387, 0.0007398487068712711, 0.0017935391515493393, -0.03780245780944824, 0.03357664495706558, 0.051452361047267914, 0.0003936834982596338, 0.03465519845485687, 0.03889869153499603, 0.02127051167190075, -0.014259906485676765, -0.030075760558247566, -0.07758520543575287, 0.011528157629072666, 0.030924459919333458, -0.02218993566930294, -0.006749806925654411, -0.09406410902738571, 0.048269741237163544, -0.07822173088788986, 0.01705354079604149, -0.01808789186179638, -0.030959822237491608, -0.026999227702617645, 0.006356399971991777, -0.08197015523910522, 0.023958057165145874, 0.013225555419921875, -0.03783781826496124, -0.0316317081451416, 0.0007486892864108086, -0.05382164567708969, 0.000963074155151844, 0.03957057744264603, 0.058949198573827744, 0.015568316914141178, -0.0008216243586502969, 0.017707744613289833, 0.037519555538892746, -0.021358918398618698, 0.056579913944005966, 0.0000247778862103587, -0.024612262845039368, -0.0007188522722572088, -0.05495324358344078, -0.07132605463266373, -0.06874459981918335, -0.043884795159101486, -0.025213424116373062, -0.03889869153499603, -0.014984836801886559, -0.018689053133130074, -0.04367262125015259, 0.04975496232509613, 0.07235156744718552, -0.037590280175209045, -0.03790854290127754, 0.09958065301179886, -0.02318008430302143, 0.00446892948821187, -0.007748796138912439, 0.05208888277411461, 0.002988126827403903, -0.010679459199309349, -0.05725180357694626, 0.04982568696141243, -0.026150530204176903, 0.01913108304142952, -0.031136633828282356, -0.04155087471008301, -0.05007322505116463, -0.038686517626047134, 0.01007829699665308, -0.06156602129340172, 0.017168467864394188, 0.0209522508084774, -0.0038545066490769386, 0.009874963201582432, -0.05806513875722885, -0.030181849375367165, -0.00612654397264123, 0.023922694846987724, -0.010281631723046303, -0.011369027197360992, 0.014021210372447968, 0.031012866646051407, -0.029103294014930725, 0.03992420434951782, -0.0054016136564314365, 0.011413229629397392, -0.01789339818060398, 0.025178061798214912, -0.006422704551368952, -0.05711035057902336, 0.013499613851308823, 0.02756502665579319, -0.044981032609939575, -0.051487721502780914, 0.03382417932152748, 0.03822680562734604, -0.029881268739700317, 0.025018930435180664, 0.009273801930248737, -0.0012365805450826883, -0.01225308794528246, -0.06534980237483978, -0.04678451642394066, -0.0747562125325203, 0.025036612525582314, 0.00792118813842535, 0.011687288992106915, 0.01586005836725235, -0.024629944935441017, 0.03850970417261124, 0.019749926403164864, 0.021977761760354042, -0.04045464098453522, 0.013596860691905022, 0.014825706370174885, -0.039818115532398224, 0.060788046568632126, 0.03928767889738083, 0.028944162651896477, 0.06552661210298538, -0.005304367281496525, 0.024612262845039368, 0.01270395889878273, -0.04657234251499176, 0.037554919719696045, -0.01430410984903574, -0.03836825489997864, 0.014542805962264538, -0.015718607231974602, -0.049189165234565735, 0.011430910788476467, -0.016355132684111595, 0.011961347423493862, 0.06849706172943115, 0.03483201190829277, -0.028802713379263878, 0.0419752262532711, 0.013075265102088451, -0.03534476459026337, 0.00146422628313303, 0.023816607892513275, -0.07709013670682907, -0.02243747189640999, -0.016319768503308296, -0.0050833518616855145, 0.008071478456258774, -0.009264960885047913, -0.013782513327896595, 0.003903130069375038, 0.01158120110630989, -0.022543560713529587, -0.04565291851758957, 0.015338461846113205, -0.02968677505850792, -0.0316847525537014, 0.01479034312069416, -0.01893659122288227, -0.060929495841264725, -0.014074253849685192, -0.026734009385108948, -0.0015349512686952949, -0.04537001997232437, 0.026893140748143196, -0.007757636718451977, 0.0079565504565835, 0.03534476459026337, 0.08013130724430084, 0.021447323262691498, -0.030040398240089417, -0.018724415451288223, -0.007854883559048176, -0.006537632551044226, 0.055483680218458176, 0.019891375675797462, -0.018848184496164322, -0.036600131541490555, -0.04975496232509613, -0.011289461515843868, 0.04052536562085152, -0.0319499708712101, -0.12058594822883606, 0.009857282042503357, -0.011262939311563969, 0.029421556740999222, -0.03253345191478729, 0.004910959862172604, -0.0022035224828869104, 0.012871930375695229, 0.0057154553942382336, 0.024081826210021973, 0.07786811143159866, -0.006970822345465422, 0.019555432721972466, 0.006440385710448027, -0.021747905761003494, 0.013747151009738445, -0.01789339818060398, -0.0104761254042387, -0.03391258791089058, 0.05399845540523529, 0.02330385334789753, 0.028343001380562782, 0.050250038504600525, 0.05601411685347557, -0.020757757127285004, 0.016425857320427895, -0.0013448781101033092, -0.038580428808927536, -0.022472836077213287, 0.0030721125658601522, -0.06128311902284622, -0.020899206399917603, -0.03060619719326496, 0.03949985280632973, 0.057888325303792953, -0.010705980472266674, -0.027052272111177444, -0.05067438632249832, 0.018653690814971924, 0.04317754879593849, -0.021553412079811096, -0.025991398841142654, -0.05438744276762009, -0.004261174704879522, -0.055483680218458176, -0.041833773255348206, -0.006232631392776966, 0.00999873224645853, 0.003799252910539508, -0.017530933022499084, -0.07231620699167252, -0.08897192031145096, 0.01478150300681591, 0.008668219670653343, -0.01692977175116539, -0.07659506052732468, 0.0023560230620205402, 0.012951496057212353, -0.006758647505193949, 0.009539020247757435, 0.0743318647146225, 0.008867133408784866, -0.042930010706186295, -0.006542052607983351, -0.0022090477868914604, 0.016523104161024094, -0.03484969213604927, -0.03398331254720688, -0.056615278124809265, 0.017239192500710487, -0.06453646719455719, -0.0426824726164341, -0.018300065770745277, -0.012889611534774303, -0.02208384871482849, -0.005154076498001814, -0.0075189401395618916, 0.041939862072467804, 0.008133362978696823, 0.018636008724570274, -0.0003605312085710466, 0.02443545125424862, -0.016664553433656693, -0.06828488409519196, -0.008089159615337849, 0.042823921889066696, 0.036423321813344955, 0.04961351305246353, 0.02024500072002411, -0.022508198395371437, -0.024081826210021973, 0.0319146066904068, 0.02240210957825184, 0.0317201167345047, -0.07150287181138992, -0.028378363698720932, -0.04109116271138191, 0.10332906991243362, -0.06149529665708542, 0.06262689083814621, -0.06955793499946594, 0.06570342928171158, -0.046077270060777664, -0.06824952363967896, 0.048022203147411346, 0.04749176651239395, -0.06269761919975281, 0.02434704452753067, 0.02107601799070835, 0.05679209157824516, -0.028997207060456276, 0.034478385001420975, 0.008022855035960674, 0.012023231945931911, 0.0319499708712101, 0.008243870921432972, -0.033558961004018784, -0.007510099560022354, -0.035468533635139465, -0.04049000144004822, 0.00953017920255661, -0.018529921770095825, 0.05583730340003967, 0.02434704452753067, 0.006431545130908489, -0.0022189936134964228, -0.01891890913248062, 0.010750183835625648, 0.0033881645649671555, -0.025761542841792107, 0.03713056817650795, -0.02325080893933773, 0.006692342925816774, 0.02744125947356224, -0.023940376937389374, -0.024806756526231766, 0.08274812996387482, -0.009220758453011513, 0.0066525605507195, 0.05113409832119942, -0.03935840353369713, -0.004552915226668119, -0.0037263177800923586, -0.07217475771903992, -0.031260404735803604, 0.024594582617282867, -0.07277591526508331, 0.05792368948459625, 0.002603560220450163, 0.004738567862659693 ]
434
bitmath
to_EB
null
def to_EB(self): return EB(bits=self._bit_value)
(self)
[ 0.08646230399608612, -0.05193176120519638, 0.016237173229455948, -0.007256172131747007, -0.013348298147320747, -0.06049642339348793, -0.0005429915036074817, -0.04411480948328972, -0.04452265053987503, -0.0434010848402977, 0.00985615886747837, 0.019066570326685905, 0.04323115199804306, 0.01562541164457798, 0.004456513095647097, 0.033663880079984665, -0.018386835232377052, 0.013645682483911514, 0.013297317549586296, 0.06117615848779678, -0.004150632303208113, -0.06205981597304344, -0.006512711755931377, 0.017435206100344658, 0.04673178866505623, 0.040240317583084106, -0.025541046634316444, 0.007349635940045118, -0.017639126628637314, -0.019253496080636978, -0.056350041180849075, -0.08666622638702393, 0.03340898081660271, -0.021241722628474236, 0.02486131154000759, -0.03775928542017937, -0.001571887405589223, 0.05091216042637825, -0.0050682746805250645, 0.01309339702129364, 0.024385496973991394, -0.06488071382045746, 0.02166655659675598, 0.036637723445892334, 0.029942331835627556, -0.04846511408686638, 0.030197232961654663, -0.008466950617730618, -0.020035192370414734, 0.0223292987793684, 0.02472536452114582, -0.02095283381640911, 0.04945072904229164, 0.014019536785781384, -0.013569211587309837, -0.02667960338294506, -0.020477019250392914, -0.01996721886098385, -0.041395869106054306, 0.0744989663362503, -0.04537231847643852, 0.03680765628814697, 0.04669780284166336, -0.07252773642539978, 0.03568609431385994, 0.06573038548231125, -0.04289128631353378, -0.018794676288962364, -0.015540444292128086, 0.07402314990758896, 0.052135683596134186, -0.027104437351226807, -0.027818158268928528, 0.03670569509267807, -0.06552646309137344, -0.02450445108115673, -0.05835525691509247, 0.04292527213692665, -0.04268736392259598, 0.010263999924063683, 0.03218545764684677, 0.06681796163320541, -0.0043588015250861645, 0.03497236967086792, 0.015404497273266315, -0.020001204684376717, 0.024657391011714935, 0.014240450225770473, 0.03009527176618576, 0.01189536415040493, 0.04557623714208603, -0.05900100618600845, -0.04442068934440613, 0.0435030460357666, 0.05991864949464798, -0.020578980445861816, 0.025727974250912666, 0.025439085438847542, 0.0308429803699255, -0.031046900898218155, -0.04095403850078583, -0.006436241790652275, -0.046629827469587326, -0.04965464770793915, 0.014045026153326035, 0.06477875262498856, 0.02423255704343319, -0.04323115199804306, -0.003007827792316675, -0.07980090379714966, -0.002914364216849208, 0.0779656171798706, -0.03976450487971306, 0.0030120762530714273, -0.08231592178344727, 0.025286145508289337, 0.07178002595901489, 0.04846511408686638, -0.01624566875398159, 0.022431258112192154, 0.017282264307141304, -0.0017205794574692845, -0.042415469884872437, 0.0177071001380682, 0.0387788861989975, 0.05016444995999336, 0.005076771602034569, -0.04380892589688301, 0.0035516158677637577, -0.047377537935972214, 0.04217756167054176, -0.013620192185044289, -0.06277354061603546, -0.018811669200658798, -0.04336709901690483, -0.029398543760180473, 0.020256105810403824, -0.005144745111465454, -0.02387569472193718, 0.07008069008588791, -0.01575286127626896, 0.01916852965950966, 0.11705038696527481, -0.01797899417579174, 0.0010015472071245313, 0.002289857715368271, 0.028769787400960922, 0.03009527176618576, 0.0011162525042891502, 0.027937112376093864, -0.0015931291272863746, 0.021360674872994423, -0.03390178829431534, 0.033663880079984665, 0.016356125473976135, 0.03884686157107353, 0.03521027788519859, -0.029704423621296883, 0.02773319184780121, -0.013297317549586296, -0.014639794826507568, 0.03697758913040161, -0.0088535500690341, -0.032780226320028305, -0.010646350681781769, 0.016483576968312263, -0.04703766852617264, 0.016415603458881378, 0.02139466255903244, -0.028786782175302505, -0.03475145623087883, -0.033273033797740936, -0.043571021407842636, 0.0446585975587368, -0.009397338144481182, 0.043605007231235504, 0.031403761357069016, 0.04295925796031952, 0.0251162126660347, -0.014333914034068584, 0.02987435832619667, 0.05030039697885513, -0.016220178455114365, -0.04628996178507805, 0.031352780759334564, -0.027002476155757904, 0.007264669053256512, 0.043571021407842636, 0.009048973210155964, -0.04278932511806488, 0.04985857009887695, 0.026067841798067093, 0.03962855786085129, 0.014852211810648441, -0.06681796163320541, -0.014503847807645798, -0.011309092864394188, 0.033748846501111984, 0.007171205244958401, 0.04058018699288368, 0.013662675395607948, -0.015497960150241852, 0.028531881049275398, -0.00726891728118062, 0.005680036265403032, 0.0031310298945754766, -0.009261391125619411, -0.11127263307571411, 0.039968423545360565, -0.03847300633788109, -0.03480243682861328, -0.03356192260980606, -0.06107420101761818, -0.018522782251238823, 0.050844185054302216, -0.0377252995967865, -0.022482238709926605, 0.0014008915750309825, -0.020833881571888924, 0.03986646234989166, 0.014605808071792126, -0.04537231847643852, 0.020527999848127365, -0.0223292987793684, 0.015693385154008865, 0.06335131078958511, -0.006291797850281, -0.046935707330703735, 0.008615642786026001, 0.05594220012426376, 0.005514351185411215, 0.045780159533023834, -0.05420887470245361, -0.024215562269091606, -0.0028081557247787714, 0.14192868769168854, 0.024878304451704025, -0.017860040068626404, -0.054786648601293564, -0.003135278122499585, 0.030961934477090836, 0.02547307312488556, 0.03391878306865692, 0.005233960226178169, 0.02654365636408329, -0.057947415858507156, 0.07171205431222916, 0.019406437873840332, -0.09387141466140747, -0.03266127035021782, -0.01938944309949875, -0.020086172968149185, 0.07647019624710083, 0.025099217891693115, 0.0708284005522728, 0.0009054283727891743, 0.006869572680443525, -0.023009033873677254, -0.0018374089850112796, 0.02205740474164486, 0.05662193521857262, 0.021513616666197777, 0.04353703185915947, -0.025371111929416656, 0.021513616666197777, 0.04758145660161972, -0.02258419804275036, -0.010068575851619244, 0.04819322004914284, 0.059408847242593765, 0.06226373463869095, -0.0696728453040123, -0.027495285496115685, -0.00033004325814545155, -0.03125082328915596, -0.019287483766674995, 0.018590755760669708, 0.012056801468133926, -0.06834736466407776, -0.03867692872881889, -0.019831271842122078, -0.020527999848127365, -0.027274370193481445, 0.031148862093687057, -0.02409661002457142, 0.016483576968312263, -0.03405473008751869, -0.01504763588309288, 0.03167565539479256, -0.01864173449575901, 0.02227831818163395, 0.029330570250749588, -0.012294708751142025, -0.03430962935090065, 0.0013615944189950824, -0.03466648980975151, 0.05801539123058319, -0.015591423958539963, 0.0605304129421711, 0.028616847470402718, 0.010213020257651806, 0.003721549641340971, 0.02734234370291233, 0.06358922272920609, -0.06474477052688599, 0.014435874298214912, 0.020561987534165382, 0.02387569472193718, -0.015073126181960106, -0.005374155472964048, -0.04785335063934326, 0.04486251622438431, 0.02690051682293415, -0.03040115348994732, -0.01579534448683262, -0.029721418395638466, 0.04815923050045967, -0.010765304788947105, -0.0016292401123791933, 0.005051281303167343, 0.011657456867396832, 0.02764822542667389, -0.007251923903822899, -0.007872181944549084, -0.02428353577852249, -0.032338399440050125, -0.01757115311920643, 0.013841105625033379, 0.0319475494325161, -0.016679000109434128, -0.0011088178725913167, -0.0696728453040123, 0.0513879731297493, 0.019831271842122078, -0.03070703335106373, 0.003456028178334236, 0.049994517117738724, 0.03211748227477074, -0.037351444363594055, -0.03395276889204979, 0.06107420101761818, 0.019372450187802315, 0.003874490037560463, 0.0027231888379901648, -0.008156821131706238, -0.02458941750228405, -0.03565210476517677, -0.022754132747650146, -0.0019531764555722475, -0.005684284958988428, 0.024776345118880272, -0.07762575149536133, -0.041837695986032486, 0.007226433604955673, 0.008862046524882317, -0.043571021407842636, -0.032287418842315674, 0.00783394742757082, 0.018845655024051666, 0.03755536302924156, -0.019423430785536766, -0.012345688417553902, -0.009473808109760284, -0.020578980445861816, 0.007910417392849922, 0.016568543389439583, -0.03527825325727463, -0.0003621713549364358, 0.018182914704084396, 0.009201914072036743, 0.0733434185385704, -0.006831337697803974, -0.013662675395607948, -0.014886198565363884, 0.026798555627465248, -0.017673112452030182, -0.05410691350698471, 0.01520057674497366, 0.03582204133272171, 0.004439519718289375, 0.016237173229455948, -0.0024831572081893682, -0.06593430787324905, -0.015268550254404545, 0.04972262308001518, 0.0036408312153071165, 0.09495899081230164, 0.028735801577568054, 0.048397138714790344, -0.025405099615454674, -0.024708371609449387, 0.02414758875966072, -0.03527825325727463, -0.02618679404258728, -0.020697934553027153, 0.007761725224554539, 0.06433692574501038, -0.006967284716665745, 0.04965464770793915, -0.00840747356414795, -0.015030642971396446, 0.06953690201044083, 0.010128052905201912, 0.015345020219683647, -0.016092728823423386, -0.048974912613630295, -0.018675722181797028, 0.02764822542667389, -0.014699271880090237, -0.02326393313705921, 0.004685923922806978, -0.008352245204150677, -0.05050431936979294, 0.011980331502854824, -0.04210959002375603, -0.015786847099661827, -0.012660066597163677, -0.07551857084035873, -0.022703152149915695, -0.06182190775871277, -0.01828487403690815, 0.04414879530668259, -0.0163391325622797, -0.0387788861989975, 0.013373788446187973, 0.061312105506658554, -0.019032582640647888, 0.07932508736848831, -0.04469258338212967, 0.008207801729440689, 0.018131934106349945, -0.054310835897922516, -0.06844932585954666, -0.014121497049927711, 0.0011799776693806052, -0.0525435246527195, -0.007251923903822899, -0.049688637256622314, 0.04948471486568451, 0.045610226690769196, 0.025150198489427567, -0.002823024755343795, 0.04007038474082947, -0.013577708974480629, -0.0007822263869456947, -0.04758145660161972, -0.008513682521879673, 0.048804979771375656, 0.06107420101761818, -0.018590755760669708, 0.05420887470245361, -0.048804979771375656, 0.07579046487808228, -0.0572676807641983, 0.008220546878874302, -0.02423255704343319, 0.010043086484074593, -0.03213447704911232, 0.01966133713722229, -0.017741085961461067, -0.032474346458911896, -0.022431258112192154, -0.025948887690901756, -0.025048239156603813, -0.025982873514294624, -0.02166655659675598, 0.060394465923309326, -0.027682211250066757, 0.013645682483911514, 0.053461164236068726, -0.005981668829917908, -0.030146252363920212, 0.06297745555639267, -0.036909617483615875, 0.010238509625196457, -0.017554158344864845, -0.018267881125211716, -0.05410691350698471, -0.031046900898218155, -0.056485988199710846, -0.005450625903904438, -0.052577510476112366, -0.027155417948961258, -0.0022728643380105495, 0.0029844618402421474, 0.010450927540659904, -0.011402556672692299, 0.032916173338890076, -0.0034220414236187935, 0.002291981829330325, -0.06148204207420349, 0.05618010461330414, -0.018624741584062576, 0.04863504692912102, 0.011190138757228851, 0.013305814936757088, -0.004736904054880142, 0.020358067005872726, -0.01180190034210682, 0.024742357432842255, -0.012192748486995697, -0.023501841351389885, -0.05675788223743439, -0.036195892840623856, -0.07728587836027145, -0.07579046487808228, -0.03527825325727463, -0.01753716543316841, 0.01320385467261076, -0.0029462268576025963, 0.018318861722946167, -0.0009096767171286047, -0.018403828144073486, -0.01695939153432846, -0.04421676695346832, -0.020035192370414734, 0.007787215523421764, 0.01921951025724411, 0.018794676288962364, 0.04221155121922493, 0.03524426370859146, 0.023552821949124336, -0.025846926495432854, -0.0010764242615550756, -0.013671171851456165, 0.009201914072036743, 0.014163980260491371, -0.03130180016160011, 0.02693450264632702, 0.01411299966275692, -0.016679000109434128, -0.06059838458895683, 0.03932267427444458, 0.028039073571562767, -0.07483883202075958, 0.01056138426065445, 0.029500503093004227, 0.0582193098962307, -0.08822961896657944, -0.04941674321889877, -0.035516157746315, -0.01291496679186821, 0.06250164657831192, 0.0481252446770668, -0.0035601125564426184, 0.02307700738310814, -0.03830307349562645, 0.013943065889179707, -0.0007487707189284265, 0.009473808109760284, 0.006516960449516773, 0.018182914704084396, 0.054752662777900696, -0.013152874074876308, 0.03252532333135605, -0.06386111676692963, 0.00936335138976574, 0.062467657029628754, -0.03555014729499817, -0.010935238562524319, -0.026560649275779724, 0.016789456829428673, -0.01753716543316841, -0.0026148559991270304, 0.011020204983651638, 0.062467657029628754, -0.004566970281302929, -0.014656787738204002, 0.009057470597326756, 0.03244035691022873, -0.016763966530561447, 0.04261939227581024, 0.018046967685222626, -0.04421676695346832, 0.02210838347673416, 0.028973707929253578, -0.04975660890340805, 0.01913454383611679, 0.005386900622397661, 0.0015410869382321835, -0.007931658998131752, -0.05233960226178169, -0.06239968165755272, 0.006873821374028921, 0.0097202118486166, -0.024572424590587616, -0.0026828295085579157, 0.032474346458911896, -0.03731745854020119, -0.03816712647676468, 0.05427684634923935, -0.02205740474164486, -0.005896701943129301, -0.018352847546339035, -0.021105775609612465, -0.04064815863966942, 0.005280692130327225, -0.04496447741985321, -0.015132603235542774, -0.024878304451704025, 0.05526246502995491, 0.006559443660080433, 0.036059945821762085, 0.01638161577284336, 0.03417368233203888, 0.017860040068626404, 0.011147655546665192, -0.04690172150731087, -0.004405532963573933, 0.018182914704084396, 0.027631232514977455, -0.01320385467261076, -0.05002850294113159, -0.00507252337411046, -0.033578913658857346, -0.030656052753329277, 0.006997023243457079, 0.02623777464032173, -0.07103231549263, 0.028124039992690086, -0.010527397505939007, 0.02814103290438652, -0.047921326011419296, 0.08483093976974487, -0.020256105810403824, -0.04601806774735451, 0.03238937631249428, 0.026611629873514175, 0.043605007231235504, 0.022652171552181244, 0.05604415759444237, 0.03538021072745323, 0.01189536415040493, -0.04411480948328972, -0.021547602489590645, -0.0021284206304699183, 0.04377494007349014, 0.050538305193185806, 0.011513013392686844, 0.0879577249288559, -0.0010562445968389511, -0.018267881125211716, -0.026305748149752617, 0.015548940747976303, -0.007077741902321577, 0.010578377172350883, -0.02591490000486374, -0.03616190701723099, -0.05770951136946678, -0.05923891440033913, 0.023009033873677254, 0.005752258468419313, -0.0377252995967865, -0.04744550958275795, -0.04595009237527847, -0.0035664851311594248, 0.054888609796762466, 0.04958667606115341, -0.014682278037071228, 0.0035516158677637577, -0.05682585388422012, -0.03555014729499817, -0.035618118941783905, -0.01877768151462078, 0.03461550921201706, 0.03741941601037979, -0.010722821578383446, 0.025422092527151108, -0.03711353614926338, -0.01142804604023695, -0.015480967238545418, -0.029704423621296883, -0.04159978777170181, -0.03595798835158348, -0.0652545690536499, 0.02258419804275036, -0.03816712647676468, 0.03475145623087883, 0.05964675545692444, -0.00564604951068759, 0.015056132338941097, 0.05420887470245361, -0.022975046187639236, 0.00887903943657875, 0.036909617483615875, -0.07762575149536133, -0.04741152375936508, 0.050130464136600494, -0.0017078344244509935, -0.07062447816133499, -0.023552821949124336, 0.0008788762497715652, -0.04741152375936508, -0.007213688921183348, -0.00016621647228021175, 0.056655921041965485, 0.020256105810403824, -0.040274303406476974, 0.017588146030902863, 0.01814892701804638, 0.013824112713336945, -0.004643440246582031, -0.026883523911237717, 0.01524305995553732, 0.051999736577272415, 0.0069417948834598064, 0.007613033056259155, 0.0030545596964657307, -0.019015589728951454, 0.023178966715931892, -0.01673847623169422, 0.0721878707408905, -0.06705586612224579, -0.04877099394798279, 0.029857365414500237, -0.0018267880659550428, -0.007022513076663017, 0.03755536302924156, -0.09190018475055695, 0.05121804028749466, -0.04047822579741478, -0.028039073571562767, 0.05628206580877304, 0.021598583087325096, -0.0026169801130890846, 0.029007695615291595, -0.0017864288529381156, 0.029398543760180473, -0.055772263556718826, 0.0065849339589476585, 0.03643380105495453, -0.02307700738310814, 0.004375794902443886, 0.021020807325839996, -0.008301264606416225, -0.011190138757228851, -0.035516157746315, 0.006236569490283728, 0.03854098170995712, 0.002582993358373642, 0.05893303453922272, 0.0354142002761364, -0.010994715616106987, -0.00816956628113985, -0.00794865284115076, 0.04367297887802124, 0.004868602845817804, -0.027444304898381233, -0.016857430338859558, 0.00004361191167845391, -0.018590755760669708, 0.010680337436497211, 0.07517870515584946, 0.040988028049468994, 0.0354142002761364, -0.026118820533156395, -0.0021570969838649035, 0.05308731272816658, -0.04890694096684456, -0.008415970019996166, -0.006185589358210564, -0.04017234593629837, -0.002383321290835738, -0.001191660645417869, -0.02866782806813717, 0.02530313841998577, 0.012813006527721882, -0.01930447667837143 ]
435
bitmath
to_Eb
null
def to_Eb(self): return Eb(bits=self._bit_value)
(self)
[ 0.08937109261751175, -0.05345078557729721, 0.03289543464779854, -0.006793062202632427, -0.008430100046098232, -0.03647027909755707, 0.005577099975198507, -0.03408132120966911, -0.0551350899040699, -0.036504652351140976, 0.012821313925087452, -0.005589989945292473, 0.02596917562186718, 0.030179928988218307, 0.007935981266200542, 0.012658040039241314, -0.022291213274002075, 0.0014823570381850004, 0.0011601054575294256, 0.022806813940405846, -0.013964232988655567, -0.06524089723825455, -0.011111232452094555, 0.012520546093583107, 0.025161398574709892, 0.04190129041671753, 0.0071754674427211285, 0.016086796298623085, -0.035851556807756424, -0.021895917132496834, -0.061391063034534454, -0.0882711410522461, 0.0312283206731081, 0.006466513965278864, 0.004365433938801289, -0.04056072607636452, -0.01522745843976736, 0.04915409907698631, -0.013637684285640717, 0.012408832088112831, 0.03117676079273224, -0.018974170088768005, 0.033703211694955826, 0.060187991708517075, 0.02743005007505417, -0.034046947956085205, 0.03798271343111992, -0.001099951914511621, -0.028925297781825066, 0.027155062183737755, 0.010733123868703842, -0.05001343786716461, 0.04633547365665436, 0.02101939357817173, 0.007699663285166025, -0.027292555198073387, -0.017496109008789062, -0.009538644924759865, -0.04138568788766861, 0.08222140371799469, -0.04925721883773804, 0.02113969996571541, 0.03420162945985794, -0.06369408965110779, 0.012408832088112831, 0.07782159745693207, -0.05754123255610466, -0.001717600622214377, -0.00949567835777998, 0.06310974061489105, 0.041935667395591736, -0.026467591524124146, -0.007768410257995129, 0.03557656705379486, -0.04217628017067909, -0.047091688960790634, -0.061700426042079926, 0.0899898111820221, -0.050666533410549164, -0.0026231275405734777, 0.04155755788087845, 0.04616360738873482, 0.0005094259395264089, 0.022119345143437386, 0.017410175874829292, -0.02113969996571541, 0.018544500693678856, 0.0054739792831242085, 0.01985069364309311, 0.005229067988693714, 0.05008218437433243, -0.07225308567285538, -0.0611504502594471, 0.03561094403266907, 0.06324723362922668, -0.016782859340310097, 0.018338261172175407, 0.02816908061504364, 0.0701906830072403, -0.02816908061504364, -0.01924915798008442, 0.03494065999984741, -0.04310436546802521, -0.06709706783294678, 0.011764328926801682, 0.044857412576675415, 0.01589774154126644, -0.03215640410780907, 0.027240995317697525, -0.0667877048254013, -0.02782534621655941, 0.10360171645879745, -0.021981850266456604, 0.02028036303818226, -0.08565875142812729, 0.0123830521479249, 0.08297762274742126, 0.03708900138735771, -0.019146038219332695, 0.04018261656165123, 0.022841189056634903, 0.004941190127283335, -0.0521102212369442, 0.015046997927129269, 0.03578281030058861, 0.05348515883088112, -0.010389389470219612, -0.04427306354045868, 0.0031193948816508055, -0.04423869028687477, 0.03664214536547661, -0.026605086401104927, -0.02657071314752102, -0.024267688393592834, -0.043310604989528656, -0.02321929670870304, 0.013276763260364532, 0.00187657808419317, -0.01552822720259428, 0.06369408965110779, -0.0034867615904659033, 0.03928890451788902, 0.09933940321207047, 0.004416994284838438, -0.008937109261751175, 0.004262313712388277, 0.020950645208358765, 0.04052635282278061, 0.00019979594799224287, 0.04073259234428406, 0.00028922074125148356, 0.0525570772588253, 0.005276331678032875, 0.05331329256296158, 0.008451583795249462, 0.06218165531754494, 0.03325635939836502, -0.016722705215215683, 0.003787529654800892, -0.0031559166964143515, 0.0005424567498266697, 0.03715774789452553, 0.0012073690304532647, -0.0005188249633647501, -0.016559431329369545, -0.01967882737517357, -0.04698856920003891, 0.01537354663014412, 0.009598799049854279, -0.018011711537837982, -0.0273441169410944, -0.025522321462631226, -0.04918847233057022, 0.024181755259633064, 0.04056072607636452, 0.05486010015010834, 0.029647139832377434, 0.02122563309967518, 0.02645040489733219, 0.010071434080600739, 0.011669802479445934, 0.05035717040300369, 0.0002768677659332752, -0.018578873947262764, 0.043173111975193024, -0.030815839767456055, 0.0003850905632134527, 0.0447886660695076, 0.009933940134942532, -0.06644396483898163, 0.051491498947143555, 0.03045491687953472, 0.015476666390895844, 0.031193947419524193, -0.06489716470241547, -0.011661208234727383, 0.0011117677204310894, 0.03688276186585426, 0.028323760256171227, 0.033995386213064194, 0.001248187618330121, -0.0033148941583931446, 0.03169236332178116, -0.017513295635581017, -0.0018432787619531155, 0.019696014001965523, -0.01735002174973488, -0.10442668199539185, 0.033531345427036285, -0.028822176158428192, -0.033445410430431366, -0.019317904487252235, -0.049635328352451324, -0.007373115047812462, 0.05860681086778641, -0.019283531233668327, 0.007510608993470669, -0.005078684072941542, -0.013276763260364532, 0.040766965597867966, 0.01881948858499527, -0.0624566413462162, 0.017891405150294304, -0.02058972418308258, 0.016825826838612556, 0.050632160156965256, -0.022067785263061523, -0.03894517198204994, -0.01674848608672619, 0.057988088577985764, 0.0008663195185363293, 0.061391063034534454, -0.07156562060117722, -0.012400238774716854, 0.015923522412776947, 0.13756273686885834, 0.017075033858418465, -0.00843869335949421, -0.06266288459300995, -0.00794887077063322, 0.01674848608672619, 0.031297069042921066, 0.025951988995075226, 0.01192760281264782, 0.025917615741491318, -0.04066384583711624, 0.08820239454507828, 0.038360822945833206, -0.11150762438774109, -0.027722224593162537, 0.006586821284145117, -0.024920783936977386, 0.07507171481847763, 0.02437080815434456, 0.05355390906333923, 0.005495462566614151, 0.014333748258650303, 0.010303455404937267, 0.00022114510647952557, 0.01055266335606575, 0.05919115990400314, 0.01179870218038559, 0.017994524911046028, -0.021947477012872696, 0.0344422422349453, 0.02462860941886902, -0.02402707375586033, -0.02579730935394764, 0.046885449439287186, 0.06981257349252701, 0.056441280990839005, -0.06620335578918457, -0.018321072682738304, 0.0015392880886793137, -0.03609216958284378, -0.005267738364636898, 0.007368818391114473, -0.0010204631835222244, -0.05090714991092682, -0.005413825623691082, -0.025402013212442398, -0.03571406379342079, -0.0490853525698185, 0.022016223520040512, -0.022634947672486305, 0.010518290102481842, -0.03729524463415146, -0.013663465157151222, 0.03394382819533348, -0.0044298842549324036, 0.0010000539477914572, 0.012529139406979084, -0.013010368682444096, -0.014849350787699223, -0.01382673904299736, -0.036367159336805344, 0.035645317286252975, -0.02399270050227642, 0.028272200375795364, 0.025642627850174904, 0.019885066896677017, -0.006329020019620657, 0.026605086401104927, 0.04148881137371063, -0.056441280990839005, 0.009212097153067589, 0.02782534621655941, 0.011497934348881245, 0.017496109008789062, -0.0019453250570222735, -0.03337666392326355, 0.03884205222129822, 0.005233364645391703, -0.01821795292198658, -0.02545357495546341, -0.011669802479445934, 0.03897954523563385, -0.018578873947262764, -0.0015844033332541585, -0.002958269091323018, 0.025298893451690674, 0.02579730935394764, 0.004058220889419317, 0.015751654282212257, -0.007630916312336922, -0.020813152194023132, -0.017599230632185936, 0.02619260363280773, 0.03256888687610626, -0.016121169552206993, -0.006668458227068186, -0.06685645133256912, 0.040938835591077805, 0.023459911346435547, -0.036023423075675964, -0.03818895295262337, 0.056613147258758545, 0.02579730935394764, -0.025161398574709892, -0.009057416580617428, 0.0435168482363224, 0.014763416722416878, -0.013947046361863613, 0.003263333812355995, -0.002032333053648472, -0.013663465157151222, -0.027017567306756973, -0.055100712925195694, 0.005650143604725599, 0.008773835375905037, 0.03191579133272171, -0.09707075357437134, -0.025230146944522858, -0.010174554772675037, -0.004380472470074892, -0.036160919815301895, -0.02270369417965412, 0.005448199342936277, 0.003961545415222645, 0.01199635025113821, -0.03935765475034714, -0.022669320926070213, -0.014402494765818119, -0.008786724880337715, -0.009873786941170692, 0.01993662863969803, -0.04155755788087845, 0.0030442026909440756, 0.04936034232378006, 0.016138356178998947, 0.05565069243311882, -0.009787852875888348, -0.014978251419961452, -0.015545413829386234, 0.01597508229315281, -0.03595467656850815, -0.07342179119586945, 0.008816801942884922, 0.06795640289783478, 0.02765347808599472, 0.02261776104569435, -0.002455556532368064, -0.07507171481847763, -0.04743542522192001, 0.030506478622555733, 0.013397070579230785, 0.09885817766189575, 0.025556694716215134, 0.05479135364294052, -0.016121169552206993, -0.008636340498924255, 0.029440900310873985, -0.029750261455774307, -0.01481497660279274, -0.029320592060685158, 0.00040845380863174796, 0.053038306534290314, -0.021689675748348236, 0.011472154408693314, -0.011850262992084026, -0.01692035421729088, 0.1025017648935318, 0.03260326012969017, 0.017925778403878212, 0.0018153502605855465, -0.040285736322402954, 0.005654440261423588, 0.009890973567962646, -0.013010368682444096, -0.0007803858024999499, 0.027275368571281433, -0.00105752213858068, -0.051663365215063095, 0.012795533984899521, -0.04771041125059128, -0.015820400789380074, -0.05925990641117096, -0.10057684779167175, -0.02019442990422249, -0.043482471257448196, -0.01298458781093359, 0.040938835591077805, -0.030867399647831917, -0.042313773185014725, 0.004309576936066151, 0.06785327941179276, -0.0010736347176134586, 0.0654815137386322, -0.041110701858997345, 0.011652614921331406, -0.0002328267291886732, -0.05025405064225197, -0.05819432809948921, -0.022600574418902397, 0.021294381469488144, -0.07197809964418411, -0.004137709736824036, -0.05413825809955597, 0.03205328434705734, 0.04513240233063698, 0.020056935027241707, -0.0037746396847069263, 0.046404220163822174, -0.0006611527060158551, 0.014548582024872303, -0.03688276186585426, 0.004885333124548197, 0.05214459449052811, 0.05719749629497528, -0.00774262985214591, 0.059156786650419235, -0.047572918236255646, 0.06448467820882797, -0.05551319569349289, 0.009607392363250256, -0.022841189056634903, 0.00846017710864544, -0.026330098509788513, 0.037054628133773804, -0.019455399364233017, -0.051491498947143555, -0.023373978212475777, -0.03509534150362015, -0.041282568126916885, -0.038395196199417114, -0.006011065095663071, 0.05444761738181114, -0.0486728698015213, 0.019146038219332695, 0.06530964374542236, -0.017246901988983154, -0.04526989534497261, 0.05970676243305206, -0.018011711537837982, -0.007987541146576405, -0.013250982388854027, -0.006363393738865852, -0.04530426859855652, 0.0019109515706077218, -0.05111338943243027, -0.011145606637001038, -0.05444761738181114, -0.010337828658521175, -0.01757344976067543, 0.010019874200224876, 0.03640153259038925, -0.011815889738500118, 0.029526833444833755, 0.002412589732557535, 0.004240829963237047, -0.05884742736816406, 0.024731731042265892, -0.03818895295262337, 0.03557656705379486, -0.013895485550165176, -0.017195342108607292, -0.0002347065310459584, 0.02619260363280773, -0.0310048945248127, 0.021517809480428696, -0.020641284063458443, -0.009160536341369152, -0.047057315707206726, -0.041970040649175644, -0.07947152107954025, -0.07507171481847763, -0.03922015801072121, -0.013835332356393337, 0.004644718486815691, 0.0038756118156015873, 0.024662984535098076, -0.002339546103030443, -0.003918578382581472, -0.0020484456326812506, -0.046713583171367645, -0.026003550738096237, 0.002837961772456765, 0.0490853525698185, 0.029131537303328514, 0.03215640410780907, 0.03664214536547661, 0.020142868161201477, -0.019971001893281937, 0.029079977422952652, -0.004397659096866846, 0.0023975514341145754, -0.007261401042342186, -0.037020254880189896, 0.010526883415877819, 0.03643590584397316, -0.03825770318508148, -0.06623772531747818, 0.052350834012031555, 0.0443761833012104, -0.08978357166051865, -0.01881948858499527, 0.03547344729304314, 0.0452355220913887, -0.11226383596658707, -0.05331329256296158, -0.03222515434026718, -0.0061227791011333466, 0.0632816031575203, 0.03294699639081955, -0.011171386577188969, 0.018664808943867683, -0.014926690608263016, 0.010071434080600739, 0.013620497658848763, 0.004193566739559174, 0.01341425720602274, 0.014290780760347843, 0.036332786083221436, -0.02782534621655941, 0.019094476476311684, -0.06768141686916351, 0.009590205736458302, 0.03946077451109886, -0.05400076135993004, -0.04083571210503578, -0.02385520562529564, 0.02062409743666649, 0.011291693896055222, -0.007798486854881048, 0.04289812222123146, 0.05138837546110153, 0.002292282646521926, -0.04066384583711624, -0.0007508460548706353, 0.008520330302417278, -0.03182985633611679, 0.032293900847435, 0.02321929670870304, -0.021053766831755638, 0.02093345858156681, 0.046713583171367645, -0.04269188269972801, 0.013276763260364532, 0.03109082765877247, 0.000025410876332898624, -0.03526720777153969, -0.08002150058746338, -0.05826307460665703, -0.0015532523393630981, 0.0006396693061105907, 0.004380472470074892, -0.001774531789124012, 0.032929807901382446, -0.007317258045077324, -0.04499490559101105, 0.051182135939598083, -0.00776411360129714, -0.02050379104912281, -0.027155062183737755, -0.018149206414818764, -0.043173111975193024, 0.00923787709325552, -0.015700094401836395, -0.0011783663649111986, -0.015124338679015636, 0.02610667049884796, 0.014720450155436993, 0.047572918236255646, 0.004679092206060886, 0.004988453816622496, 0.022600574418902397, 0.009444118477404118, -0.01627585105597973, -0.0022256840020418167, 0.0061700427904725075, 0.009805039502680302, -0.01671411283314228, -0.05805683508515358, 0.0031086530070751905, -0.011678395792841911, -0.01895698346197605, 0.01567431353032589, 0.025402013212442398, -0.06706269085407257, 0.04901660606265068, -0.025384826585650444, 0.04310436546802521, -0.05620066821575165, 0.07802783697843552, -0.017753910273313522, -0.036332786083221436, 0.02119125984609127, 0.047744788229465485, 0.023442724719643593, 0.01666255295276642, 0.0435168482363224, 0.020228803157806396, 0.0063419099897146225, -0.01576024852693081, -0.02333960495889187, -0.00375315616838634, 0.046060483902692795, 0.06568775326013565, 0.0013620498357340693, 0.06324723362922668, 0.004962673410773277, -0.00423008855432272, -0.030678344890475273, -0.0023331011179834604, -0.026003550738096237, 0.00781997013837099, -0.003218218684196472, -0.009942533448338509, -0.04186691716313362, -0.061700426042079926, 0.047057315707206726, 0.012563512660562992, -0.012408832088112831, -0.059156786650419235, -0.04685107618570328, -0.02050379104912281, 0.06864387542009354, 0.052694570273160934, -0.0031022080220282078, -0.0015629199333488941, -0.04166067764163017, -0.03537032753229141, -0.03174392506480217, -0.03217359259724617, 0.05925990641117096, 0.01912885159254074, 0.0046232352033257484, 0.019317904487252235, -0.06008487194776535, 0.010655784048140049, -0.0031623616814613342, -0.05754123255610466, -0.055100712925195694, -0.02602073736488819, -0.06510340422391891, 0.004481444600969553, -0.048432257026433945, 0.034304749220609665, 0.05314142629504204, -0.01527042593806982, 0.02760191820561886, 0.03174392506480217, -0.020555350929498672, 0.015914928168058395, 0.021861543878912926, -0.06699394434690475, -0.05853806436061859, 0.049807194620370865, 0.006208712700754404, -0.08208391070365906, -0.029440900310873985, -0.007355928421020508, -0.07520920783281326, -0.017590636387467384, 0.0028895221184939146, 0.04661045968532562, 0.010793277993798256, -0.015347765758633614, 0.010277675464749336, 0.027155062183737755, 0.0014436868950724602, 0.01602664217352867, -0.030678344890475273, 0.005168914329260588, 0.04159193113446236, -0.013835332356393337, -0.0012342233676463366, -0.006144262384623289, -0.02959557995200157, -0.003409421071410179, -0.013783772476017475, 0.05719749629497528, -0.06850637495517731, -0.034098509699106216, 0.03609216958284378, 0.01522745843976736, 0.0054353089071810246, 0.02696600742638111, -0.06300661712884903, 0.05324454605579376, -0.03442505747079849, -0.05276331678032875, 0.05365702882409096, 0.051147762686014175, 0.01718674786388874, -0.004019550513476133, -0.00691336952149868, 0.041935667395591736, -0.022755254060029984, 0.006217306014150381, 0.034218814224004745, -0.0310048945248127, 0.009684732183814049, -0.005229067988693714, -0.019627265632152557, -0.008816801942884922, -0.024817664176225662, -0.0019345832988619804, 0.01735861599445343, 0.00572748389095068, 0.039563894271850586, 0.022463079541921616, -0.015837589278817177, -0.030678344890475273, 0.004472851287573576, 0.03643590584397316, 0.008473066613078117, -0.009641765616834164, -0.00580482417717576, -0.01158386841416359, -0.018630435690283775, 0.01680004596710205, 0.07094689458608627, 0.04341372475028038, 0.028117520734667778, -0.040423233062028885, -0.002964714076370001, 0.05565069243311882, -0.04540738835930824, -0.009762072935700417, 0.012460391968488693, -0.05145712569355965, 0.023030241951346397, -0.019111663103103638, -0.03578281030058861, 0.025591067969799042, 0.03492347151041031, -0.01644771732389927 ]
436
bitmath
to_EiB
null
def to_EiB(self): return EiB(bits=self._bit_value)
(self)
[ 0.07907365262508392, -0.061761267483234406, 0.022190088406205177, -0.024354135617613792, 0.0353461317718029, -0.055818717926740646, 0.00421860720962286, -0.05485691875219345, -0.037235379219055176, -0.031773731112480164, 0.0514562726020813, -0.008286932483315468, 0.02588270977139473, 0.018171139061450958, 0.00011385140533093363, 0.019407739862799644, -0.03771628066897392, -0.028579184785485268, 0.012331643141806126, 0.06708551198244095, 0.0014952976489439607, -0.04307487607002258, 0.040979526937007904, 0.022945787757635117, 0.010244881734251976, 0.005964015610516071, 0.015277153812348843, 0.001203322783112526, 0.002232748782262206, -0.028441784903407097, -0.08724895119667053, -0.06684505939483643, 0.018205489963293076, -0.0018387974705547094, 0.018909664824604988, -0.03275270760059357, -0.01003878191113472, 0.040361229330301285, -0.001460947678424418, 0.015929803252220154, -0.014315354637801647, -0.04534197598695755, 0.030777582898736, 0.007964901626110077, 0.005951134022325277, -0.03716668114066124, 0.030451258644461632, -0.013920329511165619, 0.0020073270425200462, 0.017604365944862366, 0.01046815700829029, -0.015414553694427013, 0.04173522815108299, 0.03364580497145653, -0.005216903518885374, 0.021073713898658752, -0.011335493996739388, -0.07577605545520782, -0.046612925827503204, 0.03823152929544449, -0.06949000805616379, 0.010433807037770748, 0.062070414423942566, -0.07605085521936417, 0.03021080791950226, 0.0666046142578125, -0.04918917268514633, -0.01675420254468918, -0.023289287462830544, 0.06962741166353226, 0.04850217327475548, -0.039330728352069855, -0.0335942804813385, 0.014229479245841503, -0.08065375685691833, -0.011120806448161602, -0.04101387783885002, 0.057639267295598984, -0.024182386696338654, 0.013319205492734909, 0.04551372304558754, 0.05915066599845886, 0.026501011103391647, 0.05846366658806801, 0.04173522815108299, -0.0118936812505126, 0.06962741166353226, 0.028218509629368782, 0.01827418990433216, -0.005027978681027889, 0.06904346495866776, -0.04650987312197685, -0.05100972205400467, 0.04015512764453888, 0.02454306185245514, -0.021588962525129318, 0.007161971181631088, 0.014066317118704319, 0.00202664895914495, -0.03644533082842827, -0.05131887272000313, -0.015139753930270672, 0.0013901008060202003, -0.03627358004450798, -0.0006075652781873941, 0.041700877249240875, 0.03706362843513489, -0.03256378322839737, -0.013198980130255222, -0.05231502279639244, 0.009411894716322422, 0.10009584575891495, -0.06011246517300606, -0.015715116634964943, -0.059253718703985214, 0.02035236358642578, 0.040223829448223114, 0.023461036384105682, 0.031876783818006516, 0.024199562147259712, -0.006719714961946011, 0.016342002898454666, -0.03623922914266586, 0.014959416352212429, 0.03237485885620117, 0.03757888078689575, -0.008819357492029667, -0.02050693891942501, -0.010098894126713276, -0.07385245710611343, 0.04211307689547539, -0.03867807984352112, -0.044071026146411896, 0.025401810184121132, -0.027771959081292152, -0.00475317845121026, 0.015002354048192501, -0.01443557906895876, -0.025814009830355644, 0.09872184693813324, -0.015723703429102898, 0.04235352575778961, 0.09885924309492111, 0.029060084372758865, 0.04760907217860222, -0.007720158435404301, 0.057639267295598984, 0.048570871353149414, 0.003915898036211729, -0.01227153092622757, 0.00036711542634293437, -0.0005576504627242684, -0.012426105327904224, 0.028012409806251526, 0.013241917826235294, 0.03347405791282654, 0.04297182708978653, -0.018961189314723015, 0.034246932715177536, -0.04314357787370682, -0.011180918663740158, 0.035449180752038956, -0.004499847535043955, -0.01367129199206829, -0.035002630203962326, 0.011395606212317944, -0.05382642149925232, 0.015509016811847687, 0.025659436360001564, -0.012846892699599266, -0.033233605325222015, -0.06423446536064148, -0.052108921110630035, 0.021314162760972977, 0.005062328651547432, 0.04578852280974388, 0.03156763315200806, 0.054822567850351334, 0.03244355693459511, 0.009094157256186008, -0.006376215256750584, 0.029077257961034775, -0.03970857709646225, -0.00605847779661417, 0.03548353165388107, 0.0038021134678274393, 0.042593974620103836, 0.014126429334282875, 0.0008152753580361605, -0.068734310567379, 0.05310507118701935, 0.02914595976471901, -0.0034221168607473373, 0.013181805610656738, -0.046922072768211365, -0.0013385758502408862, 0.003847197862342, 0.031756557524204254, -0.020781738683581352, 0.03582702949643135, -0.01708911545574665, -0.023375162854790688, 0.054479070007801056, -0.011146568693220615, -0.024474361911416054, 0.013774341903626919, -0.0193218644708395, -0.10208814591169357, 0.06031856685876846, -0.0002289104158990085, -0.014384054578840733, -0.03538047894835472, -0.09446244686841965, -0.01574946567416191, 0.03661707788705826, 0.010133244097232819, -0.03402365744113922, -0.0005844864062964916, -0.016822902485728264, 0.024044986814260483, 0.008398570120334625, -0.04376187548041344, -0.015637828037142754, -0.042456574738025665, 0.02900855801999569, 0.033233605325222015, 0.0015028116758912802, -0.010863181203603745, 0.02914595976471901, 0.06481841206550598, 0.007604226935654879, 0.07625696063041687, -0.04650987312197685, -0.007771683391183615, 0.008003545925021172, 0.13774342834949493, -0.00762140192091465, -0.03764757886528969, -0.045822873711586, 0.016359178349375725, -0.014753316529095173, 0.023014487698674202, 0.02006038837134838, 0.023014487698674202, 0.0025741017889231443, -0.06007811799645424, 0.041700877249240875, 0.051078420132398605, -0.059391118586063385, -0.0273769348859787, -0.007604226935654879, -0.055681318044662476, 0.05640266835689545, -0.007638576906174421, 0.08518794924020767, 0.021915288642048836, -0.008201058022677898, -0.02974708378314972, 0.006547965109348297, 0.015500429086387157, 0.04709382355213165, 0.0074797081761062145, 0.044071026146411896, -0.028029585257172585, 0.02955815941095352, 0.032203108072280884, -0.022945787757635117, -0.008746364153921604, 0.05217762291431427, 0.06763511151075363, 0.06584891676902771, -0.04008642956614494, -0.016402116045355797, 0.01615307852625847, -0.01040804386138916, -0.016144491732120514, 0.05430731922388077, 0.007561289705336094, -0.05616221949458122, -0.02188093774020672, -0.030897807329893112, -0.010021607391536236, -0.025178536772727966, 0.0012773899361491203, -0.019562313333153725, 0.01842876523733139, -0.036960579454898834, 0.004791822284460068, 0.03462478145956993, -0.024731986224651337, 0.019837113097310066, 0.05664311721920967, -0.07268455624580383, -0.02066151425242424, 0.013413667678833008, -0.033972132951021194, -0.0020652925595641136, 0.017501315101981163, 0.06402836740016937, 0.03974292799830437, 0.005955427885055542, 0.012005317956209183, -0.01449569221585989, 0.04132302850484848, -0.009686694480478764, 0.03647967800498009, 0.009472006931900978, 0.03003905899822712, 0.01084600668400526, 0.008930995129048824, -0.013336380012333393, 0.01685725338757038, 0.02095348760485649, -0.006887170951813459, -0.014478516764938831, -0.030451258644461632, 0.0316535085439682, 0.00813665147870779, -0.023701487109065056, 0.019098589196801186, 0.01330203004181385, 0.06286046653985977, -0.0052856034599244595, -0.042284827679395676, -0.011060694232583046, -0.015268566086888313, -0.004967865999788046, 0.0075226458720862865, 0.04575417563319206, -0.04726557433605194, 0.032615307718515396, -0.0939815491437912, 0.027291059494018555, -0.002853195182979107, -0.020008863881230354, -0.007372364867478609, 0.06790991127490997, 0.029987532645463943, -0.026260560378432274, 0.002331505063921213, 0.0363079309463501, 0.008729188703000546, -0.00136755860876292, 0.015414553694427013, -0.009909969754517078, -0.04592592269182205, -0.0267929844558239, -0.047952573746442795, -0.029918832704424858, 0.03953682631254196, 0.0038858416955918074, -0.0526241697371006, -0.007677220739424229, -0.009824094362556934, -0.003441438777372241, -0.032615307718515396, -0.018360065296292305, -0.023701487109065056, 0.008493033237755299, 0.05712401866912842, -0.03726973012089729, -0.02706778421998024, 0.0017056912183761597, -0.04609767347574234, -0.015723703429102898, -0.005289896856993437, -0.03285575658082962, -0.01738109067082405, 0.048261724412441254, 0.030279507860541344, 0.028905509039759636, -0.010253469459712505, -0.05667746812105179, -0.006775533780455589, 0.025831185281276703, -0.00913709495216608, -0.07467685639858246, 0.06031856685876846, -0.03582702949643135, -0.032014183700084686, 0.04778082296252251, -0.017638714984059334, -0.05011662095785141, 0.000894709664862603, 0.045135874301195145, 0.0347621813416481, 0.12675142288208008, 0.021056538447737694, 0.03163633123040199, -0.018789440393447876, -0.05231502279639244, 0.0357239805161953, -0.044517576694488525, -0.02140003815293312, 0.011945205740630627, 0.002612745389342308, 0.03438433259725571, 0.015045291744172573, 0.02498961053788662, 0.0036282166838645935, -0.0014276710571721196, 0.04413972422480583, 0.029987532645463943, 0.019287513568997383, 0.010949056595563889, -0.029231833294034004, 0.0005474528297781944, -0.023100363090634346, 0.007338014896959066, -0.030846282839775085, -0.005809440743178129, 0.003580985590815544, 0.0016681209672242403, -0.03161915764212608, -0.03273553028702736, -0.03275270760059357, -0.03156763315200806, -0.08010415732860565, -0.017406852915883064, -0.02260228805243969, -0.01383445505052805, 0.040636029094457626, -0.03079475834965706, 0.002799523528665304, -0.0019375536357983947, 0.012314468622207642, -0.030090583488345146, 0.06024986505508423, -0.05396382138133049, 0.030966507270932198, -0.007677220739424229, -0.036067478358745575, -0.009480594657361507, -0.015775227919220924, -0.0006311808829195797, -0.09247014671564102, 0.004864816088229418, -0.07405856251716614, 0.0024259674828499556, 0.06461231410503387, 0.03505415469408035, 0.00033571739913895726, 0.03733842819929123, 0.004620072431862354, 0.034865230321884155, -0.028888333588838577, -0.035586580634117126, 0.08044765889644623, 0.04554807394742966, 0.004766060039401054, 0.08319565653800964, -0.06729160994291306, 0.06303221732378006, -0.07227236032485962, 0.0007175925420597196, -0.033388182520866394, 0.00509238475933671, -0.010811656713485718, 0.01724369078874588, -0.04225047677755356, -0.048845671117305756, -0.024302611127495766, -0.007943432778120041, -0.06275741755962372, 0.01769023947417736, -0.03541482985019684, 0.02693038433790207, -0.01918446458876133, 0.04441452398896217, 0.03953682631254196, 0.014753316529095173, -0.02098783850669861, 0.04788387194275856, -0.04314357787370682, 0.026861684396862984, -0.0059468406252563, -0.001943994197063148, 0.001630550716072321, -0.019699713215231895, -0.06220781430602074, 0.023684311658143997, -0.04283442720770836, -0.016092965379357338, -0.015569129027426243, 0.014066317118704319, -0.007681514602154493, 0.010622731409966946, 0.026518184691667557, -0.010983406566083431, -0.00866048876196146, -0.04297182708978653, 0.048983070999383926, -0.0749516561627388, 0.03788802772760391, 0.04345272481441498, 0.03046843223273754, 0.0019117911579087377, 0.009076982736587524, -0.03720102831721306, 0.021073713898658752, -0.011189506389200687, -0.031773731112480164, -0.0232034120708704, -0.04654422402381897, -0.04163217544555664, -0.041700877249240875, -0.01708911545574665, -0.00950635690242052, 0.010227707214653492, -0.0037634698674082756, -0.0019922989886254072, 0.013001468032598495, -0.003153757657855749, -0.015852516517043114, -0.007256433367729187, 0.003188107628375292, -0.01578381657600403, -0.0004865352821070701, 0.018033739179372787, 0.024628937244415283, 0.009987257421016693, 0.02914595976471901, -0.0112152686342597, 0.03658273071050644, -0.016324829310178757, 0.010605556890368462, -0.00010922220826614648, -0.030846282839775085, 0.0007938065682537854, 0.0392276793718338, -0.03527742996811867, -0.058635417371988297, 0.02644948475062847, 0.013705641962587833, -0.08642455190420151, -0.004227194469422102, 0.040636029094457626, 0.03905592858791351, -0.004675891250371933, -0.03967422619462013, -0.05870411917567253, 0.0008040042594075203, 0.0499105229973793, 0.004289453849196434, 0.008231114596128464, 0.049257874488830566, -0.03357710689306259, 0.05296767130494118, -0.0008533823420293629, -0.013885979540646076, -0.01749272830784321, 0.00547023443505168, 0.07625696063041687, -0.019132940098643303, 0.02510983683168888, -0.04496412351727486, 0.02064433880150318, 0.039914678782224655, -0.03984597697854042, 0.004881991073489189, -0.022842736914753914, 0.013731405138969421, -0.022344661876559258, -0.03895287960767746, 0.001790492795407772, 0.05324247106909752, -0.007874732837080956, -0.02260228805243969, 0.006505027413368225, 0.04166652634739876, -0.03206570819020271, 0.025041136890649796, -0.008905232883989811, -0.04386492446064949, 0.01419512927532196, 0.022275961935520172, -0.05949416756629944, -0.011034931056201458, 0.064474917948246, -0.030726058408617973, -0.039021577686071396, -0.026243384927511215, -0.023581262677907944, -0.0001361252216156572, 0.03970857709646225, -0.01574946567416191, -0.008965345099568367, 0.011867918074131012, -0.00658231507986784, -0.012194243259727955, 0.05887586623430252, -0.04626942425966263, -0.01501952949911356, 0.001999812899157405, -0.014083492569625378, -0.026569711044430733, -0.0007347675855271518, -0.02347821183502674, 0.0114557184278965, -0.04197567701339722, 0.04956702142953873, 0.0075312331318855286, -0.012099781073629856, 0.008140945807099342, 0.05337987095117569, 0.006101415492594242, 0.03283858299255371, -0.036067478358745575, 0.003389913821592927, 0.011678993701934814, 0.016101554036140442, -0.012615030631422997, -0.02648383565247059, -0.06035291776061058, -0.06605501472949982, -0.019304689019918442, 0.015062466263771057, 0.006290340330451727, -0.06928391009569168, 0.007359483279287815, -0.04118562862277031, 0.04070472717285156, -0.05654006823897362, 0.05348291993141174, -0.01019335724413395, -0.0304856076836586, 0.022533588111400604, 0.06461231410503387, 0.07055485993623734, 0.02765173465013504, 0.04341837763786316, 0.027291059494018555, -0.010304993949830532, -0.02930053323507309, -0.000925839354749769, -0.022516412660479546, 0.008896645158529282, 0.05348291993141174, -0.015165516175329685, 0.08587495237588882, 0.010313581675291061, -0.023753011599183083, -0.040670376271009445, 0.024319786578416824, 0.004448322579264641, 0.03672013059258461, -0.010116069577634335, -0.04709382355213165, -0.047368623316287994, -0.05640266835689545, 0.02260228805243969, 0.014693204313516617, 0.007149089593440294, -0.0714479610323906, -0.06024986505508423, 0.010742956772446632, 0.03192830830812454, 0.03757888078689575, -0.04881132394075394, 0.0014684617053717375, -0.05186847224831581, -0.019837113097310066, -0.07879885286092758, -0.020266488194465637, 0.08422615379095078, 0.03685753047466278, -0.0187379140406847, 0.048983070999383926, -0.010725781321525574, -0.028149809688329697, 0.01123244408518076, 0.008003545925021172, -0.010536856949329376, -0.02572813630104065, -0.05217762291431427, 0.025607910007238388, -0.04606332629919052, 0.03376603126525879, 0.03033103235065937, -0.0070632146671414375, -0.026878859847784042, 0.0040769134648144245, -0.02157178893685341, 0.010167594067752361, 0.007582758087664843, -0.0817529559135437, -0.04551372304558754, 0.00476176617667079, -0.021606137976050377, -0.0666046142578125, 0.0012730961898341775, 0.0019965926185250282, -0.05681486800312996, -0.0035122856497764587, 0.036788828670978546, 0.04012077674269676, 0.015775227919220924, -0.018016565591096878, 0.018806613981723785, -0.010648493655025959, 0.016007091850042343, -0.0363079309463501, 0.006500734016299248, 0.029678383842110634, 0.06152081489562988, 0.03716668114066124, -0.01887531392276287, 0.016479402780532837, -0.038128480315208435, 0.012142717838287354, -0.013499542139470577, 0.08422615379095078, -0.07982935756444931, -0.05911631882190704, 0.014298179186880589, 0.05070057138800621, 0.02868223376572132, 0.034882403910160065, -0.09741654247045517, 0.059700265526771545, -0.004851934965699911, -0.00250969547778368, 0.020695863291621208, 0.028458958491683006, -0.05272722244262695, 0.048983070999383926, -0.0061787026934325695, 0.02765173465013504, -0.03362863138318062, 0.03335383161902428, 0.017192166298627853, -0.051215820014476776, -0.008896645158529282, 0.016161665320396423, -0.015363029204308987, -0.02425108663737774, -0.057776667177677155, -0.004813291132450104, 0.011429956182837486, -0.01523421611636877, 0.05128452181816101, 0.019132940098643303, 0.00914568267762661, 0.015946978703141212, -0.025212885811924934, 0.01811961457133293, 0.0413573756814003, -0.0011024196865037084, -0.019132940098643303, 0.0263120848685503, -0.01701182872056961, 0.04046427831053734, 0.039021577686071396, 0.0017089114990085363, 0.03668577969074249, -0.031018033623695374, 0.00865190103650093, 0.04760907217860222, -0.03672013059258461, 0.008493033237755299, -0.018772264942526817, -0.059872016310691833, 0.0078146206215024, -0.008879469707608223, -0.07151666283607483, 0.013250505551695824, 0.02364996261894703, -0.008827945217490196 ]
437
bitmath
to_Eib
null
def to_Eib(self): return Eib(bits=self._bit_value)
(self)
[ 0.08763374388217926, -0.046760816127061844, 0.024664105847477913, -0.029028676450252533, 0.0018367570592090487, -0.056927699595689774, -0.005943519063293934, -0.05915277451276779, -0.03892170637845993, -0.03029525838792324, 0.030483534559607506, -0.006388533860445023, 0.012075313366949558, 0.03775781765580177, 0.005216090474277735, 0.02517758496105671, -0.02848096564412117, -0.009833121672272682, -0.008134362287819386, 0.046281568706035614, -0.01336756907403469, -0.057680804282426834, 0.02103552035987377, 0.03515619412064552, 0.010338042862713337, 0.012263589538633823, 0.0019918703474104404, -0.007663673255592585, 0.0017843394307419658, -0.028600778430700302, -0.0770903080701828, -0.07873343676328659, -0.0005578735144808888, -0.007732137106359005, 0.03311939164996147, -0.022370565682649612, -0.015121955424547195, 0.031544722616672516, 0.018074458464980125, 0.01514762919396162, 0.02469833754003048, -0.056345757097005844, 0.018296966329216957, 0.017466843128204346, 0.015857942402362823, -0.017766371369361877, 0.025194700807332993, -0.0035365864168852568, 0.00931964349001646, 0.017851952463388443, 0.00005265165236778557, -0.029576387256383896, 0.05234062299132347, 0.041489098221063614, 0.002967480570077896, 0.0014505781000480056, -0.02341463975608349, -0.05138212814927101, -0.026820717379450798, 0.05103980749845505, -0.06497220695018768, 0.0003198545891791582, 0.06257596611976624, -0.0579204261302948, 0.03796321153640747, 0.067094586789608, -0.05223792418837547, -0.006970476824790239, -0.010457854717969894, 0.06706035137176514, 0.0438511036336422, -0.043953798711299896, -0.016585370525717735, 0.01426615659147501, -0.04361147806048393, -0.022028246894478798, -0.06069321185350418, 0.05850236862897873, -0.029507923871278763, 0.0009638427873142064, 0.04795893281698227, 0.06278136372566223, 0.008476682007312775, 0.05175868049263954, 0.02103552035987377, -0.01141634862869978, 0.05083441734313965, 0.01514762919396162, 0.031219519674777985, 0.001912709092721343, 0.05600343644618988, -0.06490374356508255, -0.0437484085559845, 0.05418914556503296, 0.02517758496105671, -0.050389401614665985, 0.0031365007162094116, 0.013932395726442337, 0.016277283430099487, -0.05511340871453285, -0.03816860169172287, 0.009747542440891266, -0.019888751208782196, -0.038784775882959366, -0.0011414209147915244, 0.029627736657857895, 0.010474970564246178, -0.02757382020354271, 0.007428328972309828, -0.06959351152181625, -0.01069747842848301, 0.1058451309800148, -0.029798895120620728, -0.008198547177016735, -0.08099275082349777, 0.01616602949798107, 0.046076178550720215, 0.027248617261648178, 0.010278137400746346, 0.025246048346161842, 0.019666243344545364, 0.0070432196371257305, -0.04689774289727211, 0.022558841854333878, 0.020316651090979576, 0.03296534717082977, -0.018451010808348656, -0.02512623742222786, -0.0026230216026306152, -0.07181859016418457, 0.04881473258137703, -0.04439881443977356, -0.03428327664732933, 0.011116819456219673, -0.02774498052895069, -0.021805739030241966, 0.02305520512163639, -0.008686352521181107, -0.020830130204558372, 0.08160892128944397, -0.013906721957027912, 0.052785634994506836, 0.09865642338991165, 0.025964919477701187, 0.05110827088356018, 0.015455716289579868, 0.02076166495680809, 0.056619614362716675, 0.010397949256002903, -0.013033807277679443, -0.014094997197389603, 0.026957646012306213, -0.03186992555856705, 0.024133510887622833, 0.011878480203449726, 0.041489098221063614, 0.02976466342806816, -0.021412072703242302, 0.01954643242061138, -0.022901160642504692, -0.018485242500901222, 0.04025674983859062, -0.02474968507885933, -0.006354302167892456, -0.01323064137250185, 0.006679505575448275, -0.05473685637116432, 0.009576382115483284, 0.0052759964019060135, -0.011005565524101257, -0.03560120612382889, -0.06976467370986938, -0.06137784942984581, 0.03438597545027733, 0.016636718064546585, 0.03857938572764397, 0.02858366258442402, 0.05381259322166443, 0.031596072018146515, 0.01527599897235632, -0.005464272107928991, 0.040701765567064285, -0.02709457278251648, -0.013786910101771355, 0.04600771516561508, -0.015113397501409054, 0.024030815809965134, 0.03486522287130356, 0.018074458464980125, -0.06997006386518478, 0.057783499360084534, 0.007650836370885372, -0.010954217985272408, 0.020008563995361328, -0.03491656854748726, 0.00022585051192436367, -0.004638426471501589, 0.04652119427919388, -0.017133081331849098, 0.029884474352002144, 0.0006589646800421178, -0.024629874154925346, 0.03621738404035568, 0.00015952614194247872, -0.0431322306394577, 0.006495508830994368, -0.005934961140155792, -0.1008472666144371, 0.07832265645265579, -0.008078735321760178, 0.008382543921470642, -0.018776213750243187, -0.07394097000360489, -0.005053488537669182, 0.04706890508532524, -0.004758238326758146, -0.023294828832149506, -0.01596919633448124, -0.006478392984718084, 0.04881473258137703, 0.0169790368527174, -0.04422765225172043, 0.0022207964211702347, -0.044809598475694656, 0.011296536773443222, 0.028189994394779205, -0.016037659719586372, -0.02618742734193802, -0.004227643366903067, 0.06278136372566223, 0.010064187459647655, 0.06911426782608032, -0.06510913372039795, -0.024236205965280533, 0.024955077096819878, 0.17143350839614868, -0.024424482136964798, -0.011561834253370762, -0.051827143877744675, 0.018331198021769524, 0.0019426620565354824, 0.019460853189229965, 0.026170311495661736, 0.011673088185489178, 0.03912709653377533, -0.04255028814077377, 0.06695765256881714, 0.05651691555976868, -0.08920840919017792, -0.0288575179874897, -0.015678223222494125, -0.03632007911801338, 0.043474551290273666, 0.02055627480149269, 0.06630724668502808, 0.02517758496105671, -0.014574244618415833, 0.004706890322268009, 0.00804878305643797, 0.010466412641108036, 0.041489098221063614, -0.0049850246869027615, 0.04306376725435257, -0.012648697942495346, 0.029679084196686745, 0.0243217870593071, -0.02012837491929531, -0.012015407904982567, 0.05151905491948128, 0.05877622589468956, 0.07079163193702698, -0.05062902346253395, -0.001735131023451686, 0.012657255865633488, -0.01632007211446762, -0.005793754011392593, 0.04556269943714142, -0.00531022809445858, -0.04754815250635147, -0.0041292267851531506, -0.018673518672585487, -0.004792470484972, -0.032126665115356445, 0.013564402237534523, -0.029028676450252533, 0.009430896490812302, -0.04172872379422188, -0.0023641427978873253, 0.042242202907800674, -0.021805739030241966, 0.029559271410107613, 0.03443732112646103, -0.03768935427069664, 0.005900728981941938, 0.0266666729003191, -0.03133933246135712, 0.00863928347826004, 0.0171074066311121, 0.053538739681243896, 0.04337185621261597, 0.01341891661286354, 0.007946087047457695, -0.013427474536001682, 0.032023970037698746, -0.027454007416963577, 0.009747542440891266, 0.01402653381228447, 0.03714164346456528, 0.025571251288056374, -0.008262732066214085, -0.021531883627176285, 0.024903729557991028, 0.009593498893082142, 0.015310230664908886, -0.0033333341125398874, -0.012836974114179611, 0.0336499884724617, -0.024407366290688515, -0.008399659767746925, 0.011313652619719505, 0.002777065383270383, 0.057201556861400604, 0.012845532037317753, -0.039845965802669525, -0.016816435381770134, -0.029456576332449913, -0.00878904853016138, -0.0017426192061975598, 0.030055634677410126, -0.040017127990722656, 0.006392812822014093, -0.09133078902959824, 0.04426188766956329, 0.007608046755194664, -0.03019256331026554, -0.017817718908190727, 0.06524606049060822, 0.019614895805716515, -0.027642283588647842, -0.0023384687956422567, 0.03044930286705494, 0.027608051896095276, -0.005900728981941938, 0.0025459998287260532, -0.011305094696581364, -0.030261026695370674, -0.054908014833927155, -0.02363714762032032, -0.009944375604391098, 0.033461712300777435, 0.011142493225634098, -0.06949082016944885, -0.009302526712417603, 0.012605908326804638, -0.004989303648471832, -0.04189988225698471, -0.023448871448636055, -0.024304671213030815, 0.005301670171320438, 0.03291400149464607, -0.04830125346779823, -0.02048780955374241, -0.019392387941479683, -0.029456576332449913, -0.016559695824980736, -0.0036563980393111706, -0.04806163161993027, -0.01778348721563816, 0.0527171716094017, 0.026170311495661736, 0.04056483879685402, -0.00499358307570219, -0.036011990159749985, 0.00039527181070297956, 0.025913571938872337, -0.04258451983332634, -0.08441594243049622, 0.0435430146753788, 0.0034681225661188364, -0.037655122578144073, 0.05169021338224411, -0.02103552035987377, -0.06059051677584648, -0.004276851657778025, 0.047616615891456604, 0.01533590443432331, 0.12953361868858337, 0.04073599725961685, 0.03305092826485634, -0.00896876584738493, -0.052306391298770905, 0.04795893281698227, -0.062096722424030304, -0.026341469958424568, -0.006816433276981115, 0.005438597872853279, 0.02194266766309738, 0.004783912096172571, 0.011082587763667107, -0.014856657944619656, -0.016337187960743904, 0.06500643491744995, 0.015250325202941895, 0.024955077096819878, 0.012956785969436169, -0.020932825282216072, 0.0193752720952034, -0.022079594433307648, 0.006379975937306881, -0.03296534717082977, -0.022712886333465576, 0.03284553810954094, -0.008386823348701, -0.017663676291704178, -0.04039367660880089, -0.013641424477100372, -0.024903729557991028, -0.10132651776075363, -0.007946087047457695, -0.014154903590679169, -0.007518187630921602, 0.046760816127061844, -0.02358580008149147, -0.016285840421915054, -0.007368423044681549, 0.024903729557991028, -0.019512200728058815, 0.06849808990955353, -0.04388533532619476, 0.01816003955900669, -0.027505356818437576, -0.038339763879776, -0.004015833139419556, -0.03163030371069908, 0.00235558464191854, -0.08325205743312836, -0.010397949256002903, -0.07442021369934082, 0.020162606611847878, 0.04689774289727211, 0.027916138991713524, -0.008771931752562523, 0.027488240972161293, -0.011253747157752514, 0.029319647699594498, -0.031219519674777985, -0.04611041024327278, 0.07661105692386627, 0.04652119427919388, -0.00869063101708889, 0.07476253807544708, -0.044433046132326126, 0.05521610379219055, -0.04508345201611519, 0.011801457963883877, -0.02575952745974064, 0.000609756272751838, -0.019614895805716515, 0.050012849271297455, -0.020898593589663506, -0.03714164346456528, -0.024184858426451683, -0.00918271578848362, -0.0430295355618, -0.0004963629762642086, -0.01412922888994217, 0.047822006046772, -0.03311939164996147, 0.041283708065748215, 0.053538739681243896, 0.015087723731994629, -0.02348310500383377, 0.05127943307161331, -0.060761675238609314, 0.02581087499856949, -0.0015971334651112556, 0.0019394528353586793, -0.02096705697476864, -0.013153619132936, -0.07106548547744751, 0.012374842539429665, -0.05706462636590004, -0.018194271251559258, -0.022336333990097046, 0.009978607296943665, 0.006469835061579943, 0.003363287076354027, 0.02971331588923931, -0.026307238265872, -0.021959783509373665, -0.05583227798342705, 0.019084300845861435, -0.05651691555976868, 0.036011990159749985, 0.02586222253739834, -0.0024625593796372414, 0.004298246931284666, 0.02661532536149025, -0.034950800240039825, 0.02091570943593979, 0.005053488537669182, -0.023602915927767754, -0.041489098221063614, -0.04446727782487869, -0.05148482322692871, -0.052203692495822906, -0.0486435741186142, -0.012272147461771965, -0.0012826276943087578, -0.015216093510389328, 0.011904153972864151, -0.024304671213030815, 0.00905434601008892, -0.0216688122600317, -0.012100987136363983, -0.0050919996574521065, -0.004608473740518093, 0.008763373829424381, 0.017090290784835815, 0.041489098221063614, -0.00027345429407432675, 0.030312374234199524, -0.012237914837896824, 0.051827143877744675, -0.02002567984163761, 0.019084300845861435, -0.0027856233064085245, -0.01985451951622963, 0.013350453227758408, 0.03529312089085579, -0.029507923871278763, -0.06356869637966156, 0.0485408790409565, 0.03007275052368641, -0.08510057628154755, 0.0168506670743227, 0.0387505441904068, 0.04237912967801094, -0.044535741209983826, -0.04083869233727455, -0.04754815250635147, 0.014899447560310364, 0.05466839298605919, 0.007274285424500704, -0.0031514770817011595, 0.03248610347509384, -0.04193411394953728, 0.04087292402982712, 0.020248187705874443, 0.0010028885444626212, -0.008181431330740452, 0.033513061702251434, 0.05925547331571579, -0.04648696258664131, 0.025143353268504143, -0.0437484085559845, 0.014856657944619656, 0.04785623773932457, -0.04391956701874733, -0.018331198021769524, -0.03751819580793381, 0.013119387440383434, -0.010124093852937222, -0.02779632806777954, 0.04508345201611519, 0.06654687225818634, 0.011570392176508904, -0.034745410084724426, 0.021206680685281754, 0.025742411613464355, -0.0529225654900074, 0.008699188940227032, -0.0038510921876877546, -0.03940095007419586, -0.002999573014676571, 0.023500220850110054, -0.047616615891456604, -0.019392387941479683, 0.04604194685816765, -0.027334196493029594, -0.05867352709174156, -0.0486435741186142, -0.028070183470845222, -0.0034745410084724426, 0.04525461047887802, -0.008339754305779934, -0.004229783080518246, 0.03549851104617119, -0.008609330281615257, -0.024458713829517365, 0.055284567177295685, -0.038408227264881134, -0.027813443914055824, -0.007060335483402014, -0.008134362287819386, -0.033410362899303436, -0.00783483311533928, 0.0037270013708621264, 0.016816435381770134, -0.018605053424835205, 0.024664105847477913, 0.019306808710098267, 0.0049379561096429825, -0.016713740304112434, 0.02560548484325409, 0.014231924898922443, 0.01884467713534832, -0.030860085040330887, 0.013872490264475346, 0.01323064137250185, 0.018177155405282974, -0.0044159190729260445, -0.03988019749522209, -0.04097561910748482, -0.05110827088356018, -0.03183569386601448, 0.009576382115483284, 0.01043218094855547, -0.07517331838607788, 0.03922979161143303, -0.043953798711299896, 0.03065469302237034, -0.058057352900505066, 0.05206676572561264, -0.01942661963403225, -0.05295679718255997, 0.029251184314489365, 0.0623021125793457, 0.056722309440374374, 0.0384424589574337, 0.04111254960298538, 0.022661538794636726, -0.021258028224110603, -0.034368857741355896, -0.006876339204609394, -0.023243481293320656, 0.02161746472120285, 0.0429268404841423, -0.006568251643329859, 0.08530597388744354, 0.0020282419864088297, 0.003005991457030177, -0.02283269725739956, 0.01256311871111393, -0.0011991873616352677, 0.04025674983859062, -0.014231924898922443, -0.04977322742342949, -0.04949937015771866, -0.06223364919424057, 0.025845106691122055, 0.014719730243086815, 0.006662389263510704, -0.06623878329992294, -0.07099702209234238, -0.0032691494561731815, 0.036011990159749985, 0.04621310532093048, -0.019186997786164284, 0.012717162258923054, -0.05521610379219055, -0.015772361308336258, -0.04737699031829834, -0.04152332991361618, 0.08085581660270691, 0.06062474846839905, 0.0039003004785627127, 0.041557565331459045, -0.03508772701025009, -0.013307662680745125, 0.0019330342765897512, -0.00842533353716135, -0.021309375762939453, -0.019341040402650833, -0.04754815250635147, 0.02586222253739834, -0.04142063483595848, 0.019118532538414, 0.03881900757551193, -0.0027856233064085245, -0.010954217985272408, 0.031168172135949135, -0.023979466408491135, -0.01469405647367239, 0.0219255518168211, -0.06897734105587006, -0.04388533532619476, 0.018245618790388107, 0.005425760988146067, -0.09489090740680695, -0.02517758496105671, 0.0037120250053703785, -0.07585795968770981, -0.00004222161078359932, 0.029559271410107613, 0.05237485468387604, 0.028600778430700302, -0.031236637383699417, 0.001829268760047853, 0.01469405647367239, 0.022216523066163063, -0.004039367660880089, 0.0039152768440544605, 0.031099708750844002, 0.06500643491744995, 0.02384253963828087, -0.015524180606007576, 0.012759951874613762, -0.049533601850271225, 0.00757381459698081, 0.00372058292850852, 0.07784341275691986, -0.0860590711236, -0.0288575179874897, 0.025742411613464355, 0.04436458274722099, 0.019015837460756302, 0.045494236052036285, -0.10002569854259491, 0.04426188766956329, -0.007086009718477726, -0.010706036351621151, 0.04008559137582779, 0.020898593589663506, -0.03163030371069908, 0.03209243342280388, -0.013607192784547806, 0.03428327664732933, -0.03837399557232857, 0.02726573310792446, 0.027881907299160957, -0.036970485001802444, -0.005746685434132814, 0.02683783322572708, -0.03055199794471264, -0.044330351054668427, -0.02981601096689701, 0.021001288667321205, 0.0005519898841157556, -0.007167310453951359, 0.04189988225698471, 0.023928118869662285, 0.01980317197740078, 0.024150626733899117, -0.03147625923156738, 0.03019256331026554, 0.01679931953549385, -0.010706036351621151, -0.006225932389497757, 0.012143777683377266, -0.023226365447044373, 0.046931978315114975, 0.06038512662053108, 0.02629012241959572, 0.026170311495661736, -0.050115544348955154, 0.01788618415594101, 0.04172872379422188, -0.06004280596971512, -0.013752678409218788, -0.018057342618703842, -0.025365861132740974, 0.01894737407565117, -0.011527602560818195, -0.06575953960418701, 0.021412072703242302, 0.03816860169172287, -0.02235344983637333 ]
438
bitmath
to_GB
null
def to_GB(self): return GB(bits=self._bit_value)
(self)
[ 0.035119909793138504, -0.048273056745529175, -0.03976219519972801, -0.007758169434964657, -0.010403095744550228, -0.03273148462176323, -0.03935851901769638, -0.015087432228028774, -0.04416900500655174, -0.08342660218477249, 0.024842962622642517, -0.009721890091896057, 0.03024214319884777, 0.00817446131259203, -0.000560837856028229, 0.026339931413531303, -0.005992081947624683, -0.04416900500655174, 0.05341993644833565, 0.04591827094554901, 0.019511060789227486, -0.01634892262518406, 0.044202644377946854, 0.04484179988503456, -0.007106399163603783, 0.0002554519160185009, -0.004608646966516972, 0.024624304845929146, -0.04144418239593506, -0.015264040790498257, -0.04009859263896942, -0.05180522799491882, -0.001901697600260377, 0.006652262527495623, 0.03485079109668732, -0.01338021457195282, 0.014877183362841606, 0.04699474573135376, -0.059138696640729904, -0.037340134382247925, 0.014994923025369644, -0.06186351925134659, -0.05281442403793335, 0.018148649483919144, 0.056952111423015594, -0.027786441147327423, 0.04904676973819733, 0.022959135472774506, 0.02183220349252224, 0.008510858751833439, 0.03821476548910141, -0.016214363276958466, -0.031554095447063446, 0.04181422293186188, -0.059138696640729904, -0.03328654170036316, 0.011496387422084808, -0.01798045076429844, -0.013439084403216839, 0.05570744350552559, -0.026474490761756897, 0.028930192813277245, 0.03485079109668732, -0.09089463204145432, 0.0434289313852787, 0.0517379492521286, -0.08510859310626984, -0.014532376080751419, 0.027954639866948128, 0.05510192736983299, 0.055505603551864624, -0.009705070406198502, 0.0292497705668211, 0.04941680654883385, -0.07501666247844696, 0.03162137418985367, -0.04178057983517647, -0.006109821144491434, -0.010049878619611263, -0.0006018363055773079, 0.029064752161502838, 0.06741407513618469, 0.04699474573135376, -0.020284775644540787, -0.006349504459649324, -0.026995906606316566, 0.05469824746251106, 0.019393321126699448, 0.03781108930706978, -0.006303249858319759, 0.007796014193445444, -0.023295532912015915, 0.03301742300391197, 0.06479017436504364, 0.06704404205083847, -0.07138357311487198, -0.03205868974328041, 0.04665834829211235, -0.045413676649332047, -0.028476055711507797, -0.04447176307439804, -0.013699792325496674, -0.08759793639183044, 0.00019356001575943083, 0.017408575862646103, 0.040569551289081573, 0.06156076118350029, -0.06182987987995148, -0.011050661094486713, -0.053352657705545425, -0.044572681188583374, -0.002455702517181635, 0.010739493183791637, -0.03175593167543411, -0.00003699059379869141, 0.017173096537590027, 0.017576774582266808, 0.023850589990615845, 0.000025722589271026663, 0.03017486445605755, -0.03162137418985367, 0.017660873010754585, 0.026323111727833748, 0.04268885403871536, 0.02398514933884144, 0.08995271474123001, 0.05614475905895233, 0.0029771188274025917, 0.0028614820912480354, 0.018989644944667816, 0.06304091215133667, -0.0030990629456937313, -0.06152712181210518, -0.027601422742009163, -0.002827842254191637, -0.024994341656565666, -0.014969692565500736, 0.00937708280980587, 0.005903777666389942, 0.0769677683711052, -0.0130858663469553, 0.006387349218130112, 0.048273056745529175, -0.015053792856633663, 0.07104717195034027, 0.013077456504106522, 0.019292403012514114, -0.005315082147717476, -0.02768552303314209, -0.0038643674924969673, 0.005760808940976858, 0.011168399825692177, 0.03298378363251686, 0.013876400887966156, -0.036902815103530884, 0.0384838841855526, -0.007190498523414135, -0.004541367758065462, 0.02331235259771347, 0.0038959046360105276, -0.017576774582266808, 0.08457035571336746, -0.021293967962265015, -0.040300432592630386, -0.027752801775932312, 0.02790418080985546, -0.03394251689314842, -0.0010233845096081495, -0.0032189046032726765, -0.03898848220705986, -0.02731548435986042, -0.041376903653144836, -0.022959135472774506, 0.06108980253338814, -0.007547921035438776, 0.01597047597169876, 0.003395513165742159, 0.03811384737491608, 0.030141225084662437, 0.02553257718682289, 0.06812051683664322, 0.012463530525565147, -0.036936454474925995, -0.03777744993567467, 0.0017587286420166492, -0.01130295917391777, 0.059912413358688354, 0.025229819118976593, -0.005664094351232052, -0.010966561734676361, 0.07259459793567657, 0.013632512651383877, 0.039493076503276825, 0.004093538038432598, 0.02798827923834324, -0.03458167240023613, 0.019998837262392044, 0.013825940899550915, -0.03999767452478409, 0.06949974596500397, -0.008536089211702347, -0.036600057035684586, 0.03535538911819458, -0.04215062037110329, 0.0010202308185398579, -0.01697125844657421, 0.0022496588062494993, -0.06771683692932129, 0.029064752161502838, 0.013893220573663712, -0.03215961158275604, -0.020318415015935898, -0.04951772466301918, 0.037743810564279556, 0.01627323403954506, -0.08033174276351929, -0.022841397672891617, 0.021024849265813828, 0.009335033595561981, 0.0020793576259166002, 0.003723500994965434, -0.02990574575960636, 0.007278802804648876, -0.03488443046808243, -0.011799145489931107, 0.028223758563399315, -0.028963832184672356, -0.03306788206100464, -0.01553315855562687, -0.015440649352967739, 0.024321546778082848, -0.00048619965673424304, -0.021008029580116272, -0.012371021322906017, -0.02861061505973339, 0.014650115743279457, 0.039930395781993866, -0.016592811793088913, 0.004667516797780991, -0.03005712479352951, 0.014902413822710514, 0.00967143103480339, 0.03150363638997078, 0.0705089345574379, 0.005100628361105919, -0.04665834829211235, -0.009906909428536892, -0.014364177361130714, 0.008426759392023087, 0.010310586541891098, -0.07501666247844696, -0.05029144138097763, 0.02568395622074604, -0.007753964513540268, 0.031671833246946335, 0.007106399163603783, -0.06788503378629684, -0.0314195342361927, -0.027752801775932312, 0.03451439365744591, 0.013682972639799118, 0.05267986282706261, 0.022067682817578316, 0.014507146552205086, 0.041646022349596024, 0.06667400151491165, 0.01942696049809456, -0.0023022210225462914, 0.03868572413921356, 0.029148852452635765, 0.0711144506931305, -0.01173186581581831, -0.014355767518281937, -0.00817025639116764, -0.020116576924920082, -0.06105616316199303, 0.028341498225927353, 0.004982889164239168, -0.04706202447414398, -0.039526715874671936, -0.019780179485678673, -0.05183887109160423, 0.009183654561638832, -0.001949003548361361, -0.011967344209551811, 0.07784240692853928, -0.034447114914655685, -0.017147867009043694, 0.03488443046808243, -0.03205868974328041, -0.0337238572537899, 0.017408575862646103, -0.033858418464660645, 0.03565814346075058, 0.05823042243719101, -0.030292604118585587, 0.014355767518281937, -0.0034564852248877287, 0.053722694516181946, 0.07407475262880325, 0.007804424036294222, -0.008847257122397423, -0.014549195766448975, 0.10112112015485764, -0.006677492056041956, 0.060686126351356506, 0.03431255370378494, -0.01597888581454754, -0.01893918402493, 0.03209232911467552, -0.06643852591514587, -0.013354984112083912, 0.07891887426376343, -0.007081169169396162, 0.013523183763027191, -0.03828204795718193, -0.00041681763832457364, 0.020133396610617638, -0.008060927502810955, 0.01549110934138298, -0.014406226575374603, -0.0014286385849118233, -0.0177113339304924, -0.008536089211702347, -0.06832235306501389, -0.04413536563515663, -0.02134442701935768, 0.03254646807909012, 0.012505580671131611, -0.03801292926073074, -0.028862914070487022, -0.01878780499100685, 0.04410172626376152, 0.01619754359126091, -0.017206737771630287, 0.03337064012885094, 0.06085432320833206, 0.04430356249213219, -0.04881129041314125, -0.03797928988933563, 0.054429132491350174, 0.043529849499464035, -0.010243306867778301, 0.015734996646642685, -0.029031112790107727, -0.018131829798221588, -0.04696110263466835, -0.03643186017870903, -0.011370238848030567, -0.002966606291010976, 0.0088556669652462, -0.04965228587388992, 0.002888814313337207, 0.028492877259850502, 0.03286604583263397, -0.04114142432808876, 0.0458846315741539, -0.030107585713267326, 0.017576774582266808, 0.0397285558283329, -0.005088013596832752, 0.007329262793064117, 0.011260909959673882, 0.00452034268528223, 0.0477348193526268, 0.0010764723410829902, -0.04474088177084923, 0.01686192862689495, -0.04955136403441429, 0.027365945279598236, 0.05469824746251106, -0.015238811261951923, -0.01641620323061943, 0.010747903026640415, 0.015726586803793907, 0.02657541073858738, -0.05863410234451294, 0.013825940899550915, -0.03224371001124382, -0.03575906530022621, 0.05200706794857979, 0.006601803004741669, -0.026070814579725266, 0.030191684141755104, 0.04837397485971451, 0.008662237785756588, 0.042789775878190994, -0.004486702848225832, 0.018956003710627556, -0.04699474573135376, -0.03814748674631119, 0.021445346996188164, 0.0010985484113916755, 0.017593594267964363, 0.006971840281039476, 0.018518688157200813, 0.042453374713659286, -0.01184119563549757, 0.06754864007234573, 0.03535538911819458, -0.0010985484113916755, -0.039930395781993866, -0.05089695751667023, 0.0034817152190953493, -0.059475094079971313, -0.0474320612847805, 0.0010628061136230826, 0.04736478254199028, -0.021041668951511383, -0.006109821144491434, -0.06381462514400482, -0.002811022335663438, -0.028661075979471207, 0.04036771133542061, -0.04406808689236641, -0.05237710475921631, 0.01338021457195282, -0.02780326083302498, -0.017475854605436325, -0.004177637863904238, 0.006240175571292639, 0.03935851901769638, 0.007610995788127184, -0.03414435684680939, 0.04585099220275879, 0.0024052427615970373, 0.003117985324934125, 0.040973227471113205, -0.016777830198407173, 0.03828204795718193, 0.014927643351256847, -0.03599454089999199, 0.0048735602758824825, -0.023110514506697655, 0.03707101568579674, -0.020772552117705345, -0.0004225994925945997, -0.016660090535879135, 0.03525446727871895, 0.037676531821489334, 0.0714508518576622, -0.019931556656956673, 0.024439284577965736, -0.03676825761795044, 0.03636458143591881, -0.03636458143591881, -0.06643852591514587, 0.013573642820119858, 0.027416404336690903, 0.002144534606486559, 0.023547831922769547, -0.043159812688827515, 0.0437316857278347, -0.06902878731489182, 0.030107585713267326, -0.039896756410598755, -0.028963832184672356, -0.03485079109668732, 0.026878168806433678, -0.020553892478346825, 0.031083138659596443, 0.01232056226581335, 0.003408128162845969, 0.040266793221235275, -0.056582074612379074, 0.002838354790583253, 0.03579270467162132, 0.028190119192004204, 0.02223588153719902, 0.01942696049809456, -0.018585966899991035, 0.025179360061883926, 0.006374734453856945, -0.0708453357219696, 0.007257778197526932, 0.0011080096010118723, -0.04965228587388992, 0.018855085596442223, -0.0064041693694889545, -0.05997969210147858, 0.008208101615309715, -0.023631930351257324, 0.014095059596002102, 0.020318415015935898, -0.014145518653094769, 0.04258793592453003, 0.01256445050239563, 0.032596927136182785, 0.004629672039300203, -0.04221789911389351, -0.0751512199640274, 0.018115010112524033, -0.022488178685307503, 0.02115940861403942, 0.0008756850147619843, 0.05496736615896225, -0.024102887138724327, -0.028139658272266388, -0.039829473942518234, 0.028812453150749207, -0.01682828925549984, 0.04413536563515663, -0.0853104293346405, -0.029216131195425987, -0.031890492886304855, -0.06418465822935104, 0.006526113487780094, 0.013607283122837543, -0.03821476548910141, -0.011689816601574421, -0.03643186017870903, -0.019107382744550705, -0.056279316544532776, -0.01675260066986084, -0.04262157529592514, 0.02602035365998745, -0.01627323403954506, -0.04322709143161774, -0.019948378205299377, -0.008161846548318863, 0.007253573276102543, 0.04067046940326691, 0.014212798327207565, -0.011437518522143364, -0.0028131247963756323, -0.02004929631948471, 0.029939385131001472, -0.02189948409795761, 0.019023284316062927, -0.00030170660465955734, 0.04332800954580307, -0.03406025841832161, 0.01545746996998787, 0.05853318050503731, -0.012480351142585278, -0.009536871686577797, -0.008451989851891994, -0.010924511589109898, -0.04894585162401199, -0.0477348193526268, -0.04850853234529495, -0.07918799668550491, 0.09755530208349228, 0.03569178655743599, -0.010344225913286209, 0.07898615300655365, -0.007140039000660181, -0.02226952090859413, 0.023043235763907433, 0.0016946028918027878, -0.021731285378336906, 0.01909056305885315, 0.023379633203148842, -0.050829675048589706, 0.05089695751667023, 0.024893421679735184, -0.01030217669904232, 0.06475653499364853, 0.03609546273946762, -0.031453173607587814, -0.01045355573296547, 0.007594175636768341, -0.01449032686650753, 0.03205868974328041, -0.049685925245285034, -0.014481916092336178, -0.058432262390851974, 0.026508130133152008, 0.03868572413921356, 0.05015688017010689, 0.030477622523903847, 0.02645767107605934, 0.026222191751003265, -0.013060636818408966, 0.012791518121957779, -0.008573933504521847, -0.049887765198946, 0.037676531821489334, -0.01274946890771389, -0.01890554465353489, -0.0363309420645237, 0.03609546273946762, -0.0292497705668211, 0.03824840486049652, -7.761126425975817e-7, -0.015835916623473167, 0.006740566808730364, 0.013968910090625286, -0.030477622523903847, -0.02827421762049198, 0.058835938572883606, 0.011462748050689697, 0.050425998866558075, -0.03199141100049019, -0.05607748031616211, -0.06731315702199936, -0.04941680654883385, -0.051468830555677414, -0.007728734984993935, 0.00793057307600975, 0.05903777852654457, 0.03416117653250694, -0.015852736309170723, 0.054496411234140396, 0.054832808673381805, 0.04706202447414398, 0.0434289313852787, -0.058802299201488495, -0.00007030183769529685, -0.05130063369870186, -0.009780759923160076, 0.004339529201388359, -0.0736037939786911, -0.017559954896569252, -0.07649680972099304, -0.03744105249643326, 0.01656758226454258, -0.024943882599473, -0.07972622662782669, -0.018249569460749626, -0.043496210128068924, 0.014507146552205086, -0.02731548435986042, 0.06368006765842438, 0.03653277829289436, -0.0381811261177063, 0.011866425164043903, 0.03495170921087265, 0.01174868643283844, -0.008241740986704826, -0.01900646463036537, 0.0064546288922429085, -0.000573978410102427, -0.033118344843387604, -0.05870138108730316, -0.0011363931698724627, -0.05214162915945053, 0.07091261446475983, 0.000754792126826942, 0.05715395137667656, -0.01893918402493, 0.0363309420645237, 0.02060435339808464, 0.0017892146715894341, -0.018653247505426407, -0.05015688017010689, -0.03249600902199745, 0.01819911040365696, -0.07198908179998398, -0.05241074413061142, -0.03195777162909508, 0.02090711146593094, 0.027365945279598236, -0.060652486979961395, -0.04144418239593506, 0.021664004772901535, 0.03175593167543411, 0.018182290717959404, -0.03555722534656525, -0.04514455795288086, -0.06479017436504364, -0.015407009981572628, -0.040636830031871796, 0.0021172023843973875, -0.003931646700948477, 0.05459732934832573, 0.01934286206960678, 0.00309065287001431, -0.05496736615896225, -0.044606320559978485, -0.03865208476781845, -0.015247221104800701, -0.03488443046808243, -0.06270451098680496, -0.1077817901968956, 0.020217495039105415, -0.00651349825784564, 0.08080270141363144, 0.038046568632125854, 0.0050039142370224, 0.0455818735063076, 0.043866246938705444, -0.034346193075180054, 0.0464901477098465, 0.06324274837970734, 0.0018417768878862262, -0.11551893502473831, 0.009595741517841816, -0.004810485523194075, 0.004194457549601793, -0.026222191751003265, 0.005205752793699503, -0.0034186404664069414, 0.012068264186382294, -0.030343063175678253, 0.07649680972099304, 0.037306495010852814, -0.011479567736387253, 0.022437719628214836, -0.01656758226454258, -0.020318415015935898, -0.054025452584028244, -0.04665834829211235, 0.025616677477955818, 0.054395489394664764, 0.003902212018147111, 0.031856853514909744, 0.010403095744550228, -0.011067480780184269, 0.03562450408935547, 0.01727401651442051, 0.05130063369870186, -0.0868578627705574, 0.024304727092385292, -0.001991053344681859, -0.00013521606160793453, -0.03205868974328041, 0.05607748031616211, -0.07225820422172546, 0.02053707279264927, -0.018468227237462997, 0.007585765793919563, 0.05241074413061142, -0.016483481973409653, -0.018518688157200813, 0.04847489297389984, 0.04507727921009064, 0.02216860093176365, -0.06694312393665314, -0.014170749112963676, 0.025599857792258263, 0.004663311876356602, -0.012152363546192646, 0.01942696049809456, -0.0019458498572930694, 0.0028825069312006235, -0.02839195728302002, 0.0007395491120405495, 0.05607748031616211, 0.013237245380878448, 0.026659509167075157, 0.06145983934402466, -0.005340311676263809, -0.001835469389334321, -0.03340427950024605, 0.013077456504106522, 0.0354226678609848, -0.01597888581454754, -0.00012266685371287167, 0.013548413291573524, 0.02257227897644043, -0.0051258583553135395, 0.06949974596500397, 0.02857697568833828, 0.0437316857278347, 0.02580169588327408, -0.027298664674162865, 0.015625668689608574, -0.042049698531627655, -0.025919435545802116, -0.02891337312757969, -0.044202644377946854, -0.016584401950240135, 0.005781833548098803, -0.027063187211751938, 0.020486613735556602, 0.019729718565940857, -0.003485920140519738 ]
439
bitmath
to_Gb
null
def to_Gb(self): return Gb(bits=self._bit_value)
(self)
[ 0.044223181903362274, -0.037302494049072266, -0.017855368554592133, -0.00007826321962056682, 0.01241397950798273, -0.027751948684453964, 0.000505264091771096, -0.020831262692809105, -0.041039664298295975, -0.057268671691417694, 0.01661829650402069, -0.027250198647379875, 0.017708303406834602, 0.02050253190100193, 0.001483622007071972, 0.0038409805856645107, -0.016107896342873573, -0.06851478666067123, 0.05484643206000328, 0.03657582402229309, 0.011453734710812569, -0.00945538654923439, 0.038998063653707504, 0.025260502472519875, -0.01752663590013981, 0.01696433126926422, 0.013019539415836334, 0.05315086618065834, -0.03692185878753662, -0.027734646573662758, -0.0625976026058197, -0.061490289866924286, 0.013417479582130909, -0.0041783638298511505, 0.012872475199401379, -0.02020840160548687, 0.01117690745741129, 0.06280522048473358, -0.06290902942419052, -0.035952962934970856, -0.004022648558020592, -0.037510115653276443, -0.04768352210521698, 0.010251265950500965, 0.06591953337192535, -0.035710737109184265, 0.028080681338906288, 0.041731733828783035, -0.028288302943110466, 0.015614796429872513, 0.03851361572742462, -0.008585975505411625, -0.031385309994220734, 0.038894254714250565, -0.037648528814315796, -0.022769056260585785, 0.021869366988539696, 0.012189057655632496, 0.005990718491375446, 0.04373873397707939, -0.036506615579128265, 0.038894254714250565, -0.00023533034254796803, -0.12734061479568481, 0.06740747392177582, 0.03543391078710556, -0.06277061998844147, -0.01243993267416954, 0.018633946776390076, 0.05699184536933899, 0.04221618175506592, 0.00259958254173398, 0.032267697155475616, 0.034222789108753204, -0.04415397346019745, 0.016246309503912926, -0.017578542232513428, 0.004174038302153349, 0.013763513416051865, 0.0028677589725703, 0.04802955687046051, 0.045019060373306274, 0.049794331192970276, -0.04488064721226692, -0.0022297583054751158, -0.025225898250937462, 0.05429277941584587, -0.0024827958550304174, 0.03612598031759262, -0.02448192611336708, 0.008607602678239346, -0.02697337232530117, 0.03384215384721756, 0.04065902903676033, 0.04159332066774368, -0.04553811252117157, -0.041385699063539505, 0.02673114836215973, -0.025450821965932846, -0.013426129706203938, -0.04519207775592804, 0.007028821390122175, -0.06796113401651382, -0.0008223720942623913, 0.022613340988755226, 0.04211237281560898, 0.060902033001184464, -0.04792574793100357, -0.010225312784314156, -0.059206463396549225, -0.05678422376513481, 0.008650857023894787, 0.012803268618881702, -0.02657543309032917, 0.00250009773299098, 0.021436823531985283, 0.01473240926861763, 0.020277608186006546, 0.012820569798350334, 0.04439619928598404, -0.021523332223296165, 0.02225000411272049, 0.04231999069452286, 0.042769838124513626, 0.03612598031759262, 0.10360266268253326, 0.03256182372570038, -0.009697610512375832, -0.009637054987251759, 0.013927879743278027, 0.06643857806921005, -0.016133848577737808, -0.07086782157421112, -0.011851673945784569, 0.01596948131918907, -0.01596948131918907, -0.03351341933012009, 0.018893470987677574, 0.003605244681239128, 0.07252878695726395, -0.01015610620379448, 0.021627143025398254, 0.060936637222766876, -0.010502140037715435, 0.05097084864974022, 0.00863355491310358, 0.04034759849309921, 0.023184295743703842, -0.047060661017894745, -0.03294246271252632, 0.01371160801500082, 0.020831262692809105, 0.07488181442022324, -0.005164561793208122, -0.044430799782276154, 0.06675001233816147, -0.02647162228822708, -0.029880059882998466, 0.029551327228546143, -0.02150603011250496, -0.005921511445194483, 0.08934605121612549, 0.0009305077837780118, -0.013927879743278027, -0.01371160801500082, 0.006591952871531248, -0.004511422012001276, -0.0034127631224691868, -0.013728910125792027, -0.009273719042539597, -0.002173527842387557, -0.012699457816779613, -0.0016998933861032128, 0.04488064721226692, 0.002621209714561701, 0.048894643783569336, -0.0054370635189116, 0.044430799782276154, 0.048652417957782745, -0.0020351139828562737, 0.06931066513061523, 0.0024827958550304174, -0.026090985164046288, -0.017604494467377663, 0.018893470987677574, -0.01697298139333725, 0.06609255075454712, 0.023755252361297607, -0.007292672526091337, -0.015502335503697395, 0.06654239445924759, 0.022007780149579048, 0.015943529084324837, 0.004481143783777952, 0.010026343166828156, -0.03311548009514809, 0.013625099323689938, 0.020416023209691048, -0.04135109484195709, 0.10187248885631561, -0.021990478038787842, -0.025156691670417786, 0.011540243402123451, -0.030572127550840378, -0.005082378629595041, -0.0014630762161687016, 0.011765165254473686, -0.05495024472475052, 0.05505405366420746, -0.008066924288868904, -0.02358223684132099, 0.009887929074466228, -0.034067075699567795, 0.016687503084540367, 0.014663202688097954, -0.06844557821750641, -0.003659312380477786, 0.010069597512483597, 0.0015463406452909112, 0.02005268633365631, 0.014040340669453144, -0.03612598031759262, 0.015147650614380836, -0.012388027273118496, -0.009602450765669346, 0.029551327228546143, -0.03584915027022362, -0.010631903074681759, -0.00973221380263567, -0.01500923652201891, 0.04886003956198692, 0.0019421173492446542, 0.004956941120326519, -0.023080486804246902, -0.04131649434566498, 0.0062805223278701305, 0.03619518503546715, -0.010709760710597038, -0.010519442148506641, -0.021471427753567696, -0.004792574793100357, 0.02548542432487011, 0.006038298364728689, 0.07965709269046783, 0.00034360121935606003, -0.05259720981121063, -0.012422630563378334, -0.0016642085975036025, 0.016696153208613396, 0.0018783173291012645, -0.05235498771071434, -0.05481182783842087, 0.0003873961977660656, -0.0022816634736955166, 0.022128891199827194, 0.018685851246118546, -0.0739821270108223, -0.028305603191256523, -0.022215399891138077, 0.025744950398802757, 0.021869366988539696, 0.04415397346019745, 0.007366204634308815, -0.00836105365306139, 0.04360032081604004, 0.045365095138549805, 0.029499422758817673, -0.0001286139158764854, 0.041385699063539505, 0.047406695783138275, 0.09986549615859985, 0.0072364420630037785, -0.018426325172185898, -0.02129841037094593, -0.03304627537727356, -0.06886082142591476, 0.056126758456230164, 0.01827060990035534, -0.021038884297013283, -0.056715019047260284, -0.017552588135004044, -0.05668041482567787, -0.0033067900221794844, 0.013183905743062496, -0.04405016452074051, 0.09605911374092102, -0.013875974342226982, 0.007569499779492617, 0.021990478038787842, -0.0017085442086681724, -0.016713455319404602, 0.01122016180306673, -0.037648528814315796, 0.034274693578481674, 0.05439658835530281, -0.04148951172828674, 0.027146389707922935, 0.009066098369657993, 0.032319601625204086, 0.08311743289232254, 0.012561044655740261, -0.027232898399233818, -0.052285779267549515, 0.08664698153734207, -0.019533634185791016, 0.044015560299158096, 0.060140758752822876, -0.03962092474102974, -0.014559391885995865, 0.04685303941369057, -0.04654160887002945, -0.017639096826314926, 0.05533087998628616, 0.010528093203902245, 0.009922533296048641, -0.024205097928643227, 0.014083595015108585, 0.025744950398802757, -0.011938182637095451, 0.0017864019609987736, -0.019845066592097282, 0.021765556186437607, -0.010528093203902245, -0.006232942454516888, -0.09384449571371078, -0.0464031957089901, -0.035157084465026855, 0.045261282473802567, 0.004809876438230276, -0.037890754640102386, -0.036956459283828735, -0.02532970905303955, 0.018599342554807663, 0.0001590946631040424, -0.004848805256187916, 0.03543391078710556, 0.059794723987579346, 0.03256182372570038, -0.049240678548812866, -0.04117807745933533, 0.03768313303589821, 0.04664542153477669, -0.001516062649898231, 0.021471427753567696, -0.03827138990163803, -0.011912230402231216, -0.03233690187335014, -0.03105657733976841, -0.017993781715631485, -0.029343707486987114, 0.016203055158257484, -0.049448300153017044, 0.003341393545269966, 0.002536863787099719, 0.005480317864567041, -0.05055560916662216, 0.046160973608493805, -0.01577916368842125, 0.02443001978099346, 0.04816797003149986, 0.008127479813992977, -0.002947779605165124, 0.0335480235517025, -0.0029283149633556604, 0.03233690187335014, 0.005553849972784519, -0.03768313303589821, -0.0076819611713290215, -0.027111785486340523, 0.0066698105074465275, 0.049690522253513336, -0.0024698197375983, -0.03420548886060715, 0.004143760539591312, 0.0046411845833063126, 0.04757971316576004, -0.07640437036752701, 0.02280365861952305, -0.04896385222673416, -0.03996695950627327, 0.0301049817353487, -0.016436628997325897, -0.03493215888738632, 0.02468954585492611, 0.027959570288658142, 0.011678656563162804, 0.04249300807714462, -0.005908535327762365, 0.0053375787101686, -0.037856150418519974, -0.02956862933933735, 0.003579291980713606, -0.01269080676138401, 0.02354763261973858, -0.008179385215044022, 0.004234594292938709, 0.03176594525575638, -0.038444407284259796, 0.04290825128555298, 0.03657582402229309, 0.014403676614165306, 0.0006185362581163645, -0.045122869312763214, 0.0032894883770495653, -0.04325428605079651, -0.04027839004993439, 0.0028050404507666826, 0.04245840758085251, -0.03533009812235832, 0.019222203642129898, -0.060452189296483994, 0.020329514518380165, -0.03193896263837814, 0.04055521637201309, -0.03448231518268585, -0.05650739744305611, -0.00973221380263567, -0.04609176516532898, -0.027284802868962288, 0.014498836360871792, -0.012431281618773937, 0.045711129903793335, 0.014152801595628262, -0.018876170739531517, 0.032682936638593674, 0.01856473833322525, 0.0012403166620060802, 0.03584915027022362, -0.02673114836215973, 0.03503597155213356, 0.01383271999657154, 0.0003233257739339024, 0.013183905743062496, -0.029828155413269997, 0.026644639670848846, -0.036956459283828735, -0.016938377171754837, 0.007764144334942102, 0.01592622697353363, 0.04834098741412163, 0.06688842922449112, -0.018651247024536133, 0.01667020097374916, -0.017838066443800926, 0.03533009812235832, -0.036956459283828735, -0.04886003956198692, 0.030987368896603584, 0.022561434656381607, 0.004515747539699078, 0.03283865377306938, -0.033617228269577026, 0.063912533223629, -0.06467380374670029, 0.03121229261159897, -0.03420548886060715, -0.051835935562849045, -0.03567613288760185, 0.041039664298295975, -0.031627532094717026, 0.004667137283831835, 0.010190709494054317, 0.004450866021215916, 0.028236396610736847, -0.06640397757291794, 0.006129132118076086, 0.062043946236371994, 0.03148911893367767, 0.000030024555599084124, 0.024447321891784668, 0.010502140037715435, 0.0012413979275152087, 0.018201403319835663, -0.05792613700032234, -0.019429825246334076, -0.002275175414979458, -0.032717540860176086, 0.038305994123220444, 0.024153193458914757, -0.06533127278089523, 0.02289016731083393, -0.015000586397945881, 0.004749320447444916, 0.016064641997218132, -0.01500923652201891, 0.04975973069667816, -0.005999369081109762, 0.023461123928427696, -0.0029737320728600025, -0.03121229261159897, -0.08588571101427078, 0.042873647063970566, -0.02901497483253479, -0.001080816495232284, 0.00040091315167956054, 0.04450000822544098, -0.024654941633343697, -0.03404977172613144, -0.030848955735564232, 0.049794331192970276, -0.01647988334298134, 0.05733788013458252, -0.11343003809452057, -0.05429277941584587, -0.0387212373316288, -0.062043946236371994, 0.0026449994184076786, 0.02359953708946705, -0.04723367840051651, -0.004952615592628717, -0.046507008373737335, -0.00783767644315958, -0.02423970028758049, 0.00955919735133648, -0.03851361572742462, 0.0029066880233585835, -0.00124464207328856, -0.009438085369765759, -0.031177688390016556, -0.005982067435979843, 0.013953831978142262, 0.021609840914607048, -0.01885886862874031, -0.0063627054914832115, -0.014706457033753395, -0.023374615237116814, 0.03688725456595421, -0.03508787602186203, 0.00679524801671505, 0.009861976839601994, 0.03328849747776985, -0.02901497483253479, 0.01425661239773035, 0.05533087998628616, -0.030935464426875114, -0.01249183714389801, -0.008027995005249977, 0.004762296564877033, -0.0713522657752037, -0.019672049209475517, -0.03699106350541115, -0.08657777309417725, 0.10630173236131668, 0.045918747782707214, -0.01747473143041134, 0.08021074533462524, 0.0055711520835757256, -0.02190396934747696, 0.020191099494695663, -0.0019140021177008748, -0.02283826284110546, 0.010450235567986965, 0.009005541913211346, -0.024049382656812668, 0.04166252538561821, 0.03110848180949688, 0.003064566059038043, 0.03216388449072838, 0.026402415707707405, -0.03193896263837814, -0.023028580471873283, -0.008399982005357742, 0.010026343166828156, 0.02230190858244896, -0.0387212373316288, -0.003064566059038043, -0.027907663956284523, 0.04072823375463486, 0.03688725456595421, 0.042873647063970566, 0.005527897737920284, 0.01588297262787819, 0.0008877941872924566, -0.017085442319512367, -0.005670636892318726, 0.0051688868552446365, -0.059794723987579346, 0.039101872593164444, -0.014888124540448189, -0.004199991002678871, -0.0371294766664505, 0.0289111640304327, -0.007902557961642742, 0.03982854634523392, 0.0030710541177541018, -0.002504423027858138, -0.011938182637095451, -0.0037090550176799297, -0.0057614706456661224, -0.02413589134812355, 0.06775350868701935, 0.024914467707276344, 0.02917069010436535, -0.04017458111047745, -0.046507008373737335, -0.04861781746149063, -0.047648921608924866, -0.055019449442625046, -0.003687427844852209, 0.027613535523414612, 0.075850710272789, 0.018893470987677574, -0.007422435097396374, 0.06477762013673782, 0.03550311550498009, 0.04834098741412163, 0.047752730548381805, -0.04027839004993439, 0.00671739038079977, -0.055227071046829224, -0.03150641918182373, -0.0075997780077159405, -0.09183749556541443, -0.031783249229192734, -0.10602490603923798, -0.02766543999314308, -0.0012327471049502492, -0.0127946175634861, -0.06612715125083923, -0.01149698905646801, -0.04380793869495392, 0.013754862360656261, -0.02991466410458088, 0.06567730754613876, 0.03782154619693756, -0.06346268951892853, -0.002850457327440381, 0.045122869312763214, 0.007963113486766815, 0.03667963296175003, -0.005804724991321564, -0.006479491945356131, 0.02652352675795555, -0.04394635185599327, -0.05283943563699722, 0.002223270246759057, -0.06965669989585876, 0.0835326761007309, 0.00028764098533429205, 0.06529666483402252, -0.009887929074466228, 0.012085246853530407, 0.013780815526843071, -0.004202153533697128, -0.014784314669668674, -0.045365095138549805, -0.010631903074681759, 0.017388222739100456, -0.056715019047260284, -0.07232116162776947, -0.017889972776174545, 0.03100467100739479, 0.03264833241701126, -0.0761275440454483, -0.047302886843681335, -0.018893470987677574, 0.01500923652201891, 0.02856512926518917, -0.06332427263259888, -0.04339269921183586, -0.05744168907403946, -0.0251912958920002, -0.012388027273118496, -0.00033900546259246767, -0.012725410982966423, 0.03161023184657097, 0.01840902306139469, -0.024845261126756668, -0.04052061215043068, -0.012145803309977055, -0.025900665670633316, -0.012111200019717216, -0.05311626195907593, -0.05325467512011528, -0.09661277383565903, 0.0027855760417878628, 0.01622900739312172, 0.08602412045001984, 0.010770317167043686, -0.0019832090474665165, 0.04221618175506592, 0.06401634216308594, -0.030001172795891762, 0.04328888654708862, 0.07225196063518524, -0.031021973118185997, -0.09398291260004044, 0.009983088821172714, -0.011047144420444965, 0.007820374332368374, -0.033876754343509674, 0.039793942123651505, -0.018339816480875015, -0.001112716505303979, -0.0319562666118145, 0.071075439453125, 0.03975933790206909, -0.011566195636987686, 0.0036009191535413265, -0.0050521004013717175, -0.024257002398371696, -0.055573105812072754, -0.05550389736890793, 0.027457820251584053, 0.035416606813669205, 0.0023162669967859983, 0.02896306850016117, 0.001986453076824546, -0.03328849747776985, 0.02159253880381584, 0.019550936296582222, 0.08228695392608643, -0.09162987768650055, -0.012586996890604496, -0.013157953508198261, -0.0006136701558716595, -0.03190436214208603, 0.056126758456230164, -0.07446657866239548, 0.024603037163615227, -0.03564153239130974, -0.0009602451464161277, 0.07578150928020477, -0.01201604027301073, -0.0065876273438334465, 0.019499031826853752, 0.04498445615172386, 0.0014803778612986207, -0.0570264495909214, -0.01722385548055172, 0.016116546466946602, -0.0217482540756464, -0.019689351320266724, 0.002523887436836958, 0.0031402611639350653, 0.0032743492629379034, -0.04453461244702339, -0.011367226019501686, 0.05969091132283211, 0.02119459956884384, 0.02314969338476658, 0.07315164804458618, -0.004288662225008011, -0.014420978724956512, -0.03795995935797691, -0.0034257392399013042, 0.004909361246973276, 0.01583106815814972, -0.010372377932071686, -0.010372377932071686, 0.009983088821172714, 0.0000487962388433516, 0.08159488439559937, -0.002763948868960142, 0.03105657733976841, 0.01911839470267296, -0.031229592859745026, 0.02378985658288002, -0.032233092933893204, -0.007132631726562977, -0.018443627282977104, -0.03166213631629944, -0.0015268762363120914, -0.02060634084045887, -0.03475914150476456, 0.017578542232513428, -0.001884805504232645, -0.00853839609771967 ]
440
bitmath
to_GiB
null
def to_GiB(self): return GiB(bits=self._bit_value)
(self)
[ 0.05911073833703995, -0.04699285700917244, -0.011369530111551285, -0.006681064143776894, 0.046524010598659515, -0.026652125641703606, -0.004769612569361925, -0.007258106023073196, -0.022576767951250076, -0.042665041983127594, 0.023262005299329758, -0.025443945080041885, 0.0069921258836984634, 0.024109534919261932, 0.00501305190846324, -0.0013141229283064604, -0.026688192039728165, -0.05831730365753174, 0.05016658455133438, 0.03804870322346687, 0.024578381329774857, -0.008010965771973133, 0.04919282719492912, 0.03992409259080887, -0.012496565468609333, -0.01033265795558691, 0.04515353590250015, 0.0360831543803215, -0.020160403102636337, -0.007488021161407232, -0.05990416929125786, -0.06066153571009636, 0.01990794762969017, -0.009701518341898918, 0.004176792223006487, -0.013335078954696655, -0.0007556770578958094, 0.05409768596291542, -0.04876004531979561, -0.020340729504823685, -0.004253430292010307, -0.03837329149246216, -0.02338823303580284, -0.01756371557712555, 0.04868791624903679, -0.029483238235116005, 0.018303049728274345, 0.024542316794395447, -0.02070138044655323, 0.007262614089995623, 0.0396716371178627, 0.011540839448571205, -0.04284536466002464, 0.05965171381831169, -0.02629147469997406, 0.03146681934595108, 0.02953733503818512, -0.03175533935427666, -0.006929012015461922, 0.035830698907375336, -0.03101600520312786, 0.0010402534389868379, 0.023929208517074585, -0.10343477129936218, 0.061779554933309555, 0.048868242651224136, -0.05435014143586159, -0.019853850826621056, 0.004055072087794542, 0.04522566497325897, 0.04392731934785843, 0.0018922919407486916, 0.0064466409385204315, 0.02456034906208515, -0.07371710985898972, 0.052078038454055786, 0.011928539723157883, -0.004007736686617136, 0.024307893589138985, -0.0037192157469689846, 0.048940371721982956, 0.04464862123131752, 0.0574156753718853, -0.007902770303189754, 0.015679312869906425, 0.003374343039467931, 0.07126468420028687, 0.012045751325786114, 0.014849814586341381, -0.032765164971351624, 0.026489833369851112, -0.01587766967713833, 0.02062925137579441, 0.04529779404401779, 0.011513790115714073, -0.05424194410443306, -0.041114240884780884, -0.0028220959939062595, -0.05986810475587845, -0.010170364752411842, -0.05359277129173279, -0.008493336848914623, -0.019348938018083572, -0.0005652080872096121, 0.01231623999774456, 0.05355670675635338, 0.046704333275556564, -0.02780620940029621, 0.006261806935071945, -0.03963556885719299, -0.014047365635633469, 0.022522669285535812, -0.008015473373234272, -0.04223226010799408, 0.025317717343568802, 0.00716794328764081, 0.026616061106324196, 0.01573340967297554, 0.031142234802246094, 0.048940371721982956, -0.04291749745607376, 0.020448924973607063, 0.0241816658526659, 0.052078038454055786, 0.03406351059675217, 0.08208422362804413, 0.02391117624938488, -0.0006908724899403751, -0.009340866468846798, -0.005436817184090614, 0.07357285171747208, -0.004309782292693853, -0.0683794766664505, 0.021242357790470123, 0.007208516355603933, 0.005698289256542921, 0.00369216687977314, 0.012541646137833595, 0.006924503482878208, 0.10920519381761551, -0.016021931543946266, 0.0020624741446226835, 0.06964175403118134, 0.021260390058159828, 0.06336642056703568, 0.0038927793502807617, 0.05907467007637024, 0.04641581326723099, -0.008186782710254192, -0.05914680287241936, 0.05997629836201668, -0.0190784502774477, 0.061779554933309555, 0.010476917959749699, -0.03415367007255554, 0.06030088663101196, -0.018501408398151398, -0.004481091629713774, 0.027968503534793854, -0.037074945867061615, -0.005531488452106714, 0.061635296791791916, 0.02043089270591736, -0.04169128090143204, -0.022198082879185677, 0.01584160514175892, -0.020539088174700737, 0.019312873482704163, -0.007938834838569164, -0.0033315157052129507, -0.010170364752411842, -0.03366679325699806, -0.017951415851712227, 0.007271630689501762, 0.0324946753680706, 0.034243833273649216, 0.004981494974344969, 0.05889434739947319, 0.05824517458677292, 0.01877189613878727, 0.05027478188276291, -0.031556982547044754, -0.04800267890095711, -0.002558369655162096, 0.02694064751267433, 0.011549855582416058, 0.08395960927009583, 0.0018539727898314595, -0.009854794479906559, -0.026273442432284355, 0.055432096123695374, 0.026850484311580658, 0.008394157513976097, 0.010395771823823452, 0.016517827287316322, -0.009962989948689938, 0.005035592708736658, 0.02953733503818512, -0.052041973918676376, 0.08453664928674698, -0.019889915362000465, -0.0483633317053318, 0.015489970333874226, -0.03963556885719299, -0.02273906022310257, -0.009557257406413555, -0.010531015694141388, -0.04857972264289856, 0.05972384288907051, -0.009584306739270687, -0.02636360563337803, -0.006572868674993515, -0.04944528266787529, 0.013587535358965397, 0.007127369754016399, -0.052979666739702225, -0.005022068507969379, 0.023893143981695175, 0.001129852724261582, -0.009165049530565739, 0.005004035774618387, -0.044215839356184006, -0.01811370812356472, -0.005621651187539101, 0.006717129144817591, 0.016274387016892433, -0.0020771257113665342, -0.0007748366333544254, -0.010684292763471603, -0.0009213511948473752, 0.05640585348010063, 0.02784227579832077, 0.016824379563331604, -0.019727623090147972, -0.03736346587538719, 0.01880796253681183, 0.025768529623746872, -0.030583225190639496, 0.006509754806756973, 0.009611355140805244, -0.016761265695095062, 0.023748883977532387, 0.009476111270487309, 0.07407776266336441, -0.01212689746171236, -0.04223226010799408, -0.03233238309621811, 0.023857079446315765, 0.014579325914382935, -0.00041305835475213826, -0.04324208199977875, -0.07075977325439453, 0.0034802844747900963, -0.017058802768588066, 0.05279934033751488, 0.015517019666731358, -0.07573676109313965, -0.037038881331682205, -0.0116129694506526, 0.040933914482593536, 0.048940371721982956, 0.026543930172920227, -0.0033270076382905245, -0.0494813472032547, 0.046524010598659515, 0.06628769636154175, 0.022612832486629486, 0.0015801031840965152, 0.027265233919024467, 0.06300576776266098, 0.13437864184379578, -0.015057189390063286, -0.02867177315056324, -0.01773502491414547, 0.0030024214647710323, -0.07324826717376709, 0.06300576776266098, 0.038625746965408325, -0.045838773250579834, -0.0649893507361412, -0.03175533935427666, -0.048976436257362366, 0.006721637211740017, 0.0009681231458671391, -0.041727349162101746, 0.09643813967704773, 0.002756727859377861, 0.022270213812589645, 0.02318987436592579, 0.0009782664710655808, 0.00971053447574377, 0.04295356199145317, -0.07194992154836655, 0.03244057670235634, 0.0472092479467392, -0.043314214795827866, 0.0030858220998197794, 0.02908652275800705, 0.024452153593301773, 0.08482517302036285, 0.009800697676837444, -0.0010284194722771645, -0.04876004531979561, 0.06336642056703568, -0.0011631002416834235, 0.05755993723869324, 0.04035687446594238, -0.021584976464509964, -0.002187575213611126, 0.026543930172920227, -0.02960946597158909, -0.017374373972415924, 0.05730748176574707, 0.008425714448094368, -0.02232431061565876, -0.044215839356184006, 0.008258913643658161, 0.026814419776201248, -0.014660472981631756, 0.00024949738872237504, -0.0022709756158292294, 0.06834340840578079, -0.02183743193745613, -0.0028491446282714605, -0.05189771205186844, -0.03070945292711258, -0.02614721469581127, 0.052979666739702225, 0.002716154558584094, -0.016986673697829247, -0.006983109284192324, -0.031214363873004913, 0.009972007013857365, 0.004366133827716112, -0.010639211162924767, 0.038661811500787735, 0.05824517458677292, 0.02995208464562893, -0.0627172514796257, -0.036173317581415176, 0.022378409281373024, 0.00809211190789938, -0.002118825912475586, 0.016580941155552864, -0.02870783768594265, -0.016346517950296402, -0.026922615244984627, -0.03653397038578987, -0.03519956022500992, 0.003773313481360674, 0.007907277904450893, -0.016788315027952194, 0.008781857788562775, 0.009674469009041786, 0.005031084641814232, -0.07256302982568741, 0.022901352494955063, -0.024506250396370888, 0.029681596904993057, 0.07209417968988419, -0.03647987172007561, -0.011631002649664879, 0.03525365889072418, -0.03198976442217827, 0.0008492209599353373, -0.0075060538947582245, -0.037904445081949234, -0.0027634899597615004, -0.01190149039030075, 0.02722916752099991, 0.028473414480686188, -0.017085852101445198, -0.07191385328769684, 0.008227355778217316, 0.021242357790470123, 0.04756989702582359, -0.04616335779428482, 0.039455246180295944, -0.06953355669975281, -0.06603524088859558, 0.021368585526943207, -0.024434121325612068, -0.028509479016065598, 0.037796247750520706, 0.05398948863148689, 0.04208799824118614, 0.07544823735952377, -0.00981872994452715, 0.013073607347905636, -0.06152709946036339, -0.06228446960449219, -0.009322834201157093, -0.011144123040139675, 0.003020453965291381, 0.010531015694141388, -0.023171842098236084, 0.0392749197781086, -0.013118688948452473, 0.03750772774219513, 0.04764202609658241, 0.02980782464146614, -0.014489163644611835, -0.026273442432284355, 0.001872005290351808, -0.020304664969444275, -0.024343958124518394, -0.009692502208054066, -0.004566746298223734, -0.025624269619584084, -0.03725527226924896, -0.05409768596291542, 0.014083430171012878, -0.0423043891787529, 0.010449869558215141, -0.0029325452633202076, -0.03485694155097008, -0.03822902962565422, -0.009165049530565739, -0.030925843864679337, 0.03168321028351784, -0.025768529623746872, 0.06953355669975281, -0.011856408789753914, 0.005134772043675184, 0.021296454593539238, 0.014290804974734783, -0.02342429757118225, 0.04616335779428482, -0.05330425128340721, 0.053845230489969254, 0.028166860342025757, 0.01090068370103836, 0.03271106630563736, -0.020755479112267494, 0.010116267018020153, -0.05925499647855759, -0.000707778031937778, -0.026543930172920227, -0.008795381523668766, 0.0630778968334198, 0.05355670675635338, -0.02667015790939331, -0.004030277486890554, -0.004120440222322941, 0.07552036643028259, -0.04544205591082573, -0.04396338388323784, 0.042701106518507004, 0.053700968623161316, 0.01777108944952488, 0.027698013931512833, -0.06542213261127472, 0.05600913614034653, -0.06387133151292801, -0.0003944622876588255, -0.0419437400996685, -0.0324946753680706, -0.02281119115650654, 0.004562238231301308, -0.03992409259080887, -0.013686714693903923, 0.00016947790572885424, 0.015264563262462616, 0.01880796253681183, -0.022306278347969055, -0.049012500792741776, 0.04201586917042732, 0.03772411867976189, -0.030024215579032898, 0.014417032711207867, 0.006617950275540352, -0.010395771823823452, 0.00215714517980814, -0.05676650255918503, -0.013235900551080704, -0.004127202555537224, -0.006572868674993515, 0.04122243449091911, -0.004738055635243654, -0.07360891997814178, 0.018176821991801262, -0.00022794284450355917, -0.010485935024917126, 0.002955086063593626, 0.001053214306011796, 0.02236037701368332, 0.004296257626265287, 0.02998814918100834, 0.011838376522064209, -0.053845230489969254, -0.07310400158166885, 0.035325787961483, -0.07393350452184677, 0.015571117401123047, 0.028906196355819702, 0.05748780816793442, -0.025732465088367462, -0.02905045635998249, -0.04161915183067322, 0.042592909187078476, -0.0351274311542511, 0.03357663005590439, -0.06408772617578506, -0.03622741624712944, -0.0315389484167099, -0.04843546077609062, 0.01645471155643463, 0.017861252650618553, -0.041763413697481155, 0.0014437319478020072, -0.07126468420028687, 0.022198082879185677, -0.018789928406476974, 0.008858496323227882, -0.026345573365688324, 0.007271630689501762, -0.012199027463793755, -0.019998110830783844, -0.026237377896904945, -0.013082623481750488, 0.0061175464652478695, 0.03970770165324211, -0.017275193706154823, 0.0062482827343046665, -0.022522669285535812, 0.006027383729815483, 0.02739146165549755, -0.029447173699736595, -0.004819202236831188, 0.011658051051199436, 0.006861389614641666, -0.01725716143846512, 0.0005990191712044179, 0.05233049392700195, -0.04785841703414917, -0.026922615244984627, 0.010657244361937046, -0.009566273540258408, -0.011035927571356297, -0.03830116242170334, -0.04136669635772705, -0.07955966144800186, 0.0679827556014061, 0.03985195979475975, -0.012794102542102337, 0.0891529843211174, -0.00038939062505960464, 0.0010695563396438956, 0.028401285409927368, -0.024993130937218666, -0.045838773250579834, -0.0030136918649077415, 0.04713711515069008, -0.045009274035692215, 0.02980782464146614, 0.03242254629731178, 0.00840317364782095, 0.047353506088256836, 0.02594885602593422, -0.02163907326757908, 0.005134772043675184, -0.018934190273284912, -0.024037403985857964, -0.01116215530782938, -0.0487239807844162, -0.016499793156981468, -0.02232431061565876, 0.04241258651018143, 0.0241816658526659, 0.053051795810461044, -0.012469516135752201, 0.004273717291653156, -0.0017469044541940093, -0.026616061106324196, 0.011135106906294823, 0.01459735818207264, -0.07544823735952377, 0.01979975216090679, 0.02564230188727379, -0.042737171053886414, -0.03826509416103363, 0.011982637457549572, 0.005288048647344112, 0.057848457247018814, 0.0008509114850312471, 0.0027679982595145702, -0.021170226857066154, -0.015003091655671597, -0.014543261379003525, -0.0176628939807415, 0.0483633317053318, -0.0029731185641139746, 0.02877996861934662, -0.019709588959813118, -0.04165521636605263, -0.03768805414438248, -0.030438963323831558, -0.04627155140042305, -0.006406067404896021, -0.015589149668812752, 0.07220237702131271, 0.01248754933476448, -0.03198976442217827, 0.04688465967774391, 0.052186232060194016, 0.0472092479467392, 0.040212612599134445, -0.04234045371413231, 0.003707945579662919, -0.04775022342801094, -0.04060932993888855, -0.0038522060494869947, -0.05716321989893913, -0.060048431158065796, -0.11252318322658539, -0.01054003182798624, 0.009020788595080376, 0.003182747168466449, -0.06823521107435226, -0.0277701448649168, -0.04937315359711647, 0.021368585526943207, -0.04374699294567108, 0.06794669479131699, 0.03108813613653183, -0.05323212221264839, -0.017572730779647827, 0.07191385328769684, 0.04702892154455185, 0.041042111814022064, 0.007875720970332623, -0.010287576355040073, 0.016409631818532944, -0.019366970285773277, -0.002684597624465823, -0.010567081160843372, -0.06434018164873123, 0.09110049903392792, -0.0030880761332809925, 0.053845230489969254, -0.010089218616485596, -0.01656290702521801, -0.010972813703119755, 0.00976463221013546, -0.001690552686341107, -0.03611922264099121, -0.0036854047793895006, 0.013659665361046791, -0.03747166320681572, -0.06462869793176651, -0.01042282022535801, 0.020683348178863525, 0.04868791624903679, -0.07638593018054962, -0.06138284131884575, -0.009953973814845085, -0.0027499657589942217, 0.03916672244668007, -0.08294977992773056, -0.021855464205145836, -0.0491206981241703, -0.0072941710241138935, -0.05398948863148689, 0.0076503143645823, 0.0004398254386615008, 0.02183743193745613, 0.0005409768200479448, -0.013389176689088345, -0.004607319366186857, -0.03754379227757454, -0.0054548499174416065, 0.013966218568384647, -0.026616061106324196, -0.03718314319849014, -0.06599917262792587, -0.0029618481639772654, 0.007902770303189754, 0.06935323029756546, 0.006951552350074053, -0.0012915822444483638, -0.012370336800813675, 0.029176684096455574, -0.03996015712618828, 0.03837329149246216, 0.036966752260923386, -0.03963556885719299, -0.06924503296613693, -0.014065397903323174, -0.03761592507362366, -0.006410575471818447, -0.027301298454403877, 0.02742752619087696, -0.002513288287445903, 0.011053959839046001, -0.013299014419317245, 0.05655011162161827, 0.041150305420160294, 0.0009822110878303647, 0.00959332287311554, -0.04129456728696823, -0.02511935867369175, -0.0574156753718853, -0.01507522165775299, 0.04677646607160568, 0.030312735587358475, 0.02897832728922367, 0.00378232984803617, 0.008141701109707355, -0.055251769721508026, 0.02318987436592579, 0.005026576574891806, 0.061058253049850464, -0.1031462550163269, -0.03130452707409859, -0.01002610381692648, 0.027139004319906235, 0.007645806297659874, 0.05157312750816345, -0.09953974187374115, 0.02697671204805374, -0.026075083762407303, 0.024470185860991478, 0.06361887603998184, -0.0005282976781018078, -0.048940371721982956, 0.03301762044429779, 0.03438809514045715, -0.011910506524145603, -0.060156624764204025, 0.024686576798558235, 0.0021312234457582235, -0.04324208199977875, -0.01690552569925785, -0.016725201159715652, -0.002063601277768612, -0.02201775833964348, -0.060048431158065796, -0.016472745686769485, 0.055432096123695374, 0.027752112597227097, 0.033071719110012054, 0.046596139669418335, -0.00263951625674963, -0.0012295952765271068, -0.020503021776676178, -0.016310451552271843, 0.01952926442027092, -0.01112609077244997, -0.02225218154489994, 0.01191952358931303, 0.015616198070347309, 0.007596216630190611, 0.04147488996386528, -0.030475029721856117, 0.03804870322346687, 0.03743559867143631, -0.031629111617803574, 0.022071855142712593, -0.005211410112679005, 0.006969585083425045, -0.025714432820677757, -0.05885828286409378, -0.008010965771973133, -0.047281377017498016, -0.05561241880059242, 0.008065063506364822, -0.015219481661915779, 0.005941729061305523 ]
441
bitmath
to_Gib
null
def to_Gib(self): return Gib(bits=self._bit_value)
(self)
[ 0.05779401212930679, -0.05015212297439575, -0.000014222675417840946, -0.03273572400212288, -0.0006314555648714304, -0.026462264358997345, -0.013968663290143013, -0.013746515847742558, -0.013488823547959328, -0.03495720401406288, -0.012804607860744, -0.006300115957856178, 0.00662445230409503, 0.03449513390660286, -0.00789513811469078, -0.008534924127161503, -0.007521929685026407, -0.03230920061469078, 0.018624885007739067, 0.051858220249414444, 0.018553797155618668, -0.004105294123291969, 0.024347415193915367, 0.08132392168045044, -0.012866809964179993, 0.007912910543382168, -0.010618672706186771, 0.03437073156237602, -0.03378426283597946, -0.019104724749922752, -0.045780252665281296, -0.09383529424667358, 0.00414750212803483, -0.032184794545173645, 0.013080071657896042, -0.004531818442046642, -0.017229795455932617, 0.046277862042188644, -0.04773515462875366, -0.007490829098969698, 0.05814944952726364, -0.0801154375076294, -0.054204102605581284, -0.01446627452969551, 0.041657183319330215, -0.034548450261354446, 0.04123065993189812, 0.031100714579224586, -0.02105962671339512, -0.0017649654764682055, 0.03456622362136841, 0.015470383688807487, -0.023600999265909195, 0.051040712743997574, -0.03229142725467682, 0.001115738064981997, 0.016092397272586823, 0.017576346173882484, 0.02886146306991577, 0.05285344272851944, -0.03685878962278366, 0.02269463613629341, 0.015985766425728798, -0.09234246611595154, 0.0799732655286789, 0.021930446848273277, -0.05886032432317734, -0.00022575785988010466, -0.0022770166397094727, 0.03493943065404892, 0.019637878984212875, 0.024916114285588264, 0.010405410081148148, 0.049725599586963654, -0.049370162189006805, 0.018678199499845505, -0.0021614995785057545, -0.004125287756323814, 0.018909234553575516, -0.01621680147945881, 0.04602905735373497, 0.04947679117321968, 0.035650305449962616, 0.000791402067989111, -0.025076061487197876, -0.021308431401848793, 0.05409746989607811, -0.004140838049352169, 0.025129375979304314, -0.028879234567284584, -0.013551025651395321, -0.04318556189537048, 0.036823246628046036, 0.06056641787290573, 0.011560579761862755, -0.062094796448946, -0.036290090531110764, 0.010067745111882687, -0.022996757179498672, -0.020153261721134186, -0.05889586731791496, 0.003343326738104224, -0.08765070140361786, -0.007535258773714304, 0.006140169687569141, 0.045922424644231796, 0.04147946834564209, -0.02752857469022274, -0.005482611712068319, -0.061419468373060226, -0.03609459847211838, 0.03412192687392235, 0.015692532062530518, -0.012200365774333477, -0.008814831264317036, 0.016465606167912483, 0.02225033938884735, 0.02223256789147854, 0.024489590898156166, 0.05374203249812126, -0.021468378603458405, 0.0007697426481172442, 0.019335757941007614, 0.05740303173661232, 0.028239447623491287, 0.10265012830495834, 0.024116382002830505, -0.02342328056693077, 0.011711640283465385, 0.0062112570740282536, 0.08523372560739517, -0.013942006044089794, -0.07776955515146255, 0.0090680792927742, 0.009330214001238346, -0.008188373409211636, 0.0037520790938287973, 0.006868815049529076, 0.0061001828871667385, 0.07400193065404892, 0.0005278791068121791, -0.009250241331756115, 0.07528150081634521, 0.029750054702162743, 0.06056641787290573, 0.016430063173174858, 0.047024279832839966, 0.058113906532526016, -0.0038053945172578096, -0.0553770437836647, 0.026480035856366158, 0.0014228576328605413, 0.04947679117321968, 0.02914581261575222, -0.023298878222703934, 0.08025761693716049, -0.020224349573254585, -0.02811504527926445, 0.01821613311767578, -0.015665873885154724, -0.00008615175465820357, 0.04908581078052521, 0.0029945543501526117, -0.045780252665281296, -0.002745748730376363, 0.002259244676679373, -0.007135392166674137, 0.019033636897802353, -0.016927674412727356, 0.012280339375138283, -0.015443725511431694, -0.05697650834918022, -0.02459622174501419, 0.03038983978331089, 0.014448503032326698, 0.03378426283597946, -0.0033277764450758696, 0.06255686283111572, 0.0499388612806797, 0.020011087879538536, 0.045780252665281296, -0.009952228516340256, -0.034388504922389984, -0.035934653133153915, 0.015808047726750374, -0.006677767727524042, 0.06529372930526733, 0.018536025658249855, 0.019566791132092476, -0.024063067510724068, 0.0772719457745552, 0.012386970221996307, 0.009330214001238346, -0.014101952314376831, 0.026853244751691818, -0.018767058849334717, -0.00848160870373249, 0.04098185524344444, -0.045104920864105225, 0.0681016743183136, 0.024685081094503403, -0.029750054702162743, 0.009214697405695915, -0.017789607867598534, -0.0387781485915184, -0.01834053546190262, -0.002781292423605919, -0.023725401610136032, 0.08281675726175308, -0.027102051302790642, -0.005789175629615784, 0.015034973621368408, -0.01170275453478098, 0.010618672706186771, 0.010334323160350323, -0.06188153475522995, -0.010085517540574074, 0.011222914792597294, 0.0018171702977269888, 0.0043118917383253574, 0.018962549045681953, -0.043860893696546555, -0.016829928383231163, 0.004431851673871279, -0.020526470616459846, 0.03271795064210892, -0.029199127107858658, -0.03970228135585785, -0.031669411808252335, -0.001966009382158518, 0.06390752643346786, 0.013479937799274921, 0.016403404995799065, -0.05381312221288681, -0.04311447590589523, 0.035632532089948654, 0.03355322778224945, -0.003381091868504882, -0.018624885007739067, 0.012155936099588871, 0.0008985885069705546, 0.013586568646132946, 0.017567461356520653, 0.06255686283111572, 0.018660428002476692, -0.03337550908327103, 0.0014539583353325725, 0.010627558454871178, -0.019833369180560112, 0.02328110672533512, -0.06550698727369308, -0.03227365389466286, 0.004665107000619173, 0.006424518767744303, 0.05658552795648575, 0.007188708055764437, -0.09184484928846359, -0.016261231154203415, -0.020224349573254585, 0.03545481339097023, 0.02011771872639656, 0.016119055449962616, -0.006260129623115063, -0.012315882369875908, 0.03426410257816315, 0.05697650834918022, 0.005527041386812925, 0.00030267657712101936, 0.049725599586963654, 0.03575693443417549, 0.14359644055366516, -0.011062968522310257, 0.016972104087471962, -0.01336442120373249, -0.021112941205501556, -0.05331550911068916, 0.04912135750055313, 0.01791401207447052, -0.040413156151771545, -0.07190485298633575, -0.012147050350904465, -0.04357654228806496, 0.005016101058572531, 0.007566359359771013, -0.0442163310945034, 0.09198702871799469, 0.006291230209171772, 0.025449270382523537, 0.02687101624906063, -0.007219808641821146, 0.034761711955070496, 0.026977647095918655, -0.033499911427497864, 0.052817899733781815, 0.06721308827400208, -0.03803173080086708, 0.013862032443284988, 0.04837493970990181, 0.012120392173528671, 0.057367488741874695, 0.021397290751338005, -0.037320856004953384, -0.0510762594640255, 0.07105180621147156, -0.020011087879538536, 0.023725401610136032, 0.04741526022553444, 0.00442518712952733, -0.018482709303498268, 0.033215563744306564, -0.0283283069729805, 0.0045362613163888454, 0.06355208903551102, -0.0038964750710874796, 0.008717086166143417, -0.04410969838500023, 0.022854581475257874, 0.008574911393225193, -0.0005859152297489345, 0.005997994914650917, -0.015603672713041306, 0.02591133676469326, -0.019762281328439713, -0.000579250801820308, -0.07048310339450836, -0.02326333336532116, -0.015203806571662426, 0.037249770015478134, -0.03456622362136841, -0.0009452395606786013, -0.036165688186883926, -0.005313779227435589, 0.02136174775660038, -0.0030567559879273176, -0.021468378603458405, 0.009641221724450588, 0.04997440427541733, 0.022072620689868927, -0.056265633553266525, -0.05569693446159363, 0.03316224738955498, 0.006340102758258581, -0.0067755128256976604, 0.0025524799712002277, -0.01111628394573927, -0.0003440516593400389, -0.04546035826206207, -0.007033204194158316, 0.001532820868305862, 0.0009196925675496459, 0.028452711179852486, -0.04602905735373497, -0.005202705040574074, 0.014128610491752625, 0.005913578439503908, -0.07016321271657944, 0.020455384626984596, -0.014919457025825977, 0.016901016235351562, 0.040484242141246796, -0.045104920864105225, 0.01083193439990282, 0.021628325805068016, -0.01339107844978571, 0.017665205523371696, 0.0013873139396309853, -0.05989108979701996, 0.02598242461681366, -0.04901472479104996, 0.03499274700880051, 0.05967782810330391, 0.0032055950723588467, -0.0668221041560173, 0.007535258773714304, -0.007628560997545719, 0.0225346889346838, -0.05043647065758705, 0.002388090593740344, -0.03634340688586235, -0.06230805814266205, 0.030585329979658127, -0.027190910652279854, -0.02649780921638012, 0.0397733710706234, 0.03550812974572182, 0.005935793276876211, 0.06504492461681366, -0.0013028978137299418, 0.012573574669659138, -0.05576802417635918, -0.04844602569937706, -0.011205143295228481, -0.006842156872153282, -0.003434407524764538, -0.034388504922389984, -0.03639671951532364, 0.05761629343032837, -0.02297898381948471, 0.05448845028877258, 0.003845381084829569, 0.023832032456994057, 0.019868914037942886, -0.050400927662849426, -0.014066408388316631, -0.020082175731658936, -0.011613895185291767, 0.0052160341292619705, 0.01878483034670353, -0.03442404791712761, -0.07265126705169678, -0.054061926901340485, 0.025715846568346024, -0.027030963450670242, 0.022001532837748528, 0.004029763862490654, -0.03874260187149048, -0.009987772442400455, -0.011684982106089592, -0.02768852189183235, 0.030887451022863388, -0.013684313744306564, 0.06013989448547363, 0.020864136517047882, -0.02114848606288433, 0.020135490223765373, 0.0386359728872776, 0.006180156022310257, 0.044678397476673126, -0.05345768481492996, 0.04279458150267601, -0.0009302445687353611, -0.008717086166143417, 0.03399752452969551, -0.03389089182019234, 0.027279770001769066, -0.08772178739309311, -0.03888477757573128, -0.02063310146331787, 0.013426622375845909, 0.056123461574316025, 0.06618232280015945, -0.02178827114403248, 0.022659091278910637, -0.044678397476673126, 0.04666884243488312, -0.04926352947950363, -0.046491123735904694, 0.04926352947950363, 0.0499388612806797, -0.021237345412373543, 0.026906561106443405, -0.03884923458099365, 0.06319665163755417, -0.020757505670189857, 0.02591133676469326, -0.03353545442223549, -0.049654509872198105, -0.027173137292265892, 0.03728531301021576, -0.029998859390616417, -0.007113177794963121, 0.0050827451050281525, -0.012075962498784065, 0.0221081655472517, -0.04382535070180893, -0.029821142554283142, 0.08537590503692627, 0.00851715262979269, -0.030265437439084053, 0.022339198738336563, 0.0013084515230730176, 0.0021515029948204756, 0.01630566082894802, -0.07776955515146255, 0.002177049871534109, -0.01593245193362236, -0.01997554488480091, 0.008023983798921108, -0.006073525175452232, -0.08295893669128418, -0.009961114265024662, -0.01570141687989235, -0.01696321740746498, -0.006495606154203415, -0.026746613904833794, 0.024987202137708664, -0.00020770833361893892, 0.03788955509662628, 0.009401301853358746, -0.060957398265600204, -0.08850374817848206, 0.030141035094857216, -0.04961896687746048, 0.013595455326139927, 0.023547682911157608, 0.03381980583071709, -0.02893254905939102, -0.004638449288904667, -0.025893565267324448, 0.03660998493432999, -0.01753191649913788, 0.019566791132092476, -0.09333768486976624, -0.019193584099411964, -0.049867771565914154, -0.06013989448547363, -0.0041519454680383205, 0.015479269437491894, -0.031029626727104187, -0.019424617290496826, -0.03739194571971893, -0.006282343994826078, -0.033499911427497864, 0.01880260370671749, -0.03634340688586235, -0.033304423093795776, -0.007428627461194992, -0.013773173093795776, -0.030141035094857216, -0.004289676900953054, 0.03845825418829918, 0.015132718719542027, -0.028203904628753662, 0.011125169694423676, -0.01570141687989235, -0.005704759620130062, 0.03742748871445656, -0.03495720401406288, 0.004700650926679373, -0.001537263859063387, 0.014226355589926243, -0.03632563352584839, 0.009481274522840977, 0.06092185527086258, -0.05850488692522049, -0.019797826185822487, 0.011258458718657494, 0.013133387081325054, -0.07819607853889465, -0.03632563352584839, -0.024276329204440117, -0.04105294123291969, 0.07862260192632675, 0.061170659959316254, -0.010805276222527027, 0.09305333346128464, -0.026995420455932617, -0.005429296288639307, 0.0314028337597847, 0.007944011129438877, -0.05128952115774155, 0.010227692313492298, -0.0000045644464989891276, -0.05800727382302284, 0.03657443821430206, 0.017229795455932617, -0.01635897532105446, 0.05829162523150444, 0.03399752452969551, -0.01681215688586235, -0.017291996628046036, 0.008757072500884533, 0.0011740518966689706, -0.013133387081325054, -0.0034855015110224485, 0.007113177794963121, -0.007437513675540686, 0.040484242141246796, 0.039666738361120224, 0.04211925342679024, 0.0033833133056759834, -0.01515937689691782, 0.007042090408504009, -0.008557138964533806, -0.005051644518971443, 0.023583227768540382, -0.060744136571884155, 0.016847701743245125, -0.0096589932218194, -0.016909902915358543, -0.03632563352584839, 0.01435075793415308, 0.006508935242891312, 0.018464937806129456, 0.018189474940299988, -0.015186034142971039, -0.03792509809136391, 0.00622014282271266, -0.022996757179498672, -0.01599465310573578, 0.05221365764737129, 0.009081408381462097, 0.03399752452969551, -0.0341930128633976, -0.026017969474196434, -0.03609459847211838, -0.021272888407111168, -0.035650305449962616, -0.010103289037942886, 0.01871374435722828, 0.059642285108566284, 0.01636786200106144, -0.02848825417459011, 0.044891659170389175, 0.007015432696789503, 0.051040712743997574, 0.04659775644540787, -0.0499388612806797, 0.008654884062707424, -0.02105962671339512, -0.03664552792906761, 0.0034855015110224485, -0.043434370309114456, -0.0036032397765666246, -0.10947450995445251, -0.012111506424844265, 0.00781516544520855, 0.0057625179179012775, -0.06493829190731049, -0.006269015371799469, -0.03621900454163551, -0.015825821086764336, -0.04560253396630287, 0.05910912901163101, 0.014128610491752625, -0.07513932138681412, -0.00990779884159565, 0.0399155430495739, 0.04546035826206207, 0.0452115535736084, 0.017229795455932617, -0.031669411808252335, 0.009712308645248413, -0.04382535070180893, -0.03685878962278366, 0.009463503025472164, -0.060815226286649704, 0.07499714940786362, 0.00009802278509596363, 0.08068414032459259, -0.003736528567969799, -0.020171035081148148, -0.0030256551690399647, -0.0022903454955667257, 0.0014206361956894398, -0.07521041482686996, -0.01339107844978571, 0.00005130229328642599, -0.04890809580683708, -0.0792623907327652, -0.009152496233582497, 0.014377416111528873, 0.024276329204440117, -0.056336723268032074, -0.0662534087896347, -0.03161609545350075, 0.030283208936452866, 0.04098185524344444, -0.0446428544819355, -0.004985000006854534, -0.050400927662849426, -0.0016938782064244151, 0.008832602761685848, 0.0026879901997745037, -0.021308431401848793, 0.04428741708397865, 0.02305007167160511, -0.023743173107504845, -0.022037077695131302, -0.036894332617521286, -0.0032389170955866575, 0.006340102758258581, -0.06038869917392731, -0.02480948343873024, -0.07336214184761047, 0.006544478703290224, -0.00039792252937331796, 0.04983222857117653, 0.024685081094503403, 0.008779287338256836, -0.0014161932049319148, 0.0565144419670105, -0.03318001702427864, 0.023227790370583534, 0.06721308827400208, -0.0358457937836647, -0.06447622179985046, -0.007379754912108183, -0.011649439111351967, -0.029714509844779968, -0.03533041104674339, 0.04162164032459259, -0.01901586540043354, 0.012982326559722424, -0.021308431401848793, 0.08765070140361786, 0.03856488689780235, -0.04051978886127472, 0.00851715262979269, -0.01967342384159565, 0.00935687217861414, -0.04325665161013603, -0.021184029057621956, 0.054879430681467056, 0.030656417831778526, 0.00736198341473937, 0.005842491053044796, -0.0016394519479945302, -0.0510762594640255, 0.05324442312121391, 0.013044527731835842, 0.08210588246583939, -0.09760292619466782, -0.0074552856385707855, -0.001316226669587195, 0.011187370866537094, -0.03941793367266655, 0.05583911016583443, -0.1107540875673294, 0.01651892252266407, -0.03625454753637314, 0.0005045535508543253, 0.07592128217220306, 0.013906462118029594, -0.00032683517201803625, 0.02386757731437683, 0.05345768481492996, 0.018838146701455116, -0.0771297737956047, -0.004785066936165094, 0.021486150100827217, -0.011036310344934464, -0.0315450094640255, -0.03158055245876312, 0.01052981335669756, -0.023174474015831947, -0.04197707772254944, 0.027759607881307602, 0.06785286962985992, 0.014981658197939396, 0.03053201548755169, 0.023245561867952347, 0.022801266983151436, 0.029643423855304718, -0.04617123305797577, -0.004485167097300291, 0.015950223430991173, -0.01196933165192604, -0.02408083900809288, -0.0020648653153330088, 0.016909902915358543, 0.003338883863762021, 0.056336723268032074, 0.010743075050413609, 0.030265437439084053, 0.008637112565338612, -0.032486915588378906, 0.0389203205704689, -0.028665972873568535, -0.03170495480298996, -0.02018880657851696, -0.01145394891500473, 0.03046092763543129, -0.01821613311767578, -0.05701205134391785, 0.031171800568699837, 0.00680661341175437, -0.015079403296113014 ]
442
bitmath
to_KiB
null
def to_KiB(self): return KiB(bits=self._bit_value)
(self)
[ 0.028345957398414612, -0.040464118123054504, -0.02209368906915188, -0.009501339867711067, 0.03285953402519226, -0.012390379793941975, -0.00824561808258295, 0.011389314197003841, -0.008465149439871311, -0.03498460352420807, 0.02639651484787464, -0.01754498854279518, 0.029979275539517403, 0.005716610234230757, 0.0033939629793167114, -0.010414592921733856, 0.0012227926636114717, -0.06392768770456314, 0.025904763489961624, 0.05721879005432129, 0.036424729973077774, -0.03517778962850571, 0.06241730600595474, 0.0615743026137352, -0.02088187262415886, 0.008917385712265968, 0.05391703173518181, 0.032297533005476, -0.009360839612782001, -0.011556158773601055, -0.08675900101661682, 0.012451848946511745, 0.01859874092042446, 0.024956384673714638, -0.009431090205907822, -0.012205973267555237, 0.029522648081183434, 0.02374456822872162, 0.017817208543419838, -0.028556708246469498, 0.0076704444363713264, 0.001670637633651495, -0.023516256362199783, -0.024130946025252342, 0.026045262813568115, -0.01770305074751377, 0.015086231753230095, 0.007152348756790161, 0.008131461217999458, 0.003541049314662814, 0.001058143679983914, -0.005281937308609486, -0.013610976748168468, 0.025922326371073723, -0.026800453662872314, -0.019863246008753777, 0.006476190872490406, -0.10368930548429489, -0.08198198676109314, 0.02130337432026863, -0.0644545629620552, 0.035335853695869446, 0.0795934796333313, -0.05655141547322273, 0.006304956041276455, 0.027415141463279724, -0.02432413399219513, -0.0047067636623978615, 0.011793253012001514, 0.06968820095062256, 0.05932629853487015, -0.043765876442193985, -0.0025553512386977673, 0.026343826204538345, -0.08310598880052567, -0.014445198699831963, -0.024728072807192802, -0.0033939629793167114, -0.036846231669187546, -0.019318806007504463, 0.03517778962850571, 0.0570782907307148, 0.02716926671564579, 0.0034664084669202566, 0.011125876568257809, 0.002801226917654276, 0.08633749932050705, 0.038356613367795944, 0.03015490062534809, 0.003683745162561536, 0.018370429053902626, -0.006910863798111677, 0.01589410938322544, 0.05785104259848595, 0.0031678450759500265, -0.03185846656560898, -0.04007774218916893, -0.03705698251724243, -0.030242713168263435, -0.043590251356363297, -0.00849149376153946, -0.025184698402881622, 0.009747215546667576, 0.0021854399237781763, -0.013769039884209633, 0.047805264592170715, 0.0076704444363713264, -0.014366166666150093, -0.011231251060962677, -0.022181501612067223, -0.007512381300330162, 0.05223102867603302, -0.03538854047656059, -0.03681110590696335, -0.01320703886449337, 0.004860436078161001, 0.025711575523018837, 0.0005976755637675524, 0.01635073497891426, 0.03465091437101364, -0.02506176009774208, 0.010309217497706413, 0.030839839950203896, -0.007982179522514343, 0.014146635308861732, 0.07467596977949142, 0.04123686999082565, 0.02356894314289093, -0.00026110574253834784, 0.01336510106921196, 0.053038906306028366, 0.017290331423282623, -0.033843036741018295, 0.006805488374084234, -0.019722744822502136, 0.006700113415718079, 0.02790689468383789, 0.0018495562253519893, 0.004803357645869255, 0.10298679769039154, 0.03314053267240524, 0.020969685167074203, 0.07144445925951004, 0.00570343853905797, 0.02776639349758625, -0.011775690130889416, 0.08008523285388947, -0.023481130599975586, 0.013707570731639862, -0.013119225390255451, 0.04998302087187767, 0.005053624045103788, 0.06930182874202728, 0.04176374524831772, -0.0029351413249969482, 0.012153285555541515, 0.036003228276968, -0.03705698251724243, 0.04597875848412514, -0.04531138017773628, 0.0018769976450130343, 0.023920195177197456, 0.007494818884879351, -0.04520600661635399, -0.04611925780773163, 0.017509862780570984, -0.06645669043064117, 0.025009073317050934, 0.002651945222169161, -0.047805264592170715, -0.007582631427794695, -0.009281808510422707, -0.001462082378566265, 0.02464025840163231, 0.0323326550424099, 0.03198140487074852, -0.005382922012358904, 0.035651978105306625, 0.05237152799963951, -0.004755060654133558, 0.041377369314432144, -0.0001824858773034066, -0.06835345178842545, 0.03254340589046478, 0.017571331933140755, 0.01694786176085472, 0.05430340766906738, 0.03322834521532059, -0.03408891335129738, -0.026835577562451363, 0.03800535947084427, 0.036003228276968, 0.012083034962415695, 0.04218524694442749, -0.022322002798318863, -0.007398224901407957, 0.05117727443575859, 0.027204392477869987, -0.05584891140460968, 0.031173529103398323, -0.0005367554840631783, 0.002040548948571086, 0.014418854378163815, -0.011266376823186874, 0.022304439917206764, -0.011380532756447792, -0.024815885350108147, -0.028556708246469498, 0.04109637066721916, 0.019301243126392365, -0.026677515357732773, -0.03828636184334755, -0.06030980125069618, 0.012741630896925926, -0.0006185310776345432, -0.021672187373042107, -0.03993724286556244, 0.01795770786702633, -0.010836093686521053, -0.021233124658465385, 0.01742205023765564, -0.012636255472898483, 0.006945989094674587, 0.006335690151900053, -0.02674776501953602, -0.006195189896970987, 0.029241647571325302, 0.02476319670677185, 0.011538595892488956, 0.020056433975696564, 0.01246941089630127, 0.025096885859966278, -0.013637321069836617, 0.014058821834623814, -0.049491267651319504, 0.03496703878045082, 0.023147443309426308, -0.07551897317171097, -0.028416207060217857, -0.029224084690213203, 0.012214754708111286, -0.012425504624843597, 0.03507241606712341, 0.02370944432914257, -0.018387991935014725, -0.031577467918395996, 0.00164319621399045, 0.02760833129286766, 0.004632122814655304, -0.0028209846932440996, -0.002829766133800149, -0.08746150135993958, 0.047524262219667435, -0.01657026633620262, 0.07235771417617798, 0.010107248090207577, -0.029206521809101105, -0.04836726561188698, -0.0090183699503541, 0.0555327869951725, 0.022778628394007683, 0.057429540902376175, 0.003330298699438572, -0.027432704344391823, 0.048859018832445145, 0.05430340766906738, 0.007428959012031555, 0.02193562686443329, -0.014014915563166142, 0.060590799897909164, 0.08085798472166061, -0.025395449250936508, -0.03303515911102295, -0.015042325481772423, -0.024394383653998375, -0.072006456553936, 0.02704632841050625, 0.039691366255283356, -0.07105807960033417, -0.0008045843569561839, -0.030681777745485306, -0.061152804642915726, -0.001466472982428968, 0.008008522912859917, -0.037618983536958694, 0.053074028342962265, 0.009123745374381542, 0.0004223244613967836, 0.019792994484305382, -0.025413012132048607, -0.010950250551104546, 0.036530107259750366, -0.07235771417617798, 0.017834771424531937, 0.013461695052683353, -0.03737311065196991, -0.05521666258573532, -0.022286877036094666, 0.05960729718208313, 0.06835345178842545, -0.029224084690213203, 0.0007343341712839901, -0.004493817687034607, 0.06635131686925888, 0.03047102689743042, 0.0734817162156105, 0.05198515206575394, 0.01455935463309288, 0.01606973446905613, 0.038075610995292664, -0.02070624753832817, -0.028486458584666252, 0.055322036147117615, -0.026958515867590904, -0.04004261642694473, -0.04380100220441818, 0.02133850008249283, 0.01995105855166912, -0.026835577562451363, 0.044222503900527954, 0.022567877545952797, 0.03364984691143036, -0.10221404582262039, -0.006028345786035061, -0.016482453793287277, -0.0676509439945221, 0.0023358194157481194, 0.018405552953481674, 0.04896439239382744, -0.033843036741018295, 0.04035874083638191, -0.023340631276369095, 0.012337692081928253, 0.0020921388640999794, -0.05809691920876503, 0.006476190872490406, 0.04942101985216141, 0.02177756279706955, -0.08949875831604004, 0.009852590970695019, 0.04141249507665634, -0.029645586386322975, -0.011863503605127335, 0.013716352172195911, -0.052441779524087906, 0.011898628436028957, -0.014050041325390339, -0.04938589408993721, -0.04186912253499031, 0.051423151046037674, -0.0049833739176392555, 0.006195189896970987, 0.026045262813568115, -0.0012271832674741745, 0.015086231753230095, -0.051704149693250656, 0.019283680245280266, -0.031472090631723404, -0.011608846485614777, 0.05447903275489807, -0.014383729547262192, -0.0232879426330328, 0.021057499572634697, -0.03888348862528801, 0.024833448231220245, -0.001411590026691556, -0.017948927357792854, -0.028925521299242973, 0.019336368888616562, 0.02702876552939415, 0.01492816861718893, -0.014541792683303356, -0.07158495485782623, -0.00013192494225222617, 0.04467913135886192, 0.07183083146810532, -0.06283880770206451, 0.05595428869128227, -0.07169033586978912, -0.005409265868365765, 0.01830017752945423, -0.021654626354575157, -0.014146635308861732, 0.03621397912502289, 0.031138403341174126, 0.06080155074596405, 0.02897820994257927, -0.03545879200100899, 0.03797023743391037, -0.03559929132461548, -0.041974496096372604, 0.04762963950634003, 0.03292978182435036, -0.025149572640657425, 0.045100633054971695, 0.0360383540391922, 0.030242713168263435, -0.023340631276369095, 0.034896790981292725, 0.04710276052355766, 0.018879743292927742, -0.0008413559407927096, -0.009483777917921543, 0.018370429053902626, -0.0060020019300282, 0.006370815448462963, -0.029101146385073662, -0.013883196748793125, -0.04130712151527405, -0.024710509926080704, -0.02358650602400303, 0.002781469142064452, 0.005540984682738781, -0.020161809399724007, -0.01770305074751377, -0.02012668363749981, -0.019476870074868202, -0.04882389307022095, 0.017790865153074265, 0.0032029703725129366, -0.029048459604382515, 0.037302859127521515, 0.025430573150515556, -0.002592671662569046, 0.053811658173799515, 0.0055936723947525024, 0.0031129622366279364, 0.04875364154577255, -0.0034422599710524082, 0.010151154361665249, 0.0008567231707274914, -0.011608846485614777, 0.008320258930325508, -0.015121356584131718, -0.043309252709150314, -0.019740307703614235, 0.019933495670557022, -0.0480160154402256, -0.020214496180415154, 0.03842686116695404, 0.03426453843712807, -0.012522098608314991, 0.004193059168756008, 0.017070800065994263, 0.05493566021323204, -0.00936962105333805, -0.029610460624098778, 0.04323900118470192, 0.020179370418190956, 0.02342844381928444, 0.04337950050830841, -0.09933379292488098, 0.03508997708559036, -0.0810687392950058, -0.021654626354575157, -0.00908862054347992, -0.025342760607600212, -0.035827603191137314, -0.00860125944018364, -0.05416290834546089, 0.003600322874262929, 0.025026636198163033, 0.03254340589046478, -0.0008786763646639884, 0.008008522912859917, -0.0011624213075265288, -0.022023439407348633, 0.016956642270088196, 0.03482653945684433, -0.018352866172790527, -0.00003169491537846625, -0.0002982889418490231, 0.019336368888616562, -0.015806296840310097, 0.006353253033012152, 0.00207347865216434, -0.026027699932456017, 0.025729136541485786, -0.03962111473083496, -0.058904796838760376, 0.006217143032699823, -0.0038857143372297287, 0.014796449802815914, -0.03447528928518295, 0.0028319612611085176, -0.0058702826499938965, 0.015200387686491013, 0.04935076832771301, -0.0014017111388966441, -0.016017045825719833, -0.050193771719932556, 0.034896790981292725, -0.06417356431484222, 0.018352866172790527, 0.03860248625278473, 0.049456145614385605, -0.006287393160164356, -0.0016574658220633864, -0.07825873047113419, 0.039269864559173584, -0.047208137810230255, 0.03261365741491318, -0.03271903097629547, -0.022409815341234207, -0.04418737813830376, -0.0120040038600564, 0.01605217158794403, -0.004504794254899025, -0.0008737369207665324, -0.01996862143278122, -0.06431405991315842, 0.026308702304959297, -0.006309346295893192, -0.017834771424531937, -0.020969685167074203, 0.032297533005476, -0.05658654123544693, 0.0021821469999849796, -0.01140687707811594, -0.0001315133267780766, 0.02355138026177883, 0.03566954284906387, 0.024710509926080704, 0.001654172781854868, -0.009395964443683624, 0.03951574116945267, 0.032350219786167145, -0.030681777745485306, -0.0005041001131758094, 0.03364984691143036, -0.045732881873846054, -0.02492126077413559, -0.0044411299750208855, 0.07825873047113419, -0.06958282738924026, -0.020354997366666794, -0.03178821876645088, 0.01792258396744728, 0.048859018832445145, -0.03210434317588806, -0.05360090732574463, -0.06427893787622452, 0.07931248098611832, 0.0026563359424471855, 0.01426079124212265, 0.1111358255147934, -0.014058821834623814, 0.01859874092042446, -0.005053624045103788, -0.016394641250371933, -0.03349178656935692, -0.030049525201320648, 0.06856419891119003, -0.010695593431591988, 0.058588672429323196, 0.01702689379453659, 0.048402391374111176, 0.024376820772886276, -0.00042424537241458893, -0.021531688049435616, 0.0067791445180773735, 0.01814211532473564, -0.015288201160728931, -0.04130712151527405, -0.034018661826848984, -0.017149832099676132, -0.06680794805288315, -0.029926586896181107, 0.006950379814952612, 0.037759486585855484, -0.01253088004887104, 0.0056287976913154125, 0.00249388231895864, -0.03201653063297272, 0.011687877587974072, 0.03681110590696335, -0.05159877613186836, 0.00924668274819851, 0.008333430625498295, -0.0555679127573967, -0.02163706347346306, 0.029680712148547173, 0.014576917514204979, 0.07249820977449417, 0.04281749948859215, -0.01863386668264866, -0.017509862780570984, -0.04668126255273819, -0.05086114630103111, -0.005444390699267387, 0.020390121266245842, -0.03577491641044617, 0.002355577191337943, -0.012645036913454533, -0.031577467918395996, -0.07070682942867279, -0.024587571620941162, -0.04815651476383209, 0.04903464391827583, -0.03530072793364525, 0.051739275455474854, -0.013707570731639862, -0.03617885708808899, 0.0779777243733406, 0.05792129412293434, 0.08472174406051636, 0.0014280549949035048, -0.01981055736541748, 0.013575851917266846, 0.01949443109333515, -0.03292978182435036, -0.024429509416222572, 0.0043269735760986805, -0.0645599365234375, -0.07270896434783936, -0.01694786176085472, 0.07579997181892395, -0.05282815545797348, -0.03667060658335686, -0.03649498149752617, -0.058307670056819916, 0.027099017053842545, -0.00960671529173851, 0.060415174812078476, 0.007038192357867956, -0.017307894304394722, -0.02609795145690441, 0.06203093007206917, 0.06396280974149704, 0.03140184283256531, 0.019248556345701218, 0.025623762980103493, 0.01996862143278122, 0.0024236319586634636, 0.014664730057120323, -0.005778079386800528, -0.0600639246404171, 0.046013884246349335, 0.018001614138484, 0.06540293991565704, -0.013514382764697075, -0.0127679742872715, -0.029241647571325302, 0.011837159283459187, -0.002194221131503582, -0.040147993713617325, 0.018265053629875183, 0.0033720098435878754, -0.0210223738104105, -0.03317565843462944, -0.026835577562451363, -0.027836643159389496, 0.04155299440026283, -0.06803732365369797, -0.05929117277264595, 0.0072884587571024895, 0.04829701408743858, 0.03542366623878479, -0.08591599762439728, -0.06691332161426544, -0.08675900101661682, -0.04942101985216141, -0.10439180582761765, -0.006436674855649471, 0.041482746601104736, -0.009808684699237347, -0.020811622962355614, -0.011723003350198269, -0.04671638458967209, -0.04531138017773628, -0.003800096921622753, 0.02249762788414955, -0.004166715312749147, -0.06807244569063187, -0.0750974714756012, 0.017632801085710526, -0.01968761906027794, 0.0555327869951725, 0.019757870584726334, -0.03768923506140709, -0.03726773336529732, 0.005000936333090067, -0.031138403341174126, 0.06515706330537796, 0.027959581464529037, -0.04703251272439957, -0.06729969382286072, 0.013356320559978485, -0.052301276475191116, -0.031296465545892715, 0.014278354123234749, 0.009922841563820839, -0.02506176009774208, 0.0210223738104105, -0.027590768411755562, 0.044222503900527954, 0.026361389085650444, 0.035950541496276855, 0.021882938221096992, -0.0510367751121521, 0.010765844024717808, -0.046927135437726974, 0.003997675608843565, -0.003022954100742936, -0.010230186395347118, 0.03122621588408947, -0.03517778962850571, -0.0007842776831239462, -0.019459307193756104, 0.03516022861003876, -0.010133592411875725, 0.06989895552396774, -0.0675455704331398, -0.08022573590278625, -0.019406618550419807, 0.06835345178842545, 0.007073317654430866, 0.012803100049495697, -0.06016930192708969, 0.04439812898635864, -0.009536465629935265, -0.013233382254838943, 0.028433769941329956, 0.048578016459941864, -0.061187926679849625, 0.03870786353945732, 0.008974463678896427, 0.017606457695364952, -0.04292287677526474, 0.03976161405444145, 0.0036310574505478144, -0.05328477919101715, -0.04236087203025818, -0.037127234041690826, 0.014524229802191257, -0.030119774863123894, -0.02523738518357277, -0.04942101985216141, 0.06571906805038452, 0.04429275542497635, 0.03649498149752617, 0.04144762083888054, -0.02804739400744438, -0.014893043786287308, 0.03538854047656059, -0.0016860049217939377, 0.020829185843467712, 0.0375487357378006, 0.028468895703554153, 0.03856736049056053, -0.012188410386443138, 0.013523164205253124, 0.026466764509677887, -0.0570782907307148, 0.005475125275552273, 0.008425634354352951, -0.03930499032139778, 0.01433104183524847, -0.0009423406445421278, 0.022023439407348633, -0.029680712148547173, -0.09294102340936661, -0.01998618245124817, 0.012126941233873367, -0.022146377712488174, 0.0012173043796792626, 0.02565888687968254, -0.0047067636623978615 ]
443
bitmath
to_Kib
null
def to_Kib(self): return Kib(bits=self._bit_value)
(self)
[ 0.029349910095334053, -0.05153621733188629, -0.02128216251730919, -0.03183630481362343, -0.0024950900115072727, -0.016700586304068565, -0.01177126169204712, -0.0114061264321208, 0.01585729792714119, -0.019126126542687416, -0.009380495175719261, 0.010102071799337864, 0.019752072170376778, 0.013979459181427956, -0.01381427887827158, -0.00982387363910675, 0.015083558857440948, -0.0341140553355217, -0.027402522042393684, 0.06061243265867233, 0.01827414333820343, -0.044511713087558746, 0.04725892096757889, 0.10710630565881729, -0.019369550049304962, 0.004929324146360159, 0.012771036475896835, 0.013223107904195786, 0.00011688943050103262, -0.01049328874796629, -0.08137297630310059, -0.00630292808637023, 0.00656808540225029, 0.004172972869127989, 0.013005766086280346, -0.016248513013124466, 0.03717423602938652, -0.001138873863965273, 0.02192549593746662, -0.024742253124713898, 0.06801945716142654, -0.049936577677726746, -0.04332936927676201, -0.020169369876384735, 0.03727855905890465, -0.005177094601094723, 0.022725315764546394, 0.02056927978992462, 0.02037801779806614, 0.0023233897518366575, -0.025924595072865486, -0.018152432516217232, 0.012023378163576126, 0.022447116672992706, -0.037209007889032364, -0.050214774906635284, -0.004072995390743017, -0.08554594963788986, -0.039817117154598236, 0.02731558494269848, -0.07427892088890076, 0.02715909853577614, 0.09563063085079193, -0.018604503944516182, 0.05177963897585869, 0.02187333256006241, -0.040999460965394974, 0.01458801794797182, 0.015631262212991714, 0.06085585430264473, 0.04798918962478638, -0.030288828536868095, 0.008458963595330715, 0.035122521221637726, -0.04423351213335991, -0.028184955939650536, -0.04061693698167801, -0.005220563150942326, -0.04913675785064697, -0.028497928753495216, 0.03780018165707588, 0.06687188893556595, -0.000692235364113003, -0.0012008164776489139, -0.0024885698221623898, 0.003825225168839097, 0.06878450512886047, 0.00981518067419529, 0.039365045726299286, -0.007067972794175148, -0.035122521221637726, -0.04830216243863106, 0.03755675628781319, 0.07720000296831131, -0.002008243231102824, -0.03357504680752754, -0.0510493703186512, -0.04006054252386093, -0.0026254954282194376, -0.04374666512012482, 0.014866216108202934, -0.019421711564064026, -0.030288828536868095, 0.013640405610203743, -0.007885180413722992, 0.0344444140791893, -0.019543424248695374, -0.020917026326060295, -0.03884342312812805, -0.059603963047266006, -0.009623918682336807, 0.0794951319694519, 0.009841261431574821, -0.017456937581300735, -0.06690666824579239, 0.020343244075775146, 0.026811351999640465, 0.011049685068428516, 0.0009269650909118354, 0.04263387247920036, -0.013918603770434856, -0.014579324051737785, 0.02037801779806614, 0.019143514335155487, 0.0027950224466621876, 0.05946486443281174, 0.027072161436080933, 0.01646585576236248, 0.01487491000443697, 0.011032297275960445, 0.07000162452459335, -0.012510225176811218, -0.053518377244472504, 0.01065846811980009, -0.030775675550103188, -0.0015137894079089165, 0.0438162162899971, -0.003027578815817833, 0.021403873339295387, 0.09069260954856873, 0.05257945880293846, 0.01569211669266224, 0.07615675777196884, 0.026654865592718124, 0.041764505207538605, 0.0049901800230145454, 0.05588306486606598, -0.0074026803486049175, 0.033870629966259, -0.029871530830860138, 0.018239369615912437, 0.036478739231824875, 0.05028432607650757, 0.04325982183218002, 0.0003469327057246119, 0.026637477800250053, 0.018847927451133728, -0.056126486510038376, 0.028480540961027145, -0.023629460483789444, 0.0002972156507894397, 0.039225947111845016, -0.028915224596858025, -0.052927207201719284, -0.024672701954841614, 0.0069419145584106445, -0.04033873975276947, 0.039782341569662094, -0.0067202253267169, -0.03460090234875679, -0.02660270221531391, -0.03543549403548241, -0.026220180094242096, 0.04771099239587784, 0.027750270441174507, 0.013257882557809353, -0.009789098985493183, 0.047780539840459824, 0.056265585124492645, -0.0026298423763364553, 0.02402937039732933, 0.022290630266070366, -0.05675243213772774, -0.007606981787830591, 0.010762793011963367, 0.004525067750364542, 0.04499856010079384, 0.06207297369837761, 0.011275720782577991, -0.030271440744400024, 0.0465286485850811, 0.018308918923139572, 0.024429280310869217, 0.026324504986405373, -0.02189072035253048, -0.013066621497273445, -0.002971069887280464, 0.05268378555774689, -0.05689153075218201, 0.03399234265089035, 0.05390090122818947, 0.0006797381793148816, -0.006037770304828882, 0.01753517985343933, 0.0001597466180101037, -0.01660495437681675, -0.011806036345660686, -0.03065396472811699, 0.07685225456953049, 0.006337702739983797, -0.0038730406668037176, -0.026098469272255898, -0.04037351533770561, -0.003262308659031987, 0.008532860316336155, -0.021786397323012352, -0.028445765376091003, 0.015048784203827381, -0.017248287796974182, -0.006016036029905081, 0.03548765927553177, -0.010762793011963367, 0.007389639504253864, 0.013544774614274502, -0.061829548329114914, 0.007324437145143747, 0.02159513533115387, 0.003192759118974209, -0.018952252343297005, 0.008767589926719666, 0.03265351429581642, 0.02248189225792885, -0.01193644106388092, -0.027263423427939415, -0.025159548968076706, 0.048267386853694916, 0.014935765415430069, -0.046737298369407654, -0.018308918923139572, -0.017117882147431374, 0.030932161957025528, -0.019143514335155487, 0.04364234209060669, 0.014492387883365154, 0.0010606306605041027, -0.0055074552074074745, 0.028324054554104805, 0.013979459181427956, -0.005216216202825308, 0.013918603770434856, -0.032410088926553726, -0.06603729724884033, 0.0458679273724556, 0.025576846674084663, 0.06697621941566467, 0.013483919203281403, -0.02656792849302292, -0.030740901827812195, -0.0020527984015643597, 0.03762630745768547, -0.010615000501275063, 0.04771099239587784, -0.0052336035296320915, -0.0067202253267169, 0.02931513451039791, 0.04058216139674187, 0.005555270239710808, 0.024133693426847458, 0.006772387307137251, 0.02582027018070221, 0.09298774600028992, -0.025785496458411217, 0.01427504513412714, -0.022864414379000664, -0.023785946890711784, -0.041312433779239655, 0.0383913516998291, 0.03974756598472595, -0.050214774906635284, 0.0037426352500915527, -0.00945004541426897, -0.04701549559831619, -0.02159513533115387, 0.020725766196846962, -0.041451532393693924, 0.04106900840997696, -0.00162246054969728, -0.009780405089259148, 0.045381080359220505, -0.050353873521089554, 0.028011081740260124, 0.02795891836285591, -0.03096693754196167, 0.04141675680875778, 0.025768108665943146, -0.02475963905453682, -0.06408990919589996, -0.015483468770980835, 0.04983225092291832, 0.0659329742193222, -0.004885856062173843, -0.015544324181973934, -0.03548765927553177, 0.06662847101688385, 0.013475225307047367, 0.032079730182886124, 0.06986252218484879, 0.042077478021383286, -0.005994301754981279, 0.027715494856238365, -0.03762630745768547, -0.029071711003780365, 0.0537618026137352, -0.02992369420826435, -0.025611622259020805, -0.06290756911039352, 0.018465405330061913, -0.0034600901417434216, -0.004890202544629574, 0.045102883130311966, -0.002195157576352358, 0.013562162406742573, -0.0957697331905365, -0.005242297425866127, -0.03811315447092056, -0.0740702673792839, 0.011284414678812027, -0.020951801910996437, 0.005272725131362677, -0.02448144182562828, 0.013318738900125027, -0.004811959341168404, 0.022238468751311302, 0.0094326576218009, -0.066419817507267, 0.000692235364113003, 0.05831729620695114, 0.021647296845912933, -0.09222270548343658, -0.005137972999364138, 0.021090900525450706, -0.010823648422956467, -0.029715044423937798, 0.013509999960660934, -0.056265585124492645, 0.015970315784215927, -0.05901279300451279, -0.02736774832010269, -0.011310495436191559, 0.04694594442844391, 0.022412342950701714, -0.027819819748401642, 0.03447918966412544, 0.04016486555337906, 0.028480540961027145, -0.05963873863220215, 0.006159482058137655, -0.01933477446436882, -0.03461828827857971, 0.00951090082526207, -0.028880450874567032, 0.007063626311719418, 0.0004219158145133406, -0.02658531628549099, 0.03326207399368286, 0.024811802431941032, -0.0429120734333992, -0.018378468230366707, -0.01976945996284485, 0.039191171526908875, 0.046598199754953384, -0.010997522622346878, -0.06520270556211472, 0.028932612389326096, 0.034357476979494095, 0.014344594441354275, -0.0686454027891159, 0.030167117714881897, -0.031349457800388336, 0.0010394398123025894, 0.009928198531270027, -0.021369099617004395, -0.0025494256988167763, 0.04739801958203316, 0.01245806273072958, 0.03807837888598442, 0.031958017498254776, -0.02129955030977726, 0.06061243265867233, -0.0317319817841053, -0.050527747720479965, 0.029036937281489372, 0.014770586043596268, -0.03908684849739075, 0.021525586023926735, 0.01588337868452072, 0.028132792562246323, -0.030706126242876053, 0.06318576633930206, -0.01065846811980009, -0.010562838055193424, 0.02083009108901024, -0.024255406111478806, -0.0022321059368550777, 0.002977590076625347, 0.011901666410267353, -0.020186757668852806, 0.00875020306557417, -0.0510493703186512, -0.05153621733188629, -0.033870629966259, 0.03644396364688873, 0.018691441044211388, -0.0030732208397239447, -0.017274368554353714, -0.01933477446436882, 0.0007824324420653284, -0.0564742349088192, -0.00014045748685020953, 0.029245585203170776, -0.0005129279452376068, 0.019386937841773033, 0.054144322872161865, -0.05699585750699043, 0.04444216191768646, 0.02764594554901123, 0.018326306715607643, 0.06193387508392334, -0.0017941610421985388, -0.004938018042594194, -0.031349457800388336, -0.007111441344022751, 0.013509999960660934, -0.01676144078373909, -0.051431890577077866, -0.03221882879734039, -0.0003181348438374698, -0.02263837866485119, 0.0022179787047207355, 0.021473422646522522, 0.01443153154104948, -0.004646779503673315, 0.009024053812026978, -0.009024053812026978, 0.01825675740838051, -0.02736774832010269, -0.03627008944749832, 0.05543098971247673, 0.014179414138197899, -0.0002551055804360658, 0.04399009048938751, -0.07191423326730728, 0.046772073954343796, -0.033140361309051514, 0.012371126562356949, 0.01471842359751463, -0.03821747750043869, -0.02961072139441967, 0.048858560621738434, -0.036617837846279144, 0.018048107624053955, 0.022707927972078323, 0.006741959601640701, 0.011501756496727467, 0.012962297536432743, 0.006355090066790581, 0.013996846973896027, 0.011049685068428516, 0.05511801689863205, 0.008580675348639488, 0.0006645242101512849, 0.01827414333820343, 0.05042342469096184, -0.04141675680875778, 0.02190810814499855, 0.0014583670999854803, -0.023612072691321373, 0.0038556531071662903, -0.04565928131341934, -0.07323567569255829, -0.011449594981968403, -0.030288828536868095, -0.005637860391288996, -0.04030396416783333, -0.008532860316336155, -0.03308819979429245, 0.008480697870254517, 0.05424864962697029, -0.026967838406562805, -0.029941082000732422, -0.059882164001464844, 0.022777477279305458, -0.019908558577299118, 0.03326207399368286, 0.04030396416783333, 0.011945134960114956, -0.00721576577052474, 0.04395531490445137, -0.04065171256661415, 0.05164054036140442, -0.04047783836722374, 0.02992369420826435, -0.08366810530424118, -0.004040393978357315, -0.055639639496803284, -0.023472972214221954, -0.028202341869473457, 0.00578130641952157, -0.0008601323352195323, -0.03866954892873764, -0.03999099135398865, -0.016813604161143303, -0.010754099115729332, -0.02493351325392723, -0.023038288578391075, -0.014622792601585388, -0.058212973177433014, 0.00043495636782608926, -0.028271891176700592, 0.017795991152524948, 0.047641441226005554, 0.033435944467782974, 0.0055726575665175915, 0.014535855501890182, -0.0013768638018518686, 0.039643242955207825, 0.04423351213335991, -0.04166018217802048, 0.01495315320789814, 0.03035837784409523, -0.049623604863882065, -0.050840720534324646, 0.008819752372801304, 0.09423963725566864, -0.09389188885688782, 0.0011540878331288695, -0.025142163038253784, 0.02583765797317028, 0.013762117363512516, -0.046007025986909866, -0.043120719492435455, -0.011049685068428516, 0.09145765751600266, 0.021177837625145912, 0.015274819917976856, 0.12247675657272339, -0.06433333456516266, 0.02342081069946289, -0.01441414374858141, 0.02340342290699482, -0.02978459559381008, 0.0011693018022924662, 0.05407477542757988, -0.0564742349088192, 0.07083621621131897, 0.01133657619357109, 0.02794153243303299, 0.03430531546473503, -0.0009133811690844595, -0.02554207295179367, -0.0210039634257555, 0.01443153154104948, 0.02839360386133194, -0.03713946044445038, 0.007711306214332581, 0.0010503068333491683, -0.030410541221499443, -0.037209007889032364, 0.015918152406811714, 0.04531153291463852, -0.012962297536432743, -0.02415108121931553, -0.003783930093050003, -0.005094504449516535, -0.03717423602938652, 0.04013008996844292, -0.029349910095334053, -0.017022252082824707, -0.012771036475896835, -0.047641441226005554, -0.03835657611489296, 0.046285226941108704, 0.029801981523633003, 0.06454198062419891, 0.05758702754974365, -0.01978684775531292, -0.02585504576563835, -0.023785946890711784, -0.07073189318180084, -0.0046859011054039, 0.03201017901301384, -0.0241684690117836, -0.023455586284399033, -0.014709729701280594, -0.020777927711606026, -0.07573945820331573, -0.027437297627329826, -0.017891621217131615, 0.07177513837814331, -0.013162252493202686, 0.04732846841216087, -0.02660270221531391, -0.026759188622236252, 0.05963873863220215, 0.020969189703464508, 0.10147279500961304, -0.001766993198543787, -0.052788108587265015, 0.030706126242876053, 0.03021927922964096, -0.03260135278105736, -0.00015798071399331093, -0.004448997788131237, -0.01433590054512024, -0.06715009361505508, -0.02867180109024048, 0.07149693369865417, -0.0383913516998291, -0.04572882875800133, -0.014248964376747608, -0.04263387247920036, -0.0031384234316647053, -0.0006199690396897495, 0.06342919170856476, -0.013327432796359062, -0.05452684685587883, -0.009980360046029091, 0.06061243265867233, 0.06433333456516266, 0.0544225238263607, 0.03644396364688873, 0.01737000048160553, 0.014318513683974743, -0.018830541521310806, 0.0009296818752773106, 0.018500180914998055, -0.04878900945186615, 0.02736774832010269, 0.018465405330061913, 0.09785621613264084, -0.019734684377908707, 0.008411148563027382, -0.0031362499576061964, 0.007015810813754797, 0.0024559684097766876, -0.0872151330113411, 0.00846765749156475, -0.017404774203896523, -0.039295494556427, -0.050805944949388504, -0.0242901798337698, -0.034183602780103683, 0.021977657452225685, -0.057030629366636276, -0.08679784089326859, -0.023751171305775642, 0.06579387187957764, 0.042007926851511, -0.04983225092291832, -0.04485946148633957, -0.09326594322919846, -0.027750270441174507, -0.06986252218484879, -0.02569855935871601, 0.024064144119620323, 0.03338378295302391, 0.008841486647725105, -0.0210039634257555, -0.07921693474054337, -0.028358828276395798, 0.0030145382042974234, 0.012232027016580105, -0.03260135278105736, -0.0492410808801651, -0.049797479063272476, 0.015083558857440948, -0.027385136112570763, 0.03825225308537483, 0.030167117714881897, -0.03727855905890465, -0.014075090177357197, 0.013466531410813332, -0.005850855726748705, 0.04350324347615242, 0.053379278630018234, -0.047363243997097015, -0.05306630581617355, 0.014248964376747608, -0.05091027170419693, -0.05313585698604584, -0.01245806273072958, 0.027837207540869713, -0.01980423368513584, 0.011866891756653786, -0.018813153728842735, 0.07462666928768158, 0.02535081095993519, -0.010762793011963367, 0.0049771396443247795, -0.028011081740260124, 0.021803783252835274, -0.028637027367949486, 0.0007058192859403789, 0.0001759114529704675, -0.005003220867365599, 0.022081982344388962, -0.026967838406562805, -0.018604503944516182, -0.034496575593948364, 0.05257945880293846, 0.015613873489201069, 0.08519820123910904, -0.06760216504335403, -0.055187568068504333, -0.005920405499637127, 0.05344882979989052, -0.03538333252072334, 0.008780630305409431, -0.08352901041507721, 0.02583765797317028, -0.007524392101913691, -0.04106900840997696, 0.04684162139892578, 0.04256432503461838, -0.05070162191987038, 0.029367297887802124, 0.02721126191318035, 0.03294909745454788, -0.06454198062419891, 0.02267315238714218, 0.011301801539957523, -0.04113855957984924, -0.05365747585892677, -0.04385099187493324, 0.013353513553738594, -0.04232089966535568, -0.01584860309958458, -0.024985676631331444, 0.07928648591041565, 0.03536594659090042, 0.03637441620230675, 0.02943684719502926, 0.008067747578024864, 0.035887569189071655, -0.0008166638435795903, 0.025420360267162323, -0.00981518067419529, 0.004283817484974861, 0.031471170485019684, 0.010519369505345821, -0.01336220744997263, 0.041764505207538605, 0.02973243221640587, -0.02764594554901123, -0.0006705011473968625, -0.016839684918522835, -0.010971441864967346, 0.02868918888270855, -0.04558973014354706, -0.02449882961809635, -0.02493351325392723, -0.055535316467285156, 0.012988378293812275, 0.025889819487929344, -0.03327945992350578, 0.009076216258108616, 0.05876937136054039, -0.03486171364784241 ]
444
bitmath
to_MB
null
def to_MB(self): return MB(bits=self._bit_value)
(self)
[ 0.048769235610961914, 0.02069876901805401, 0.0024529662914574146, 0.0024124388583004475, -0.016304759308695793, -0.04143166542053223, -0.0011219654697924852, -0.01210698764771223, -0.021159499883651733, -0.041499923914670944, 0.004620108753442764, 0.049212902784347534, 0.027592670172452927, 0.02631286159157753, 0.03958874195814133, 0.03066421113908291, -0.006407574284821749, -0.06364914029836655, 0.07692501693964005, 0.11337396502494812, 0.029179632663726807, 0.015494214370846748, 0.06511665135622025, 0.041056256741285324, 0.01907767727971077, 0.034298866987228394, 0.006748856510967016, 0.0035173401702195406, -0.017183560878038406, 0.019589601084589958, -0.05303526297211647, 0.028940735384821892, 0.00790495052933693, 0.017345670610666275, 0.017507780343294144, 0.012354417704045773, 0.016458336263895035, 0.0018962494796141982, -0.12463627755641937, -0.06436583399772644, 0.01039204467087984, -0.039725255221128464, 0.018326856195926666, 0.06122603639960289, 0.0014216538984328508, -0.070099376142025, 0.025954514741897583, 0.017780805006623268, -0.006940827704966068, -0.017149433493614197, 0.01945308782160282, -0.007124267052859068, -0.00630092341452837, 0.01505907904356718, -0.03863315284252167, 0.008566184900701046, -0.024606451392173767, -0.037848200649023056, -0.02818991430103779, 0.03754104673862457, -0.055117085576057434, 0.020306294783949852, 0.0678810402750969, -0.10668483376502991, 0.011970475316047668, 0.0230706799775362, -0.01685934327542782, -0.02701248973608017, 0.0018525227205827832, 0.08436497300863266, 0.0527622364461422, -0.05040738731622696, -0.018770523369312286, 0.047438234090805054, -0.05160187557339668, 0.0007860157056711614, -0.026807721704244614, -0.019060613587498665, -0.02133014053106308, 0.03465721383690834, 0.060133934020996094, 0.0461413599550724, -0.021944448351860046, -0.018941165879368782, -0.008067059330642223, -0.04678979888558388, 0.08914292603731155, 0.02967449277639389, 0.011125801131129265, 0.016364485025405884, 0.02395801432430744, -0.021978577598929405, 0.03760930523276329, 0.06781278550624847, -0.036107663065195084, -0.046550899744033813, -0.030766595155000687, 0.02624460496008396, -0.07992830127477646, 0.005281343124806881, -0.04525402560830116, -0.00559276295825839, -0.013105238787829876, -0.002964889630675316, 0.013779271394014359, 0.06771039962768555, 0.0333944670855999, -0.05579964816570282, -0.013310007750988007, -0.03668784350156784, -0.00994837749749422, 0.004202037584036589, -0.07910922914743423, -0.021466653794050217, -0.010161679238080978, 0.0461413599550724, -0.01155240461230278, -0.014402111060917377, -0.01952134445309639, 0.025186629965901375, 0.006433170288801193, 0.015792835503816605, 0.030937235802412033, -0.060577601194381714, -0.012081392109394073, 0.091531902551651, 0.08142994344234467, -0.014973758719861507, 0.04450320452451706, 0.03679022565484047, -0.012516526505351067, -0.017157966271042824, -0.01948721706867218, 0.002278059022501111, -0.027558542788028717, -0.02808753028512001, 0.012055795639753342, -0.019350703805685043, -0.014069360680878162, 0.04306982085108757, -0.02373618073761463, 0.06962157785892487, 0.0933748260140419, -0.017541907727718353, 0.004543319810181856, -0.02650056779384613, 0.0549805723130703, -0.013327072374522686, -0.023923886939883232, -0.003660252084955573, -0.007678850553929806, -0.011970475316047668, 0.0156819187104702, -0.02284884639084339, 0.012593314982950687, 0.04955418407917023, 0.04136341065168381, 0.011765705421566963, 0.03018641471862793, -0.014572752639651299, -0.016876406967639923, 0.08463799953460693, -0.04764300212264061, -0.02243930846452713, -0.01605732925236225, 0.015187060460448265, -0.029179632663726807, 0.0030182148329913616, -0.004170042462646961, -0.008425405248999596, -0.000647369772195816, 0.012320289388298988, -0.0038159622345119715, 0.025749746710062027, -0.007213853765279055, 0.015588066540658474, -0.01328441221266985, 0.017883190885186195, 0.03296786546707153, 0.02760973386466503, 0.023940950632095337, 0.010938095860183239, -0.026671208441257477, -0.00944498647004366, -0.004202037584036589, -0.014572752639651299, 0.02919669635593891, 0.046960439532995224, -0.03941810131072998, -0.041909459978342056, 0.07173752784729004, -0.004769419319927692, 0.014419175684452057, -0.0011699582682922482, -0.06484362483024597, -0.04678979888558388, 0.056516341865062714, 0.008113985881209373, 0.025152502581477165, 0.020715832710266113, -0.03354804590344429, -0.011578000150620937, 0.03310437873005867, -0.015118803828954697, 0.019572537392377853, -0.02170555107295513, -0.027149002999067307, -0.027985144406557083, -0.0186340119689703, 0.015144400298595428, -0.01627916283905506, -0.024521129205822945, -0.00952177494764328, 0.02351434715092182, 0.02402627095580101, -0.08921118080615997, -0.02310480922460556, 0.012380014173686504, 0.011339102871716022, 0.019760241732001305, -0.015340637415647507, -0.018838780000805855, -0.03385519981384277, 0.03460602089762688, -0.015391829423606396, 0.0298963263630867, -0.006838443223387003, 0.008745357394218445, 0.013745143078267574, 0.0197431780397892, -0.006245465483516455, 0.011893686838448048, -0.04504925757646561, 0.005789000075310469, -0.0333944670855999, 0.025493783876299858, 0.0354250967502594, -0.03805297240614891, -0.04211423173546791, -0.05399085208773613, 0.03421354666352272, -0.04771126061677933, 0.029537979513406754, 0.07706153392791748, 0.022968295961618423, -0.07173752784729004, -0.022319858893752098, 0.003668784163892269, -0.03887204825878143, 0.01570751518011093, -0.0199308842420578, -0.027336709201335907, 0.03388932719826698, 0.009103704243898392, 0.06818819791078568, 0.016586316749453545, -0.07658373564481735, -0.06672067940235138, -0.017985574901103973, 0.03528858348727226, 0.07207880914211273, -0.027695054188370705, 0.0608847551047802, -0.006352115888148546, 0.03388932719826698, 0.04160230606794357, -0.03424767404794693, 0.036960870027542114, -0.002502025570720434, 0.03641481697559357, 0.10545621812343597, -0.03525445610284805, -0.014069360680878162, -0.020903538912534714, -0.031466223299503326, -0.07774409651756287, 0.03475959599018097, 0.015468617901206017, -0.07016763091087341, -0.030237607657909393, -0.03354804590344429, -0.0502026192843914, 0.02653469517827034, -0.04126102477312088, -0.008915998972952366, 0.02044280618429184, 0.011919282376766205, -0.005823128391057253, 0.006488628685474396, 0.013907251879572868, -0.017217690125107765, 0.0049101985059678555, -0.04771126061677933, 0.0095985634252429, -0.01929951086640358, -0.030271736904978752, 0.0014120553387328982, -0.02672240138053894, 0.06559444963932037, 0.040100663900375366, -0.06620875746011734, -0.015494214370846748, 0.006885369308292866, 0.0944669246673584, -0.027541477233171463, 0.07549163699150085, 0.01570751518011093, -0.0376434326171875, 0.02878715842962265, 0.03685848414897919, -0.016748426482081413, 0.004667034838348627, 0.04047607630491257, 0.008003069087862968, 0.006996286101639271, 0.014350919052958488, 0.011791301891207695, 0.026449374854564667, -0.013719546608626842, 0.026671208441257477, 0.04941767081618309, -0.0184463057667017, -0.03706325218081474, 0.004270294215530157, -0.0289748627692461, -0.062420524656772614, -0.017627228051424026, 0.01749071478843689, 0.05678936839103699, -0.05586790665984154, 0.0011592931114137173, -0.034861981868743896, 0.02399214170873165, -0.009615627117455006, -0.02081821672618389, 0.011714513413608074, 0.013088174164295197, 0.025818003341555595, -0.003158993786200881, -0.012064327485859394, 0.09467169642448425, 0.014939630404114723, 0.0037924989592283964, 0.008510726504027843, 0.019589601084589958, 0.02088647335767746, 0.00964975543320179, -0.006241199094802141, -0.01926538348197937, 0.017004387453198433, -0.017277413979172707, -0.04085148498415947, 0.007806831505149603, 0.0025660160463303328, -0.03501556068658829, -0.030237607657909393, 0.014598348177969456, -0.056004416197538376, -0.02329251356422901, 0.05412736535072327, -0.03158567100763321, 0.026995426043868065, 0.01812208816409111, -0.01018727570772171, 0.057779084891080856, -0.022302795201539993, -0.04504925757646561, 0.015460086055099964, 0.009982505813241005, 0.02808753028512001, 0.05173838883638382, 0.0251013096421957, -0.0479842834174633, 0.0030395451467484236, 0.02158610336482525, 0.04975895211100578, -0.07829014956951141, 0.02904311940073967, -0.027592670172452927, -0.01234588585793972, 0.014146149158477783, -0.04412779584527016, -0.0479842834174633, 0.010468833148479462, 0.07296614348888397, 0.05890531837940216, 0.00952177494764328, -0.030681274831295013, -0.017951447516679764, -0.010545621626079082, -0.046482641249895096, 0.04764300212264061, -0.05248920992016792, -0.007772703189402819, 0.009786268696188927, 0.03276309743523598, 0.04887161776423454, -0.022353988140821457, 0.043752383440732956, 0.03182457014918327, 0.004466531332582235, -0.012644507922232151, -0.052898749709129333, 0.05938311293721199, -0.08607138693332672, -0.026227541267871857, -0.037404533475637436, 0.04569769278168678, -0.0453905388712883, 0.05095344036817551, -0.014794585295021534, -0.0019506413955241442, 0.003777567995712161, -0.000709760410245508, -0.019470153376460075, -0.03907682001590729, 0.008770953863859177, -0.10784519463777542, -0.012217904441058636, -0.02849706821143627, 0.002981953788548708, 0.04624374583363533, 0.0498272106051445, -0.023019488900899887, 0.011953410692512989, -0.027404965832829475, 0.008472331799566746, 0.018582819029688835, -0.0269442331045866, -0.003681582398712635, 0.01583549752831459, -0.0238044373691082, -0.03380400687456131, -0.04436669126152992, 0.019128870218992233, -0.03757517784833908, -0.04044194892048836, -0.055117085576057434, -0.020511062815785408, 0.03914507478475571, 0.05668698251247406, -0.017098240554332733, 0.017576036974787712, -0.003464014967903495, 0.019879691302776337, -0.003263511462137103, -0.06027044728398323, -0.017379797995090485, -0.004112451337277889, -0.005801798310130835, 0.0038180951960384846, -0.02557910420000553, 0.03450363501906395, -0.09644636511802673, 0.06579922139644623, -0.035117942839860916, -0.033309146761894226, -0.06156731769442558, 0.03634655848145485, -0.050578031688928604, -0.002568149007856846, 0.002563882851973176, 0.0002852906472980976, 0.007282109931111336, -0.03774581849575043, 0.041977718472480774, 0.008958659134805202, 0.0494517982006073, 0.06156731769442558, 0.014547156170010567, 0.004863271955400705, 0.005136298015713692, 0.04624374583363533, -0.05907595902681351, 0.050578031688928604, -0.021603167057037354, -0.05579964816570282, -0.007567934226244688, 0.012303225696086884, -0.020528128370642662, 0.060133934020996094, -0.01203019917011261, 0.027985144406557083, 0.009453518316149712, -0.05542423948645592, 0.014001104049384594, 0.03208053112030029, 0.03672197088599205, 0.05798385664820671, -0.0039012827910482883, -0.07931399345397949, 0.06873424351215363, -0.008839210495352745, 0.008489396423101425, -0.03713151067495346, 0.026893042027950287, -0.005716477986425161, 0.004888868425041437, -0.013506244868040085, 0.01442770753055811, -0.028138721361756325, 0.02247343584895134, -0.06218162551522255, -0.0586664192378521, -0.06740324199199677, 0.003948208875954151, -0.04047607630491257, -0.03597114980220795, -0.006599545478820801, -0.038291867822408676, -0.04266028106212616, -0.000234898179769516, -0.08313635736703873, 0.002000767271965742, -0.037404533475637436, 0.023343706503510475, -0.02675652876496315, -0.00863444060087204, -0.0002198337606387213, -0.031312648206949234, 0.01606586202979088, 0.004688364919275045, 0.01580990105867386, -0.039247460663318634, -0.014820181764662266, -0.02774624712765217, -0.029282016679644585, -0.020988859236240387, 0.02126188389956951, 0.005422121845185757, -0.010084890760481358, -0.017985574901103973, 0.013873123563826084, 0.035117942839860916, -0.00937672983855009, -0.029537979513406754, -0.0029264953918755054, 0.01605732925236225, -0.005921246949583292, 0.0007753506070002913, -0.07132799178361893, -0.09351133555173874, 0.0789727121591568, 0.03590289503335953, -0.02967449277639389, 0.0771297886967659, -0.00238044373691082, 0.02399214170873165, 0.03996415063738823, -0.0024273700546473265, -0.03187576308846474, -0.00010565085540292785, -0.020528128370642662, -0.023855630308389664, 0.04952005669474602, 0.010767455212771893, 0.05562900751829147, 0.019982075318694115, 0.028701838105916977, -0.03221704438328743, 0.02110830694437027, 0.009880120866000652, 0.009026915766298771, 0.020579319447278976, -0.04440082237124443, 0.011654788628220558, -0.04678979888558388, -0.01866813935339451, 0.0122690973803401, 0.024299295619130135, 0.037404533475637436, 0.038325998932123184, 0.025374336168169975, -0.008992787450551987, 0.050578031688928604, -0.004052726551890373, -0.008101187646389008, 0.012166712433099747, -0.0033957583364099264, 0.026995426043868065, -0.037472791969776154, 0.04276266694068909, -0.0023313844576478004, 0.05699413642287254, 0.00880508217960596, -0.01472632959485054, -0.03344566002488136, -0.06402455270290375, -0.0026108091697096825, 0.002278059022501111, 0.045083384960889816, 0.03033999167382717, 0.014171745628118515, -0.021415460854768753, -0.02078408934175968, -0.027336709201335907, -0.04842795059084892, -0.03795058652758598, -0.002088220790028572, 0.01793438196182251, 0.056516341865062714, 0.009811865165829659, -0.029401466250419617, 0.07917748391628265, 0.05706239119172096, 0.04167056456208229, -0.003464014967903495, -0.039213329553604126, 0.016833746805787086, 0.02487947605550289, -0.03665371239185333, -0.022558756172657013, -0.02034042216837406, -0.021381333470344543, -0.03863315284252167, -0.0638539120554924, 0.0368926115334034, -0.06327372789382935, -0.020988859236240387, -0.046073105186223984, -0.03685848414897919, 0.03341153264045715, -0.023121872916817665, 0.02066463977098465, 0.05180664733052254, -0.011066077277064323, -0.02952091582119465, 0.03008403070271015, 0.021671423688530922, 0.0020391615107655525, -0.004287358373403549, 0.059587880969047546, 0.04532228410243988, -0.0313638374209404, -0.0368926115334034, 0.01875345967710018, -0.04112451151013374, 0.039725255221128464, 0.031090812757611275, 0.0686318650841713, 0.00869843177497387, 0.017627228051424026, 0.014700733125209808, -0.03351391851902008, -0.018838780000805855, -0.014564219862222672, -0.0015176394954323769, -0.003655986161902547, -0.0490763895213604, -0.008527790196239948, -0.049724824726581573, -0.004170042462646961, 0.023719117045402527, -0.027336709201335907, 0.04320633411407471, -0.007431420963257551, 0.019350703805685043, 0.045561179518699646, -0.04839382320642471, -0.050578031688928604, -0.08716348558664322, -0.08456974476575851, -0.0726931169629097, -0.035152073949575424, 0.034742534160614014, 0.01407789345830679, -0.011509744450449944, 0.020613448694348335, -0.051499493420124054, -0.02557910420000553, 0.012004603631794453, 0.03798471391201019, -0.01210698764771223, -0.0741947591304779, -0.05928072705864906, 0.04617548733949661, -0.014248534105718136, 0.05272810906171799, 0.006962157785892487, 0.015161463990807533, 0.02450406551361084, 0.02218334563076496, -0.0490763895213604, 0.053240031003952026, 0.031466223299503326, -0.019760241732001305, -0.0800648182630539, 0.0337698794901371, -0.04774538800120354, 0.01729447767138481, -0.005533038638532162, 0.007678850553929806, -0.0021724747493863106, 0.013207622803747654, -0.04112451151013374, 0.09938139468431473, 0.021756744012236595, -0.002103151986375451, 0.028735965490341187, -0.020801153033971786, -0.03033999167382717, -0.028206977993249893, -0.03257539123296738, -0.006258263252675533, 0.010161679238080978, -0.020067397505044937, 0.021449590101838112, 0.009231684729456902, 0.014922566711902618, 0.026415245607495308, -0.004765153396874666, 0.08545707911252975, -0.02476002834737301, -0.006629407871514559, 0.02738790027797222, 0.010878372006118298, 0.0031973880250006914, 0.06579922139644623, -0.021671423688530922, 0.03795058652758598, -0.01885584369301796, 0.019879691302776337, 0.03354804590344429, 0.01830979250371456, -0.05491231381893158, 0.02295123226940632, -0.016748426482081413, 0.014820181764662266, -0.018429242074489594, -0.02317306585609913, 0.0383942537009716, -0.013420924544334412, 0.013600097969174385, 0.01256771944463253, -0.011040480807423592, -0.018326856195926666, -0.006160144694149494, -0.01730301044881344, 0.05272810906171799, 0.012422674335539341, 0.02365086041390896, 0.055526621639728546, 0.015980541706085205, 0.031312648206949234, -0.048735104501247406, 0.02295123226940632, 0.015460086055099964, 0.05562900751829147, 0.012388546019792557, -0.0005775135941803455, 0.010562686249613762, -0.053308289498090744, 0.01018727570772171, 0.005264278966933489, 0.02539139986038208, 0.000843607063870877, 0.0017927984008565545, -0.027336709201335907, -0.03859902173280716, -0.02107417955994606, -0.01628769561648369, -0.0394863560795784, -0.015605131164193153, 0.024401681497693062, -0.04897400364279747, 0.017098240554332733, 0.013548905961215496, -0.0102384677156806 ]
445
bitmath
to_Mb
null
def to_Mb(self): return Mb(bits=self._bit_value)
(self)
[ 0.060102034360170364, 0.02492077834904194, 0.019825322553515434, -0.01187780313193798, -0.0064258393831551075, -0.05884990841150284, -0.003043361008167267, -0.01843407191336155, -0.03780724108219147, -0.028920624405145645, -0.011703897267580032, 0.046432994306087494, 0.02665984258055687, 0.04834596440196037, 0.028816280886530876, 0.011625639162957668, 0.0049911122769117355, -0.06051940843462944, 0.06834519654512405, 0.0968310534954071, 0.028051093220710754, 0.034485626965761185, 0.06778869032859802, 0.06799738109111786, 0.0018749277805909514, 0.00966919306665659, 0.0018194951117038727, 0.011982147581875324, -0.02464252896606922, 0.015773305669426918, -0.07199722528457642, 0.026938091963529587, 0.04041583463549614, 0.01739063486456871, -0.010469161905348301, -0.0023151282221078873, 0.029703203588724136, 0.036102958023548126, -0.11018706113100052, -0.07651878893375397, 0.011634334921836853, -0.052763186395168304, 0.0007179071544669569, 0.04605039954185486, 0.024607747793197632, -0.08027517050504684, 0.031720519065856934, 0.03495517373085022, -0.013903812505304813, 0.009512676857411861, 0.02672940492630005, -0.0007026903331279755, -0.003480300772935152, 0.009260512888431549, -0.046363431960344315, -0.003128140466287732, -0.02213827706873417, -0.02645115554332733, -0.013851640745997429, 0.032624829560518265, -0.05690215528011322, 0.046363431960344315, 0.04052018001675606, -0.11735200136899948, 0.03311176970601082, 0.015329844318330288, -0.014860297553241253, -0.026781577616930008, 0.0043976567685604095, 0.0864662379026413, 0.039894115179777145, -0.03217267245054245, -0.028155436739325523, 0.0551283098757267, -0.032555267214775085, -0.013495132327079773, -0.01661675050854683, -0.005347620230168104, -0.02850325033068657, 0.027894577011466026, 0.06358016282320023, 0.03299003466963768, 0.0009342031553387642, -0.023355621844530106, -0.0201905257999897, -0.04862421378493309, 0.0874401107430458, 0.0136951245367527, 0.02370343543589115, -0.014321187511086464, 0.01730368100106716, -0.03212050348520279, 0.018016697838902473, 0.081109918653965, -0.026033779606223106, -0.025998998433351517, -0.014469007961452007, 0.040659304708242416, -0.058641217648983, 0.01642545498907566, -0.0665365681052208, 0.007625793106853962, -0.03457258269190788, -0.011625639162957668, 0.018573198467493057, 0.0717189759016037, 0.01932099461555481, -0.03457258269190788, -0.01744280569255352, -0.06236281618475914, -0.025546841323375702, 0.02843368798494339, -0.06465838104486465, -0.02486860752105713, -0.018712323158979416, 0.05105890333652496, -0.007621445693075657, -0.003560732351616025, 0.005065022502094507, 0.040798429399728775, 0.0043041822500526905, 0.014138585887849331, 0.0420505553483963, -0.04883290082216263, 0.012712554074823856, 0.07568404078483582, 0.08069254457950592, -0.02947712503373623, 0.0531109981238842, 0.0013923377264291048, -0.015468969009816647, -0.014129890128970146, -0.012877765111625195, 0.02020791731774807, -0.035389941185712814, -0.022294793277978897, -0.005756299942731857, -0.04132014885544777, -0.0070084258913993835, 0.04128536581993103, -0.011329998262226582, 0.06966688483953476, 0.09898748993873596, -0.021633949130773544, 0.00688234344124794, -0.031598784029483795, 0.06834519654512405, 0.012738639488816261, -0.03697248920798302, -0.01569504849612713, 0.00524762412533164, -0.02478165365755558, 0.021494824439287186, -0.0035542109981179237, -0.009217035956680775, 0.06789303570985794, 0.045528680086135864, -0.012703858315944672, 0.023442575708031654, -0.022659996524453163, -0.007786656729876995, 0.06698872148990631, -0.02944234386086464, -0.0008173598325811327, -0.01472117193043232, -0.001285820035263896, -0.03394651785492897, -0.017616713419556618, -0.008225769735872746, -0.0037346386816352606, -0.0033194373827427626, 0.01733846217393875, 0.012147358618676662, 0.01933838613331318, 0.02099049650132656, 0.03556384891271591, -0.03961586579680443, 0.021442651748657227, 0.0457373671233654, 0.006473663728684187, 0.031703125685453415, 0.030537953600287437, -0.0077170939184725285, -0.028659766539931297, 0.012016928754746914, 0.006817128509283066, 0.019825322553515434, 0.053632717579603195, -0.037215959280729294, -0.008808356709778309, 0.08284898102283478, -0.005630217958241701, 0.019025353714823723, 0.003417259780690074, -0.062015000730752945, -0.030659688636660576, 0.05029371380805969, 0.02552945166826248, 0.023164324462413788, 0.032607439905405045, -0.006612788885831833, -0.04497218132019043, 0.022468699142336845, 0.017147164791822433, 0.0055606551468372345, -0.020712245255708694, -0.018764493986964226, -0.026433764025568962, 0.008569234982132912, -0.013529913499951363, -0.004882420413196087, -0.022764340043067932, -0.010356122627854347, -0.0008488803287036717, 0.01843407191336155, -0.07046685367822647, 0.010399599559605122, 0.012790811248123646, 0.0014738562749698758, 0.030903156846761703, 0.00298684136942029, -0.01519941445440054, -0.0066040935926139355, 0.05422399938106537, -0.009147473610937595, 0.05711084231734276, -0.03205094113945961, 0.0030281441286206245, 0.014355968683958054, 0.016199376434087753, 0.024051247164607048, 0.017894962802529335, -0.03194659575819969, -0.007595359813421965, -0.042815741151571274, -0.005721518769860268, 0.050815433263778687, -0.03206833079457283, -0.07394497841596603, -0.027146780863404274, 0.01642545498907566, -0.012147358618676662, 0.05798037350177765, 0.0783969834446907, 0.011703897267580032, -0.07043206691741943, -0.005243276245892048, -0.005182409193366766, -0.021320918574929237, 0.022694777697324753, -0.02671201527118683, -0.03205094113945961, 0.028781499713659286, 0.016747180372476578, 0.07721441984176636, 0.024486012756824493, -0.06931906938552856, -0.04107667878270149, -0.03123357892036438, 0.04142449051141739, 0.05119802802801132, -0.03471170738339424, 0.044659148901700974, -0.006295409519225359, 0.03641599044203758, 0.03220745548605919, -0.03648555278778076, 0.03676380217075348, -0.0022010020911693573, 0.033320456743240356, 0.1149173155426979, -0.03658989444375038, -0.009356161579489708, -0.027164170518517494, -0.040033239871263504, -0.06625831872224808, 0.037146396934986115, 0.006634526886045933, -0.05784124881029129, -0.04685036838054657, -0.03109445422887802, -0.05196321755647659, 0.02123396471142769, -0.016999345272779465, -0.009886575862765312, 0.05318056046962738, 0.00503024086356163, -0.003547689411789179, 0.00011582433944568038, 0.012103881686925888, -0.000015683839592384174, 0.0010499595664441586, -0.03606817498803139, 0.008460544049739838, -0.0043541803024709225, -0.05474571883678436, 0.007217113394290209, -0.0011814762838184834, 0.057423874735832214, 0.03038143925368786, -0.04229402169585228, -0.02302519977092743, -0.012625600211322308, 0.08250117301940918, -0.01848624460399151, 0.045528680086135864, 0.014060327783226967, -0.0284858588129282, 0.010886536911129951, 0.04650255665183067, -0.008017082698643208, 0.0009037695126608014, 0.038050707429647446, -0.011303912848234177, 0.010269169695675373, -0.008921395055949688, 0.021320918574929237, 0.0514414981007576, -0.004021584056317806, 0.01506028976291418, 0.02850325033068657, -0.021373089402914047, -0.03222484514117241, -0.0042650531977415085, -0.06118025258183479, -0.056554343551397324, -0.0292336568236351, 0.0005478049861267209, 0.0062823668122291565, -0.07234504073858261, 0.016025470569729805, -0.024225153028964996, 0.002262956229969859, -0.013303834944963455, -0.007647531572729349, -0.004097668454051018, 0.0023673002142459154, 0.004056365694850683, -0.006278018932789564, -0.01841668225824833, 0.08535323292016983, 0.012121272273361683, 0.011625639162957668, 0.017981916666030884, 0.01107783429324627, 0.015408102422952652, -0.011782154440879822, 0.00759970722720027, -0.030503172427415848, 0.012077795341610909, 0.008412719704210758, -0.05791081115603447, 0.006069331429898739, -0.005569350905716419, -0.03285090997815132, -0.02744242176413536, 0.010921318084001541, -0.033511754125356674, -0.013077757321298122, 0.06556269526481628, -0.0182601660490036, 0.021581778302788734, 0.022625215351581573, -0.01416467223316431, 0.04765033721923828, 0.007182332221418619, -0.05944119021296501, 0.01241691317409277, 0.00817794632166624, 0.019790541380643845, 0.05057196691632271, 0.014738562516868114, -0.06319756805896759, 0.01002570055425167, 0.017051517963409424, 0.03777245804667473, -0.09801361709833145, 0.0383637398481369, -0.0265554990619421, -0.014477702789008617, -0.0052737100049853325, -0.07957954704761505, -0.04605039954185486, 0.00004840166729991324, 0.030885767191648483, 0.0643453449010849, 0.04198099300265312, -0.024294717237353325, -0.04326789826154709, 0.004449828527867794, -0.027198951691389084, 0.027007656171917915, -0.0720667913556099, -0.02665984258055687, -0.015016812831163406, 0.03227701783180237, 0.05964987725019455, -0.023668654263019562, 0.053667496889829636, -0.0005475332727655768, 0.014782039448618889, -0.0046302564442157745, -0.032537877559661865, 0.008525758981704712, -0.0711972564458847, -0.030833594501018524, -0.03012057952582836, 0.040033239871263504, -0.058119501918554306, 0.048311181366443634, -0.015329844318330288, 0.024259934201836586, 0.017747143283486366, -0.005725866183638573, -0.022190449759364128, -0.056519560515880585, 0.016721095889806747, -0.12013450264930725, -0.002187959151342511, -0.0024672963190823793, 0.007830132730305195, 0.03394651785492897, 0.03937239572405815, -0.04212011769413948, 0.011956061236560345, -0.005073717795312405, 0.010234388522803783, 0.02653810754418373, -0.045319993048906326, 0.007277980446815491, 0.007830132730305195, -0.02380777895450592, -0.009295294061303139, -0.030955329537391663, -0.002421645913273096, -0.042537491768598557, -0.029877109453082085, -0.05791081115603447, -0.006078026723116636, 0.036311645060777664, 0.03944195806980133, -0.003310742089524865, 0.0283989068120718, -0.018903620541095734, 0.0007211678894236684, -0.025233810767531395, -0.03483344241976738, 0.0008499672403559089, -0.023425184190273285, 0.0141994534060359, -0.005256319418549538, -0.023181715980172157, 0.04493739828467369, -0.08618798106908798, 0.06403231620788574, -0.029042359441518784, -0.027946749702095985, -0.052867528051137924, 0.05975421890616417, -0.04876333847641945, -0.008195336908102036, -0.003838982665911317, -0.0014151629293337464, 0.0005847600987181067, -0.02292085625231266, 0.020329652354121208, 0.02492077834904194, 0.035163864493370056, 0.03206833079457283, 0.002880323911085725, 0.009999615140259266, 0.006521488074213266, 0.05151106044650078, -0.0497719943523407, 0.018521025776863098, -0.029059750959277153, -0.03885067626833916, 0.003582470817491412, 0.020764417946338654, -0.023581700399518013, 0.041702739894390106, -0.017860181629657745, 0.02212088741362095, -0.0011727808741852641, -0.03366826847195625, -0.003497691359370947, 0.04058974236249924, 0.007634488400071859, 0.023251278325915337, -0.025007732212543488, -0.07130160182714462, 0.0685538798570633, 0.028033703565597534, -0.0029672770760953426, -0.0315118283033371, 0.01932099461555481, -0.004560694098472595, 0.006238890346139669, 0.007847524248063564, 0.026329420506954193, -0.027894577011466026, 0.041876647621393204, -0.09710930287837982, -0.05700650066137314, -0.07491885125637054, -0.007891000248491764, -0.042537491768598557, -0.0437200553715229, -0.02015574462711811, -0.03505951911211014, -0.04225924238562584, 0.007286675740033388, -0.08618798106908798, 0.007843175902962685, -0.03373783081769943, 0.010886536911129951, -0.022399136796593666, -0.018138431012630463, -0.00926920771598816, -0.04218968003988266, 0.008169250562787056, 0.025059904903173447, -0.003819418139755726, -0.030624907463788986, -0.0182601660490036, -0.03575514629483223, -0.022607825696468353, -0.02845107764005661, 0.015825476497411728, 0.024972951039671898, 0.0037346386816352606, -0.03568558022379875, 0.021355699747800827, 0.036207299679517746, -0.028120655566453934, -0.017616713419556618, 0.01649501733481884, 0.027111999690532684, -0.04667646437883377, -0.003991150762885809, -0.0553022176027298, -0.06524965912103653, 0.10044830292463303, 0.03239875286817551, -0.01660805568099022, 0.09641367942094803, -0.026816358789801598, 0.026433764025568962, 0.010451771318912506, 0.004917202051728964, -0.040937554091215134, -0.0052345809526741505, -0.026833748444914818, -0.012642991729080677, 0.06500618904829025, -0.016842829063534737, 0.0567978136241436, 0.019460119307041168, 0.0061041126027703285, -0.020451385527849197, -0.0026759838219732046, 0.005878034513443708, 0.020677464082837105, 0.013112538494169712, -0.06222369149327278, 0.025303373113274574, -0.035320378839969635, -0.008656187914311886, 0.018138431012630463, 0.04521565139293671, 0.03582470864057541, 0.016112422570586205, 0.0017292812699452043, 0.008112731389701366, 0.04149405285716057, 0.0006880169967189431, -0.019599245861172676, 0.00356725393794477, -0.004682428203523159, 0.036346424371004105, -0.023668654263019562, 0.06591050326824188, 0.01739932969212532, 0.060136813670396805, 0.022346965968608856, -0.019825322553515434, -0.038920238614082336, -0.04973721504211426, 0.013773382641375065, -0.009912661276757717, 0.039859335869550705, 0.008777922950685024, 0.010416990146040916, -0.020329652354121208, -0.01475595310330391, -0.01832972839474678, -0.048206839710474014, -0.03415520489215851, 0.02669462375342846, 0.02199915237724781, 0.07144072651863098, 0.0096778878942132, -0.03568558022379875, 0.06041506305336952, 0.05217190459370613, 0.027668500319123268, -0.01468639075756073, -0.04215489700436592, 0.025390326976776123, 0.03961586579680443, -0.03780724108219147, -0.021355699747800827, -0.030868375673890114, -0.014060327783226967, -0.07081466168165207, -0.0623280331492424, 0.0147472582757473, -0.01940794847905636, -0.021320918574929237, -0.038155052810907364, -0.028155436739325523, 0.03290307894349098, -0.02292085625231266, 0.023251278325915337, 0.04319833591580391, -0.011651725508272648, -0.04142449051141739, 0.03031187504529953, 0.00876922719180584, 0.04462436959147453, 0.011590857990086079, 0.040033239871263504, 0.048067715018987656, -0.023494746536016464, -0.03465953469276428, 0.0010265909368172288, -0.053876183927059174, 0.03379000350832939, 0.026833748444914818, 0.08952698856592178, -0.008469238877296448, 0.0059997690841555595, 0.024555575102567673, -0.045459117740392685, -0.019129697233438492, -0.014025546610355377, -0.005499788094311953, -0.005651956424117088, -0.04744165018200874, -0.033494360744953156, -0.05839775130152702, -0.013364702463150024, 0.013164710253477097, -0.01926882378757, 0.04660690203309059, -0.02665984258055687, 0.0025955522432923317, 0.0549544058740139, -0.050850216299295425, -0.05196321755647659, -0.0931442379951477, -0.06657134741544724, -0.04966765269637108, -0.04225924238562584, 0.022346965968608856, 0.015555922873318195, -0.010912623256444931, -0.0016216766089200974, -0.04427655413746834, -0.003971586003899574, 0.024972951039671898, 0.04229402169585228, -0.03137270361185074, -0.06698872148990631, -0.04782424494624138, 0.03139009699225426, -0.013486437499523163, 0.05220668390393257, -0.003178138518705964, 0.005069369915872812, 0.07756222784519196, 0.013529913499951363, -0.018834056332707405, 0.0720667913556099, 0.06646700203418732, -0.025894654914736748, -0.06330190598964691, 0.045598242431879044, -0.05255449563264847, 0.011469123885035515, -0.0011803893139585853, 0.02116440236568451, 0.0014477702789008617, 0.013738601468503475, -0.015242891386151314, 0.12020406872034073, 0.0017173251835629344, 0.003888980718329549, 0.015225500799715519, -0.01736454851925373, -0.02749459259212017, -0.03479865938425064, -0.045424338430166245, 0.00240860297344625, -0.002697722287848592, -0.0013836423167958856, 0.03311176970601082, -0.0021086144261062145, -0.02106005884706974, 0.026381593197584152, -0.00040759300463832915, 0.10503943264484406, -0.0387115515768528, -0.030990110710263252, 0.016051555052399635, 0.005038936156779528, -0.011538686230778694, 0.04518086835741997, -0.026155514642596245, 0.040763646364212036, -0.039859335869550705, -0.0031977028120309114, 0.014964641071856022, 0.02217305824160576, -0.032607439905405045, 0.022694777697324753, -0.023390403017401695, 0.0009342031553387642, -0.019477510824799538, -0.0311640165746212, 0.02836412563920021, -0.03384217619895935, -0.006664960645139217, 0.00011480536340968683, 0.008273594081401825, -0.0041650570929050446, -0.029546687379479408, -0.04058974236249924, 0.04504174366593361, 0.03137270361185074, 0.0007548622088506818, 0.06497140973806381, 0.02744242176413536, 0.045528680086135864, -0.05884990841150284, 0.035389941185712814, 0.005930206272751093, 0.055406562983989716, 0.0028085873927921057, -0.017668884247541428, 0.00043232031748630106, -0.019825322553515434, 0.020677464082837105, -0.01279950700700283, 0.032503094524145126, -0.002558597130700946, 0.001380381640046835, 0.0019086221000179648, -0.03333784639835358, -0.010190911591053009, -0.02199915237724781, -0.01914708875119686, 0.02100788615643978, 0.015808086842298508, -0.059093374758958817, 0.013416874222457409, 0.013877726159989834, -0.006886691320687532 ]