Created
May 17, 2019 11:25
-
-
Save hackaugusto/11e58160393b0acdcf726d159970a3e0 to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" standalone="no"?> | |
| <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> | |
| <svg version="1.1" width="1200" height="1494" onload="init(evt)" viewBox="0 0 1200 1494" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> | |
| <!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. --> | |
| <!-- NOTES: --> | |
| <defs > | |
| <linearGradient id="background" y1="0" y2="1" x1="0" x2="0" > | |
| <stop stop-color="#eeeeee" offset="5%" /> | |
| <stop stop-color="#eeeeb0" offset="95%" /> | |
| </linearGradient> | |
| </defs> | |
| <style type="text/css"> | |
| .func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; } | |
| </style> | |
| <script type="text/ecmascript"> | |
| <![CDATA[ | |
| var details, searchbtn, matchedtxt, svg; | |
| function init(evt) { | |
| details = document.getElementById("details").firstChild; | |
| searchbtn = document.getElementById("search"); | |
| matchedtxt = document.getElementById("matched"); | |
| svg = document.getElementsByTagName("svg")[0]; | |
| searching = 0; | |
| } | |
| // mouse-over for info | |
| function s(node) { // show | |
| info = g_to_text(node); | |
| details.nodeValue = "Function: " + info; | |
| } | |
| function c() { // clear | |
| details.nodeValue = ' '; | |
| } | |
| // ctrl-F for search | |
| window.addEventListener("keydown",function (e) { | |
| if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { | |
| e.preventDefault(); | |
| search_prompt(); | |
| } | |
| }) | |
| // functions | |
| function find_child(parent, name, attr) { | |
| var children = parent.childNodes; | |
| for (var i=0; i<children.length;i++) { | |
| if (children[i].tagName == name) | |
| return (attr != undefined) ? children[i].attributes[attr].value : children[i]; | |
| } | |
| return; | |
| } | |
| function orig_save(e, attr, val) { | |
| if (e.attributes["_orig_"+attr] != undefined) return; | |
| if (e.attributes[attr] == undefined) return; | |
| if (val == undefined) val = e.attributes[attr].value; | |
| e.setAttribute("_orig_"+attr, val); | |
| } | |
| function orig_load(e, attr) { | |
| if (e.attributes["_orig_"+attr] == undefined) return; | |
| e.attributes[attr].value = e.attributes["_orig_"+attr].value; | |
| e.removeAttribute("_orig_"+attr); | |
| } | |
| function g_to_text(e) { | |
| var text = find_child(e, "title").firstChild.nodeValue; | |
| return (text) | |
| } | |
| function g_to_func(e) { | |
| var func = g_to_text(e); | |
| // if there's any manipulation we want to do to the function | |
| // name before it's searched, do it here before returning. | |
| return (func); | |
| } | |
| function update_text(e) { | |
| var r = find_child(e, "rect"); | |
| var t = find_child(e, "text"); | |
| var w = parseFloat(r.attributes["width"].value) -3; | |
| var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); | |
| t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3; | |
| // Smaller than this size won't fit anything | |
| if (w < 2*12*0.59) { | |
| t.textContent = ""; | |
| return; | |
| } | |
| t.textContent = txt; | |
| // Fit in full text width | |
| if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w) | |
| return; | |
| for (var x=txt.length-2; x>0; x--) { | |
| if (t.getSubStringLength(0, x+2) <= w) { | |
| t.textContent = txt.substring(0,x) + ".."; | |
| return; | |
| } | |
| } | |
| t.textContent = ""; | |
| } | |
| // zoom | |
| function zoom_reset(e) { | |
| if (e.attributes != undefined) { | |
| orig_load(e, "x"); | |
| orig_load(e, "width"); | |
| } | |
| if (e.childNodes == undefined) return; | |
| for(var i=0, c=e.childNodes; i<c.length; i++) { | |
| zoom_reset(c[i]); | |
| } | |
| } | |
| function zoom_child(e, x, ratio) { | |
| if (e.attributes != undefined) { | |
| if (e.attributes["x"] != undefined) { | |
| orig_save(e, "x"); | |
| e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10; | |
| if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3; | |
| } | |
| if (e.attributes["width"] != undefined) { | |
| orig_save(e, "width"); | |
| e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio; | |
| } | |
| } | |
| if (e.childNodes == undefined) return; | |
| for(var i=0, c=e.childNodes; i<c.length; i++) { | |
| zoom_child(c[i], x-10, ratio); | |
| } | |
| } | |
| function zoom_parent(e) { | |
| if (e.attributes) { | |
| if (e.attributes["x"] != undefined) { | |
| orig_save(e, "x"); | |
| e.attributes["x"].value = 10; | |
| } | |
| if (e.attributes["width"] != undefined) { | |
| orig_save(e, "width"); | |
| e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2); | |
| } | |
| } | |
| if (e.childNodes == undefined) return; | |
| for(var i=0, c=e.childNodes; i<c.length; i++) { | |
| zoom_parent(c[i]); | |
| } | |
| } | |
| function zoom(node) { | |
| var attr = find_child(node, "rect").attributes; | |
| var width = parseFloat(attr["width"].value); | |
| var xmin = parseFloat(attr["x"].value); | |
| var xmax = parseFloat(xmin + width); | |
| var ymin = parseFloat(attr["y"].value); | |
| var ratio = (svg.width.baseVal.value - 2*10) / width; | |
| // XXX: Workaround for JavaScript float issues (fix me) | |
| var fudge = 0.0001; | |
| var unzoombtn = document.getElementById("unzoom"); | |
| unzoombtn.style["opacity"] = "1.0"; | |
| var el = document.getElementsByTagName("g"); | |
| for(var i=0;i<el.length;i++){ | |
| var e = el[i]; | |
| var a = find_child(e, "rect").attributes; | |
| var ex = parseFloat(a["x"].value); | |
| var ew = parseFloat(a["width"].value); | |
| // Is it an ancestor | |
| if (0 == 0) { | |
| var upstack = parseFloat(a["y"].value) > ymin; | |
| } else { | |
| var upstack = parseFloat(a["y"].value) < ymin; | |
| } | |
| if (upstack) { | |
| // Direct ancestor | |
| if (ex <= xmin && (ex+ew+fudge) >= xmax) { | |
| e.style["opacity"] = "0.5"; | |
| zoom_parent(e); | |
| e.onclick = function(e){unzoom(); zoom(this);}; | |
| update_text(e); | |
| } | |
| // not in current path | |
| else | |
| e.style["display"] = "none"; | |
| } | |
| // Children maybe | |
| else { | |
| // no common path | |
| if (ex < xmin || ex + fudge >= xmax) { | |
| e.style["display"] = "none"; | |
| } | |
| else { | |
| zoom_child(e, xmin, ratio); | |
| e.onclick = function(e){zoom(this);}; | |
| update_text(e); | |
| } | |
| } | |
| } | |
| } | |
| function unzoom() { | |
| var unzoombtn = document.getElementById("unzoom"); | |
| unzoombtn.style["opacity"] = "0.0"; | |
| var el = document.getElementsByTagName("g"); | |
| for(i=0;i<el.length;i++) { | |
| el[i].style["display"] = "block"; | |
| el[i].style["opacity"] = "1"; | |
| zoom_reset(el[i]); | |
| update_text(el[i]); | |
| } | |
| } | |
| // search | |
| function reset_search() { | |
| var el = document.getElementsByTagName("rect"); | |
| for (var i=0; i < el.length; i++) { | |
| orig_load(el[i], "fill") | |
| } | |
| } | |
| function search_prompt() { | |
| if (!searching) { | |
| var term = prompt("Enter a search term (regexp " + | |
| "allowed, eg: ^ext4_)", ""); | |
| if (term != null) { | |
| search(term) | |
| } | |
| } else { | |
| reset_search(); | |
| searching = 0; | |
| searchbtn.style["opacity"] = "0.1"; | |
| searchbtn.firstChild.nodeValue = "Search" | |
| matchedtxt.style["opacity"] = "0.0"; | |
| matchedtxt.firstChild.nodeValue = "" | |
| } | |
| } | |
| function search(term) { | |
| var re = new RegExp(term); | |
| var el = document.getElementsByTagName("g"); | |
| var matches = new Object(); | |
| var maxwidth = 0; | |
| for (var i = 0; i < el.length; i++) { | |
| var e = el[i]; | |
| if (e.attributes["class"].value != "func_g") | |
| continue; | |
| var func = g_to_func(e); | |
| var rect = find_child(e, "rect"); | |
| if (rect == null) { | |
| // the rect might be wrapped in an anchor | |
| // if nameattr href is being used | |
| if (rect = find_child(e, "a")) { | |
| rect = find_child(r, "rect"); | |
| } | |
| } | |
| if (func == null || rect == null) | |
| continue; | |
| // Save max width. Only works as we have a root frame | |
| var w = parseFloat(rect.attributes["width"].value); | |
| if (w > maxwidth) | |
| maxwidth = w; | |
| if (func.match(re)) { | |
| // highlight | |
| var x = parseFloat(rect.attributes["x"].value); | |
| orig_save(rect, "fill"); | |
| rect.attributes["fill"].value = | |
| "rgb(230,0,230)"; | |
| // remember matches | |
| if (matches[x] == undefined) { | |
| matches[x] = w; | |
| } else { | |
| if (w > matches[x]) { | |
| // overwrite with parent | |
| matches[x] = w; | |
| } | |
| } | |
| searching = 1; | |
| } | |
| } | |
| if (!searching) | |
| return; | |
| searchbtn.style["opacity"] = "1.0"; | |
| searchbtn.firstChild.nodeValue = "Reset Search" | |
| // calculate percent matched, excluding vertical overlap | |
| var count = 0; | |
| var lastx = -1; | |
| var lastw = 0; | |
| var keys = Array(); | |
| for (k in matches) { | |
| if (matches.hasOwnProperty(k)) | |
| keys.push(k); | |
| } | |
| // sort the matched frames by their x location | |
| // ascending, then width descending | |
| keys.sort(function(a, b){ | |
| return a - b; | |
| }); | |
| // Step through frames saving only the biggest bottom-up frames | |
| // thanks to the sort order. This relies on the tree property | |
| // where children are always smaller than their parents. | |
| var fudge = 0.0001; // JavaScript floating point | |
| for (var k in keys) { | |
| var x = parseFloat(keys[k]); | |
| var w = matches[keys[k]]; | |
| if (x >= lastx + lastw - fudge) { | |
| count += w; | |
| lastx = x; | |
| lastw = w; | |
| } | |
| } | |
| // display matched percent | |
| matchedtxt.style["opacity"] = "1.0"; | |
| pct = 100 * count / maxwidth; | |
| if (pct == 100) | |
| pct = "100" | |
| else | |
| pct = pct.toFixed(1) | |
| matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%"; | |
| } | |
| function searchover(e) { | |
| searchbtn.style["opacity"] = "1.0"; | |
| } | |
| function searchout(e) { | |
| if (searching) { | |
| searchbtn.style["opacity"] = "1.0"; | |
| } else { | |
| searchbtn.style["opacity"] = "0.1"; | |
| } | |
| } | |
| ]]> | |
| </script> | |
| <rect x="0.0" y="0" width="1200.0" height="1494.0" fill="url(#background)" /> | |
| <text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text> | |
| <text text-anchor="" x="10.00" y="1477" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text> | |
| <text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text> | |
| <text text-anchor="" x="1090.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text> | |
| <text text-anchor="" x="1090.00" y="1477" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="29.7" y="277" width="2.8" height="15.0" fill="rgb(227,190,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (1 samples, 0.24%)</title><rect x="602.8" y="1253" width="2.8" height="15.0" fill="rgb(235,8,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="605.81" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__exit__(gevent.timeout) (1 samples, 0.24%)</title><rect x="12.8" y="309" width="2.8" height="15.0" fill="rgb(238,50,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapped(web3.utils.decorators) (2 samples, 0.48%)</title><rect x="431.4" y="997" width="5.6" height="15.0" fill="rgb(220,92,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="434.43" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (4 samples, 0.95%)</title><rect x="355.6" y="1173" width="11.2" height="15.0" fill="rgb(237,11,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="358.57" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="344.3" y="1189" width="2.8" height="15.0" fill="rgb(235,228,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="347.33" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_multicall(pluggy.callers) (21 samples, 5.00%)</title><rect x="10.0" y="901" width="59.0" height="15.0" fill="rgb(221,6,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_multi..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="29.7" y="453" width="2.8" height="15.0" fill="rgb(211,7,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>haskeys(pkg_resources._vendor.pyparsing) (1 samples, 0.24%)</title><rect x="1131.0" y="981" width="2.8" height="15.0" fill="rgb(244,182,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1134.00" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parseNoCache(pkg_resources._vendor.pyparsing) (20 samples, 4.76%)</title><rect x="1097.3" y="1077" width="56.2" height="15.0" fill="rgb(233,17,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1100.29" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_pars..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wait_for_newchannel(raiden.waiting) (1 samples, 0.24%)</title><rect x="88.7" y="693" width="2.8" height="15.0" fill="rgb(248,142,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="91.67" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_message_revealsecret(raiden.message_handler) (3 samples, 0.71%)</title><rect x="268.5" y="1317" width="8.4" height="15.0" fill="rgb(250,22,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="271.48" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>merge_environment_settings(requests.sessions) (1 samples, 0.24%)</title><rect x="580.3" y="1093" width="2.8" height="15.0" fill="rgb(236,103,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="583.33" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>serialize(raiden.storage.serialize) (1 samples, 0.24%)</title><rect x="285.3" y="1253" width="2.8" height="15.0" fill="rgb(205,205,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="288.33" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_proxy_to_logger(structlog._base) (1 samples, 0.24%)</title><rect x="195.4" y="1237" width="2.8" height="15.0" fill="rgb(205,208,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="198.43" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(os) (1 samples, 0.24%)</title><rect x="164.5" y="1429" width="2.8" height="15.0" fill="rgb(235,33,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="167.52" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call_and_report(_pytest.runner) (55 samples, 13.10%)</title><rect x="10.0" y="1109" width="154.5" height="15.0" fill="rgb(222,27,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >call_and_report(_py..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pack_balance_proof(raiden.transfer.balance_proof) (1 samples, 0.24%)</title><rect x="173.0" y="1333" width="2.8" height="15.0" fill="rgb(249,65,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="175.95" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>emit(logging) (1 samples, 0.24%)</title><rect x="307.8" y="1221" width="2.8" height="15.0" fill="rgb(244,202,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="310.81" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>feed(email.feedparser) (1 samples, 0.24%)</title><rect x="139.2" y="101" width="2.8" height="15.0" fill="rgb(232,105,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="512.9" y="709" width="2.8" height="15.0" fill="rgb(244,16,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="515.90" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapper(pkg_resources._vendor.pyparsing) (1 samples, 0.24%)</title><rect x="1119.8" y="837" width="2.8" height="15.0" fill="rgb(217,143,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1122.76" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>check_address_has_code(raiden.network.rpc.client) (1 samples, 0.24%)</title><rect x="116.8" y="645" width="2.8" height="15.0" fill="rgb(249,156,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="119.76" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_environ_proxies(requests.utils) (1 samples, 0.24%)</title><rect x="574.7" y="1013" width="2.8" height="15.0" fill="rgb(228,173,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="577.71" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.manager) (1 samples, 0.24%)</title><rect x="588.8" y="1237" width="2.8" height="15.0" fill="rgb(209,130,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="591.76" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>on_message(raiden.message_handler) (13 samples, 3.10%)</title><rect x="195.4" y="1333" width="36.6" height="15.0" fill="rgb(206,145,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="198.43" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >on_..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="605.6" y="1285" width="2.8" height="15.0" fill="rgb(206,78,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="608.62" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="55.0" y="549" width="2.8" height="15.0" fill="rgb(236,112,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_state_change(raiden.raiden_service) (1 samples, 0.24%)</title><rect x="189.8" y="1349" width="2.8" height="15.0" fill="rgb(242,58,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="192.81" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="80.2" y="485" width="2.8" height="15.0" fill="rgb(252,94,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (4 samples, 0.95%)</title><rect x="288.1" y="1205" width="11.3" height="15.0" fill="rgb(235,52,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (2 samples, 0.48%)</title><rect x="49.3" y="549" width="5.7" height="15.0" fill="rgb(240,188,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="52.33" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (1 samples, 0.24%)</title><rect x="597.2" y="1173" width="2.8" height="15.0" fill="rgb(245,120,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="600.19" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>post(requests.sessions) (1 samples, 0.24%)</title><rect x="32.5" y="485" width="2.8" height="15.0" fill="rgb(209,132,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="35.48" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_sendall(gevent._socketcommon) (1 samples, 0.24%)</title><rect x="605.6" y="901" width="2.8" height="15.0" fill="rgb(254,227,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="608.62" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__new__(web3.utils.datatypes) (1 samples, 0.24%)</title><rect x="128.0" y="437" width="2.8" height="15.0" fill="rgb(210,109,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="131.00" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parseNoCache(pkg_resources._vendor.pyparsing) (11 samples, 2.62%)</title><rect x="1100.1" y="949" width="30.9" height="15.0" fill="rgb(205,22,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1103.10" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_p..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.adapters) (1 samples, 0.24%)</title><rect x="114.0" y="309" width="2.8" height="15.0" fill="rgb(225,110,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="116.95" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_proxy_to_logger(structlog._base) (2 samples, 0.48%)</title><rect x="324.7" y="1349" width="5.6" height="15.0" fill="rgb(251,176,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="327.67" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_hex(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="434.2" y="837" width="2.8" height="15.0" fill="rgb(219,207,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="437.24" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>bind(inspect) (1 samples, 0.24%)</title><rect x="108.3" y="421" width="2.8" height="15.0" fill="rgb(252,208,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="111.33" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send_global(raiden.network.transport.matrix.transport) (1 samples, 0.24%)</title><rect x="184.2" y="1381" width="2.8" height="15.0" fill="rgb(230,119,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="187.19" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (3 samples, 0.71%)</title><rect x="201.0" y="741" width="8.5" height="15.0" fill="rgb(215,176,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="204.05" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="288.1" y="709" width="2.9" height="15.0" fill="rgb(230,130,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (1 samples, 0.24%)</title><rect x="577.5" y="1109" width="2.8" height="15.0" fill="rgb(217,54,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="580.52" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="203.9" y="565" width="2.8" height="15.0" fill="rgb(238,218,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="206.86" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>detail_participant(raiden.network.proxies.token_network) (1 samples, 0.24%)</title><rect x="414.6" y="1269" width="2.8" height="15.0" fill="rgb(240,4,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="417.57" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (5 samples, 1.19%)</title><rect x="375.2" y="997" width="14.1" height="15.0" fill="rgb(219,187,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="378.24" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (3 samples, 0.71%)</title><rect x="57.8" y="581" width="8.4" height="15.0" fill="rgb(229,61,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="60.76" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="29.7" y="485" width="2.8" height="15.0" fill="rgb(232,80,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>target_mediated_transfer(raiden.raiden_service) (4 samples, 0.95%)</title><rect x="243.2" y="1301" width="11.2" height="15.0" fill="rgb(242,20,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>content(requests.models) (1 samples, 0.24%)</title><rect x="80.2" y="309" width="2.8" height="15.0" fill="rgb(218,206,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="209.5" y="597" width="2.8" height="15.0" fill="rgb(251,81,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__getitem__(os) (1 samples, 0.24%)</title><rect x="529.8" y="1221" width="2.8" height="15.0" fill="rgb(207,187,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="532.76" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (2 samples, 0.48%)</title><rect x="378.0" y="805" width="5.7" height="15.0" fill="rgb(233,122,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="381.05" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="344.3" y="1301" width="2.8" height="15.0" fill="rgb(226,137,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="347.33" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>inner(eth_utils.functional) (1 samples, 0.24%)</title><rect x="12.8" y="757" width="2.8" height="15.0" fill="rgb(235,148,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__repr__(raiden.messages) (1 samples, 0.24%)</title><rect x="341.5" y="1093" width="2.8" height="15.0" fill="rgb(237,161,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="344.52" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call_fixture_func(_pytest.fixtures) (6 samples, 1.43%)</title><rect x="128.0" y="661" width="16.9" height="15.0" fill="rgb(225,196,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="131.00" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (4 samples, 0.95%)</title><rect x="15.6" y="757" width="11.3" height="15.0" fill="rgb(247,182,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_post_request(web3.utils.request) (1 samples, 0.24%)</title><rect x="114.0" y="373" width="2.8" height="15.0" fill="rgb(225,12,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="116.95" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>urlopen(urllib3.connectionpool) (1 samples, 0.24%)</title><rect x="12.8" y="421" width="2.8" height="15.0" fill="rgb(229,137,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__new__(web3.utils.datatypes) (1 samples, 0.24%)</title><rect x="133.6" y="405" width="2.8" height="15.0" fill="rgb(243,188,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="136.62" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_0x_prefixed(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="425.8" y="1269" width="2.8" height="15.0" fill="rgb(248,202,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="428.81" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>abi_request_formatters(web3.utils.rpc_abi) (1 samples, 0.24%)</title><rect x="85.9" y="469" width="2.8" height="15.0" fill="rgb(225,172,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="88.86" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>debug(structlog.stdlib) (1 samples, 0.24%)</title><rect x="195.4" y="1269" width="2.8" height="15.0" fill="rgb(210,185,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="198.43" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getMessage(logging) (1 samples, 0.24%)</title><rect x="338.7" y="1205" width="2.8" height="15.0" fill="rgb(254,129,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="341.71" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="1024.2" y="1301" width="2.8" height="15.0" fill="rgb(236,137,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.24" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>all (420 samples, 100%)</title><rect x="10.0" y="1445" width="1180.0" height="15.0" fill="rgb(224,214,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (2 samples, 0.48%)</title><rect x="237.6" y="1157" width="5.6" height="15.0" fill="rgb(240,31,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (5 samples, 1.19%)</title><rect x="375.2" y="981" width="14.1" height="15.0" fill="rgb(208,224,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="378.24" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (1 samples, 0.24%)</title><rect x="111.1" y="341" width="2.9" height="15.0" fill="rgb(208,21,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="114.14" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parse_requirements(pkg_resources) (2 samples, 0.48%)</title><rect x="1060.8" y="1301" width="5.6" height="15.0" fill="rgb(251,187,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1063.76" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_retry_on_intr(urllib3.util.wait) (1 samples, 0.24%)</title><rect x="555.0" y="1221" width="2.9" height="15.0" fill="rgb(222,104,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="558.05" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>prepare_request(requests.sessions) (1 samples, 0.24%)</title><rect x="71.8" y="325" width="2.8" height="15.0" fill="rgb(231,223,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="74.81" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="566.3" y="1301" width="2.8" height="15.0" fill="rgb(228,209,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (1 samples, 0.24%)</title><rect x="580.3" y="1157" width="2.8" height="15.0" fill="rgb(243,175,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="583.33" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="420.2" y="1093" width="2.8" height="15.0" fill="rgb(218,180,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="423.19" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="102.7" y="501" width="2.8" height="15.0" fill="rgb(207,107,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="105.71" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parseNoCache(pkg_resources._vendor.pyparsing) (5 samples, 1.19%)</title><rect x="1139.4" y="965" width="14.1" height="15.0" fill="rgb(206,197,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1142.43" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>format(logging) (1 samples, 0.24%)</title><rect x="307.8" y="1189" width="2.8" height="15.0" fill="rgb(219,200,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="310.81" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recursive_map(web3.utils.formatters) (1 samples, 0.24%)</title><rect x="173.0" y="1125" width="2.8" height="15.0" fill="rgb(206,211,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="175.95" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>dispatch(raiden.transfer.architecture) (13 samples, 3.10%)</title><rect x="375.2" y="1317" width="36.6" height="15.0" fill="rgb(213,35,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="378.24" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >dis..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="150.5" y="517" width="2.8" height="15.0" fill="rgb(245,147,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="153.48" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>set_display_name(matrix_client.user) (1 samples, 0.24%)</title><rect x="1187.2" y="1381" width="2.8" height="15.0" fill="rgb(252,68,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.19" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="77.4" y="549" width="2.8" height="15.0" fill="rgb(247,77,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="80.43" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>should_bypass_proxies(requests.utils) (1 samples, 0.24%)</title><rect x="1187.2" y="1269" width="2.8" height="15.0" fill="rgb(220,142,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.19" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_bind(inspect) (1 samples, 0.24%)</title><rect x="1035.5" y="1157" width="2.8" height="15.0" fill="rgb(206,221,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1038.48" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>generate_cache_key(web3.utils.caching) (2 samples, 0.48%)</title><rect x="439.9" y="1061" width="5.6" height="15.0" fill="rgb(205,135,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="442.86" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>restore_to_state_change(raiden.storage.wal) (8 samples, 1.90%)</title><rect x="43.7" y="821" width="22.5" height="15.0" fill="rgb(209,139,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="46.71" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >r..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>enqueue(raiden.network.transport.matrix.transport) (1 samples, 0.24%)</title><rect x="175.8" y="1349" width="2.8" height="15.0" fill="rgb(209,107,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="178.76" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (4 samples, 0.95%)</title><rect x="355.6" y="1221" width="11.2" height="15.0" fill="rgb(226,41,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="358.57" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="167.3" y="1253" width="2.8" height="15.0" fill="rgb(208,177,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="288.1" y="741" width="2.9" height="15.0" fill="rgb(216,0,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>teardown_exact(_pytest.runner) (4 samples, 0.95%)</title><rect x="153.3" y="965" width="11.2" height="15.0" fill="rgb(213,71,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="156.29" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="605.6" y="1221" width="2.8" height="15.0" fill="rgb(208,209,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="608.62" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (1 samples, 0.24%)</title><rect x="91.5" y="485" width="2.8" height="15.0" fill="rgb(241,121,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>generate_cache_key(web3.utils.caching) (1 samples, 0.24%)</title><rect x="614.0" y="1029" width="2.9" height="15.0" fill="rgb(245,142,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="617.05" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>shouldRollover(logging.handlers) (1 samples, 0.24%)</title><rect x="97.1" y="517" width="2.8" height="15.0" fill="rgb(235,94,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="100.10" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_get_conn(urllib3.connectionpool) (1 samples, 0.24%)</title><rect x="555.0" y="1285" width="2.9" height="15.0" fill="rgb(215,98,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="558.05" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="12.8" y="693" width="2.8" height="15.0" fill="rgb(252,74,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>serialize(raiden.storage.serialize) (1 samples, 0.24%)</title><rect x="282.5" y="1221" width="2.8" height="15.0" fill="rgb(248,225,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="285.52" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_run(raiden.tasks) (65 samples, 15.48%)</title><rect x="347.1" y="1429" width="182.7" height="15.0" fill="rgb(226,41,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="350.14" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_run(raiden.tasks)</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>start_mediated_transfer_with_secret(raiden.raiden_service) (5 samples, 1.19%)</title><rect x="12.8" y="837" width="14.1" height="15.0" fill="rgb(222,199,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="209.5" y="885" width="2.8" height="15.0" fill="rgb(229,117,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="279.7" y="1029" width="2.8" height="15.0" fill="rgb(253,139,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="282.71" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>format(structlog.stdlib) (1 samples, 0.24%)</title><rect x="97.1" y="485" width="2.8" height="15.0" fill="rgb(251,188,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="100.10" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_string(eth_utils.types) (1 samples, 0.24%)</title><rect x="173.0" y="1093" width="2.8" height="15.0" fill="rgb(239,199,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="175.95" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (3 samples, 0.71%)</title><rect x="243.2" y="1045" width="8.4" height="15.0" fill="rgb(214,69,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pytest_cmdline_main(_pytest.main) (55 samples, 13.10%)</title><rect x="10.0" y="1333" width="154.5" height="15.0" fill="rgb(211,83,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pytest_cmdline_main..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pytest_runtest_teardown(_pytest.runner) (4 samples, 0.95%)</title><rect x="153.3" y="981" width="11.2" height="15.0" fill="rgb(238,146,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="156.29" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="602.8" y="1285" width="2.8" height="15.0" fill="rgb(247,213,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="605.81" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseImpl(pkg_resources._vendor.pyparsing) (14 samples, 3.33%)</title><rect x="1097.3" y="997" width="39.3" height="15.0" fill="rgb(230,223,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1100.29" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >par..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (1 samples, 0.24%)</title><rect x="99.9" y="341" width="2.8" height="15.0" fill="rgb(212,204,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="102.90" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="167.3" y="1221" width="2.8" height="15.0" fill="rgb(215,69,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="288.1" y="469" width="2.9" height="15.0" fill="rgb(237,10,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(ens.main) (2 samples, 0.48%)</title><rect x="122.4" y="549" width="5.6" height="15.0" fill="rgb(223,63,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="125.38" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><genexpr>(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="321.9" y="1269" width="2.8" height="15.0" fill="rgb(218,128,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="324.86" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_log(logging) (2 samples, 0.48%)</title><rect x="369.6" y="1269" width="5.6" height="15.0" fill="rgb(221,122,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="372.62" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (5 samples, 1.19%)</title><rect x="375.2" y="1157" width="14.1" height="15.0" fill="rgb(227,71,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="378.24" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="260.0" y="933" width="2.9" height="15.0" fill="rgb(206,104,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="144.9" y="341" width="2.8" height="15.0" fill="rgb(253,31,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>new_contract_proxy(raiden.network.rpc.client) (1 samples, 0.24%)</title><rect x="74.6" y="677" width="2.8" height="15.0" fill="rgb(228,72,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="77.62" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="605.6" y="1189" width="2.8" height="15.0" fill="rgb(230,1,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="608.62" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>add_token(raiden.network.proxies.token_network_registry) (1 samples, 0.24%)</title><rect x="97.1" y="677" width="2.8" height="15.0" fill="rgb(220,133,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="100.10" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (5 samples, 1.19%)</title><rect x="209.5" y="1045" width="14.0" height="15.0" fill="rgb(211,180,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>hash_balance_data(raiden.transfer.utils) (1 samples, 0.24%)</title><rect x="26.9" y="757" width="2.8" height="15.0" fill="rgb(216,96,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="29.86" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="139.2" y="325" width="2.8" height="15.0" fill="rgb(207,183,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(raiden.tests.integration.fixtures.blockchain) (2 samples, 0.48%)</title><rect x="122.4" y="677" width="5.6" height="15.0" fill="rgb(242,222,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="125.38" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapped(web3.utils.decorators) (1 samples, 0.24%)</title><rect x="302.2" y="949" width="2.8" height="15.0" fill="rgb(242,171,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="305.19" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="260.0" y="917" width="2.9" height="15.0" fill="rgb(250,107,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>abi_ens_resolver(web3.utils.normalizers) (2 samples, 0.48%)</title><rect x="431.4" y="885" width="5.6" height="15.0" fill="rgb(239,2,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="434.43" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="55.0" y="469" width="2.8" height="15.0" fill="rgb(222,120,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parse(email.parser) (2 samples, 0.48%)</title><rect x="237.6" y="805" width="5.6" height="15.0" fill="rgb(214,163,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (3 samples, 0.71%)</title><rect x="243.2" y="1093" width="8.4" height="15.0" fill="rgb(226,190,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getresponse(http.client) (1 samples, 0.24%)</title><rect x="66.2" y="645" width="2.8" height="15.0" fill="rgb(253,22,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="69.19" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="288.1" y="517" width="2.9" height="15.0" fill="rgb(220,172,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>check_registered(raiden.network.proxies.secret_registry) (1 samples, 0.24%)</title><rect x="167.3" y="1349" width="2.8" height="15.0" fill="rgb(244,119,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="209.5" y="613" width="2.8" height="15.0" fill="rgb(228,70,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (1 samples, 0.24%)</title><rect x="411.8" y="1029" width="2.8" height="15.0" fill="rgb(235,169,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="209.5" y="869" width="2.8" height="15.0" fill="rgb(229,7,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>bind(inspect) (1 samples, 0.24%)</title><rect x="147.7" y="357" width="2.8" height="15.0" fill="rgb(209,18,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="150.67" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>serialize(raiden.storage.serialize) (1 samples, 0.24%)</title><rect x="189.8" y="1333" width="2.8" height="15.0" fill="rgb(218,187,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="192.81" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="170.1" y="1253" width="2.9" height="15.0" fill="rgb(214,67,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="173.14" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="288.1" y="997" width="2.9" height="15.0" fill="rgb(218,199,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_atomic(copy) (1 samples, 0.24%)</title><rect x="409.0" y="1045" width="2.8" height="15.0" fill="rgb(212,81,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="411.95" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(raiden.network.proxies.token) (1 samples, 0.24%)</title><rect x="108.3" y="645" width="2.8" height="15.0" fill="rgb(225,184,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="111.33" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_hex(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="116.8" y="453" width="2.8" height="15.0" fill="rgb(246,179,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="119.76" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>seed(random) (1 samples, 0.24%)</title><rect x="389.3" y="1141" width="2.8" height="15.0" fill="rgb(231,209,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="392.29" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="94.3" y="517" width="2.8" height="15.0" fill="rgb(225,166,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>readinto(socket) (1 samples, 0.24%)</title><rect x="12.8" y="341" width="2.8" height="15.0" fill="rgb(243,178,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>proxy_bypass_environment(urllib.request) (1 samples, 0.24%)</title><rect x="32.5" y="405" width="2.8" height="15.0" fill="rgb(223,100,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="35.48" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_proxy_to_logger(structlog._base) (1 samples, 0.24%)</title><rect x="423.0" y="1269" width="2.8" height="15.0" fill="rgb(236,84,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="426.00" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><lambda>(pluggy.manager) (55 samples, 13.10%)</title><rect x="10.0" y="1173" width="154.5" height="15.0" fill="rgb(222,39,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><lambda>(pluggy.man..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (3 samples, 0.71%)</title><rect x="201.0" y="581" width="8.5" height="15.0" fill="rgb(249,88,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="204.05" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="1043.9" y="1141" width="2.8" height="15.0" fill="rgb(223,144,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1046.90" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_valid_args(toolz.functoolz) (1 samples, 0.24%)</title><rect x="108.3" y="437" width="2.8" height="15.0" fill="rgb(244,53,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="111.33" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getproxies_environment(urllib.request) (5 samples, 1.19%)</title><rect x="445.5" y="1013" width="14.0" height="15.0" fill="rgb(215,66,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="448.48" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>callHandlers(logging) (2 samples, 0.48%)</title><rect x="338.7" y="1301" width="5.6" height="15.0" fill="rgb(251,4,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="341.71" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (4 samples, 0.95%)</title><rect x="55.0" y="645" width="11.2" height="15.0" fill="rgb(235,158,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (7 samples, 1.67%)</title><rect x="392.1" y="1157" width="19.7" height="15.0" fill="rgb(248,33,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="395.10" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send_async(raiden.network.transport.matrix.transport) (1 samples, 0.24%)</title><rect x="175.8" y="1381" width="2.8" height="15.0" fill="rgb(212,171,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="178.76" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>encode(json.encoder) (1 samples, 0.24%)</title><rect x="232.0" y="1093" width="2.8" height="15.0" fill="rgb(250,84,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="234.95" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ens(web3.main) (1 samples, 0.24%)</title><rect x="83.0" y="613" width="2.9" height="15.0" fill="rgb(237,151,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="86.05" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>set_raw(email.message) (1 samples, 0.24%)</title><rect x="560.7" y="1125" width="2.8" height="15.0" fill="rgb(240,38,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="563.67" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getTransactionReceipt(web3.eth) (1 samples, 0.24%)</title><rect x="597.2" y="1317" width="2.8" height="15.0" fill="rgb(234,205,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="600.19" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.manager) (1 samples, 0.24%)</title><rect x="85.9" y="533" width="2.8" height="15.0" fill="rgb(221,79,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="88.86" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>kind(inspect) (1 samples, 0.24%)</title><rect x="74.6" y="421" width="2.8" height="15.0" fill="rgb(249,204,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="77.62" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.contract) (1 samples, 0.24%)</title><rect x="74.6" y="517" width="2.8" height="15.0" fill="rgb(225,43,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="77.62" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_key_val_list(requests.utils) (1 samples, 0.24%)</title><rect x="470.8" y="1013" width="2.8" height="15.0" fill="rgb(243,172,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="473.76" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>keccak(eth_utils.crypto) (1 samples, 0.24%)</title><rect x="226.3" y="1125" width="2.8" height="15.0" fill="rgb(225,13,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="229.33" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.sessions) (8 samples, 1.90%)</title><rect x="476.4" y="1045" width="22.5" height="15.0" fill="rgb(210,200,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="479.38" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_ens_name(web3.utils.ens) (2 samples, 0.48%)</title><rect x="431.4" y="869" width="5.6" height="15.0" fill="rgb(230,69,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="434.43" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.contract) (1 samples, 0.24%)</title><rect x="586.0" y="1237" width="2.8" height="15.0" fill="rgb(248,220,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="588.95" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>callHandlers(logging) (1 samples, 0.24%)</title><rect x="423.0" y="1205" width="2.8" height="15.0" fill="rgb(238,104,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="426.00" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>info(structlog.stdlib) (1 samples, 0.24%)</title><rect x="97.1" y="661" width="2.8" height="15.0" fill="rgb(206,97,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="100.10" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (1 samples, 0.24%)</title><rect x="1187.2" y="1317" width="2.8" height="15.0" fill="rgb(251,227,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.19" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="602.8" y="1141" width="2.8" height="15.0" fill="rgb(225,198,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="605.81" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pack(raiden.messages) (1 samples, 0.24%)</title><rect x="338.7" y="1141" width="2.8" height="15.0" fill="rgb(206,188,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="341.71" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (30 samples, 7.14%)</title><rect x="437.0" y="1221" width="84.3" height="15.0" fill="rgb(206,223,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="440.05" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >middlewar..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="209.5" y="645" width="2.8" height="15.0" fill="rgb(249,157,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><lambda>(pluggy.manager) (6 samples, 1.43%)</title><rect x="128.0" y="709" width="16.9" height="15.0" fill="rgb(205,107,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="131.00" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>encode(os) (1 samples, 0.24%)</title><rect x="150.5" y="181" width="2.8" height="15.0" fill="rgb(210,100,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="153.48" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (2 samples, 0.48%)</title><rect x="276.9" y="1189" width="5.6" height="15.0" fill="rgb(212,144,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>login_or_register(raiden.network.transport.matrix.utils) (1 samples, 0.24%)</title><rect x="1187.2" y="1397" width="2.8" height="15.0" fill="rgb(236,151,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.19" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parseNoCache(pkg_resources._vendor.pyparsing) (7 samples, 1.67%)</title><rect x="1102.9" y="885" width="19.7" height="15.0" fill="rgb(225,194,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1105.90" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getproxies_environment(urllib.request) (1 samples, 0.24%)</title><rect x="543.8" y="1269" width="2.8" height="15.0" fill="rgb(222,181,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="546.81" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>name_to_address_middleware(web3.middleware.names) (1 samples, 0.24%)</title><rect x="85.9" y="501" width="2.8" height="15.0" fill="rgb(253,65,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="88.86" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>secret_registry(raiden.network.blockchain_service) (1 samples, 0.24%)</title><rect x="94.3" y="661" width="2.8" height="15.0" fill="rgb(251,16,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="209.5" y="981" width="2.8" height="15.0" fill="rgb(230,65,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>transact(raiden.network.rpc.smartcontract_proxy) (1 samples, 0.24%)</title><rect x="170.1" y="1349" width="2.9" height="15.0" fill="rgb(207,85,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="173.14" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>raw_decode(json.decoder) (1 samples, 0.24%)</title><rect x="10.0" y="757" width="2.8" height="15.0" fill="rgb(216,83,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="577.5" y="1205" width="2.8" height="15.0" fill="rgb(240,210,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="580.52" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (3 samples, 0.71%)</title><rect x="260.0" y="1093" width="8.5" height="15.0" fill="rgb(220,212,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (1 samples, 0.24%)</title><rect x="71.8" y="469" width="2.8" height="15.0" fill="rgb(211,186,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="74.81" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (2 samples, 0.48%)</title><rect x="276.9" y="1125" width="5.6" height="15.0" fill="rgb(240,162,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>join_room(matrix_client.api) (1 samples, 0.24%)</title><rect x="66.2" y="773" width="2.8" height="15.0" fill="rgb(221,127,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="69.19" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapper(eth_utils.decorators) (1 samples, 0.24%)</title><rect x="181.4" y="1301" width="2.8" height="15.0" fill="rgb(229,56,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="184.38" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="29.7" y="197" width="2.8" height="15.0" fill="rgb(229,62,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (2 samples, 0.48%)</title><rect x="262.9" y="1013" width="5.6" height="15.0" fill="rgb(245,157,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="265.86" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="260.0" y="949" width="2.9" height="15.0" fill="rgb(212,91,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="583.1" y="1333" width="2.9" height="15.0" fill="rgb(216,75,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="586.14" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_hex_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="282.5" y="1077" width="2.8" height="15.0" fill="rgb(206,109,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="285.52" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>encode(os) (2 samples, 0.48%)</title><rect x="451.1" y="965" width="5.6" height="15.0" fill="rgb(232,82,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="454.10" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="130.8" y="469" width="2.8" height="15.0" fill="rgb(216,48,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="133.81" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>new_contract(raiden.network.rpc.client) (1 samples, 0.24%)</title><rect x="133.6" y="581" width="2.8" height="15.0" fill="rgb(241,63,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="136.62" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(raiden.network.proxies.discovery) (2 samples, 0.48%)</title><rect x="122.4" y="645" width="5.6" height="15.0" fill="rgb(210,72,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="125.38" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_valid_args(toolz.functoolz) (1 samples, 0.24%)</title><rect x="83.0" y="469" width="2.9" height="15.0" fill="rgb(226,118,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="86.05" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(os) (1 samples, 0.24%)</title><rect x="532.6" y="1221" width="2.8" height="15.0" fill="rgb(229,134,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="535.57" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (29 samples, 6.90%)</title><rect x="439.9" y="1189" width="81.4" height="15.0" fill="rgb(207,73,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="442.86" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >middlewar..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (8 samples, 1.90%)</title><rect x="43.7" y="677" width="22.5" height="15.0" fill="rgb(237,28,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="46.71" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recursive_map(web3.utils.formatters) (2 samples, 0.48%)</title><rect x="431.4" y="1061" width="5.6" height="15.0" fill="rgb(236,210,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="434.43" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_list(copy) (1 samples, 0.24%)</title><rect x="257.2" y="1077" width="2.8" height="15.0" fill="rgb(247,177,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="260.24" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__setitem__(pkg_resources._vendor.pyparsing) (1 samples, 0.24%)</title><rect x="1094.5" y="1077" width="2.8" height="15.0" fill="rgb(209,41,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1097.48" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>new_contract(raiden.network.rpc.client) (1 samples, 0.24%)</title><rect x="142.0" y="581" width="2.9" height="15.0" fill="rgb(252,135,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="145.05" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>map_abi_data(web3.utils.abi) (1 samples, 0.24%)</title><rect x="569.1" y="1333" width="2.8" height="15.0" fill="rgb(251,33,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="572.10" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (2 samples, 0.48%)</title><rect x="276.9" y="1093" width="5.6" height="15.0" fill="rgb(246,137,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.adapters) (1 samples, 0.24%)</title><rect x="605.6" y="1045" width="2.8" height="15.0" fill="rgb(239,158,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="608.62" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="417.4" y="1109" width="2.8" height="15.0" fill="rgb(223,161,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="420.38" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="209.5" y="965" width="2.8" height="15.0" fill="rgb(215,222,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (4 samples, 0.95%)</title><rect x="257.2" y="1125" width="11.3" height="15.0" fill="rgb(242,15,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="260.24" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (1 samples, 0.24%)</title><rect x="139.2" y="389" width="2.8" height="15.0" fill="rgb(250,85,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_state_change(raiden.raiden_service) (1 samples, 0.24%)</title><rect x="29.7" y="757" width="2.8" height="15.0" fill="rgb(206,16,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="260.0" y="773" width="2.9" height="15.0" fill="rgb(251,57,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>contract(web3.eth) (2 samples, 0.48%)</title><rect x="586.0" y="1349" width="5.6" height="15.0" fill="rgb(206,58,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="588.95" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="108.3" y="501" width="2.8" height="15.0" fill="rgb(244,129,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="111.33" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (29 samples, 6.90%)</title><rect x="439.9" y="1173" width="81.4" height="15.0" fill="rgb(215,104,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="442.86" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >apply_for..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call(web3.contract) (1 samples, 0.24%)</title><rect x="414.6" y="1237" width="2.8" height="15.0" fill="rgb(226,137,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="417.57" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>check_if_retry_on_failure(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="130.8" y="373" width="2.8" height="15.0" fill="rgb(229,201,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="133.81" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="46.5" y="597" width="2.8" height="15.0" fill="rgb(244,97,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="49.52" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>encode(json.encoder) (1 samples, 0.24%)</title><rect x="285.3" y="1221" width="2.8" height="15.0" fill="rgb(251,194,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="288.33" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="99.9" y="533" width="2.8" height="15.0" fill="rgb(210,110,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="102.90" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="144.9" y="517" width="2.8" height="15.0" fill="rgb(219,46,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getLogs(web3.eth) (1 samples, 0.24%)</title><rect x="1043.9" y="1333" width="2.8" height="15.0" fill="rgb(243,228,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1046.90" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (1 samples, 0.24%)</title><rect x="580.3" y="1237" width="2.8" height="15.0" fill="rgb(234,82,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="583.33" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>init_web3(ens.utils) (1 samples, 0.24%)</title><rect x="85.9" y="565" width="2.8" height="15.0" fill="rgb(251,92,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="88.86" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="616.9" y="1269" width="2.8" height="15.0" fill="rgb(219,229,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="619.86" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="288.1" y="805" width="2.9" height="15.0" fill="rgb(207,34,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parse(email.parser) (5 samples, 1.19%)</title><rect x="1069.2" y="1269" width="14.0" height="15.0" fill="rgb(232,5,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1072.19" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>iterencode(json.encoder) (1 samples, 0.24%)</title><rect x="232.0" y="1077" width="2.8" height="15.0" fill="rgb(219,87,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="234.95" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (3 samples, 0.71%)</title><rect x="201.0" y="1013" width="8.5" height="15.0" fill="rgb(212,128,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="204.05" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(os) (1 samples, 0.24%)</title><rect x="456.7" y="981" width="2.8" height="15.0" fill="rgb(209,223,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="459.71" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>keccak256(eth_hash.backends.pycryptodome) (1 samples, 0.24%)</title><rect x="571.9" y="1285" width="2.8" height="15.0" fill="rgb(237,22,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="574.90" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parseNoCache(pkg_resources._vendor.pyparsing) (2 samples, 0.48%)</title><rect x="1060.8" y="1237" width="5.6" height="15.0" fill="rgb(235,207,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1063.76" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>should_bypass_proxies(requests.utils) (1 samples, 0.24%)</title><rect x="170.1" y="997" width="2.9" height="15.0" fill="rgb(228,126,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="173.14" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>new_contract_proxy(raiden.network.rpc.client) (1 samples, 0.24%)</title><rect x="142.0" y="597" width="2.9" height="15.0" fill="rgb(207,158,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="145.05" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getproxies_environment(urllib.request) (1 samples, 0.24%)</title><rect x="611.2" y="997" width="2.8" height="15.0" fill="rgb(230,229,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="614.24" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sendall(gevent._socket3) (1 samples, 0.24%)</title><rect x="605.6" y="917" width="2.8" height="15.0" fill="rgb(215,110,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="608.62" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>backend(eth_keys.datatypes) (1 samples, 0.24%)</title><rect x="178.6" y="1317" width="2.8" height="15.0" fill="rgb(210,61,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="181.57" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (5 samples, 1.19%)</title><rect x="375.2" y="1061" width="14.1" height="15.0" fill="rgb(208,69,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="378.24" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (3 samples, 0.71%)</title><rect x="375.2" y="885" width="8.5" height="15.0" fill="rgb(232,115,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="378.24" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="139.2" y="437" width="2.8" height="15.0" fill="rgb(207,174,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="55.0" y="213" width="2.8" height="15.0" fill="rgb(246,89,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_and_track_state_change(raiden.raiden_service) (4 samples, 0.95%)</title><rect x="15.6" y="821" width="11.3" height="15.0" fill="rgb(240,21,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>host(urllib3.connection) (1 samples, 0.24%)</title><rect x="114.0" y="213" width="2.8" height="15.0" fill="rgb(210,15,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="116.95" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><genexpr>(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="507.3" y="677" width="2.8" height="15.0" fill="rgb(213,142,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="510.29" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="417.4" y="1125" width="2.8" height="15.0" fill="rgb(234,125,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="420.38" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="288.1" y="757" width="2.9" height="15.0" fill="rgb(205,20,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (9 samples, 2.14%)</title><rect x="198.2" y="1157" width="25.3" height="15.0" fill="rgb(211,219,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="201.24" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="344.3" y="1333" width="2.8" height="15.0" fill="rgb(208,184,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="347.33" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>bind(inspect) (1 samples, 0.24%)</title><rect x="128.0" y="405" width="2.8" height="15.0" fill="rgb(251,201,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="131.00" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="15.6" y="293" width="2.8" height="15.0" fill="rgb(216,215,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>emit(logging) (1 samples, 0.24%)</title><rect x="423.0" y="1157" width="2.8" height="15.0" fill="rgb(219,148,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="426.00" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="380.9" y="693" width="2.8" height="15.0" fill="rgb(226,114,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="383.86" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="420.2" y="1237" width="2.8" height="15.0" fill="rgb(244,218,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="423.19" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="52.1" y="469" width="2.9" height="15.0" fill="rgb(244,150,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="55.14" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getLogs(web3.eth) (1 samples, 0.24%)</title><rect x="580.3" y="1381" width="2.8" height="15.0" fill="rgb(228,107,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="583.33" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapped(web3.utils.decorators) (1 samples, 0.24%)</title><rect x="26.9" y="693" width="2.8" height="15.0" fill="rgb(219,228,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="29.86" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deploy_client(raiden.tests.integration.fixtures.blockchain) (1 samples, 0.24%)</title><rect x="144.9" y="597" width="2.8" height="15.0" fill="rgb(205,159,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>makeLogRecord(logging) (1 samples, 0.24%)</title><rect x="324.7" y="1173" width="2.8" height="15.0" fill="rgb(214,123,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="327.67" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_post_request(web3.utils.request) (1 samples, 0.24%)</title><rect x="32.5" y="501" width="2.8" height="15.0" fill="rgb(221,111,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="35.48" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>main(_pytest.config) (55 samples, 13.10%)</title><rect x="10.0" y="1413" width="154.5" height="15.0" fill="rgb(231,70,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >main(_pytest.config)</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (3 samples, 0.71%)</title><rect x="201.0" y="677" width="8.5" height="15.0" fill="rgb(215,28,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="204.05" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call(web3.eth) (1 samples, 0.24%)</title><rect x="94.3" y="565" width="2.8" height="15.0" fill="rgb(241,19,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="411.8" y="1205" width="2.8" height="15.0" fill="rgb(209,142,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (5 samples, 1.19%)</title><rect x="375.2" y="1045" width="14.1" height="15.0" fill="rgb(235,146,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="378.24" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(pkg_resources.extern.packaging.requirements) (2 samples, 0.48%)</title><rect x="1060.8" y="1269" width="5.6" height="15.0" fill="rgb(244,63,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1063.76" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(raiden_contracts.contract_manager) (1 samples, 0.24%)</title><rect x="10.0" y="821" width="2.8" height="15.0" fill="rgb(218,163,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="99.9" y="469" width="2.8" height="15.0" fill="rgb(236,126,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="102.90" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>bind_partial(inspect) (1 samples, 0.24%)</title><rect x="119.6" y="517" width="2.8" height="15.0" fill="rgb(220,204,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="122.57" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (1 samples, 0.24%)</title><rect x="91.5" y="405" width="2.8" height="15.0" fill="rgb(239,10,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>map_to_typed_data(web3.utils.abi) (1 samples, 0.24%)</title><rect x="302.2" y="917" width="2.8" height="15.0" fill="rgb(217,228,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="305.19" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (1 samples, 0.24%)</title><rect x="69.0" y="405" width="2.8" height="15.0" fill="rgb(230,151,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="209.5" y="709" width="2.8" height="15.0" fill="rgb(242,25,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_and_track_state_change(raiden.raiden_service) (15 samples, 3.57%)</title><rect x="369.6" y="1365" width="42.2" height="15.0" fill="rgb(220,17,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="372.62" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >han..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getresponse(http.client) (1 samples, 0.24%)</title><rect x="12.8" y="389" width="2.8" height="15.0" fill="rgb(217,54,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (2 samples, 0.48%)</title><rect x="237.6" y="1093" width="5.6" height="15.0" fill="rgb(250,89,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_channelstate_for(raiden.transfer.views) (1 samples, 0.24%)</title><rect x="88.7" y="677" width="2.8" height="15.0" fill="rgb(247,97,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="91.67" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="288.1" y="773" width="2.9" height="15.0" fill="rgb(215,95,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="69.0" y="565" width="2.8" height="15.0" fill="rgb(229,133,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.adapters) (1 samples, 0.24%)</title><rect x="139.2" y="229" width="2.8" height="15.0" fill="rgb(233,119,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="619.7" y="1237" width="2.8" height="15.0" fill="rgb(254,28,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="622.67" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (2 samples, 0.48%)</title><rect x="237.6" y="1077" width="5.6" height="15.0" fill="rgb(245,92,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(collections.abc) (1 samples, 0.24%)</title><rect x="1187.2" y="1221" width="2.8" height="15.0" fill="rgb(247,138,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.19" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (4 samples, 0.95%)</title><rect x="288.1" y="1189" width="11.3" height="15.0" fill="rgb(205,177,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (3 samples, 0.71%)</title><rect x="521.3" y="1301" width="8.5" height="15.0" fill="rgb(227,218,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="524.33" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_send(raiden.network.transport.matrix.client) (1 samples, 0.24%)</title><rect x="184.2" y="1317" width="2.8" height="15.0" fill="rgb(240,15,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="187.19" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_message_lockedtransfer(raiden.message_handler) (6 samples, 1.43%)</title><rect x="237.6" y="1317" width="16.8" height="15.0" fill="rgb(216,139,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseImpl(pkg_resources._vendor.pyparsing) (2 samples, 0.48%)</title><rect x="1153.5" y="1077" width="5.6" height="15.0" fill="rgb(231,128,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1156.48" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="105.5" y="485" width="2.8" height="15.0" fill="rgb(206,54,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="108.52" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__getitem__(os) (1 samples, 0.24%)</title><rect x="358.4" y="1013" width="2.8" height="15.0" fill="rgb(227,144,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="361.38" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="417.4" y="1093" width="2.8" height="15.0" fill="rgb(215,48,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="420.38" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>callHandlers(logging) (1 samples, 0.24%)</title><rect x="97.1" y="565" width="2.8" height="15.0" fill="rgb(251,170,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="100.10" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_compare_not_equal(pkg_resources.extern.packaging.specifiers) (1 samples, 0.24%)</title><rect x="38.1" y="677" width="2.8" height="15.0" fill="rgb(228,61,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="41.10" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (3 samples, 0.71%)</title><rect x="201.0" y="1045" width="8.5" height="15.0" fill="rgb(209,146,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="204.05" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="411.8" y="1237" width="2.8" height="15.0" fill="rgb(209,159,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (3 samples, 0.71%)</title><rect x="260.0" y="1061" width="8.5" height="15.0" fill="rgb(223,54,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>emit(logging) (1 samples, 0.24%)</title><rect x="324.7" y="1221" width="2.8" height="15.0" fill="rgb(207,178,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="327.67" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__new__(web3.utils.datatypes) (1 samples, 0.24%)</title><rect x="586.0" y="1205" width="2.8" height="15.0" fill="rgb(250,95,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="588.95" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>decode_event_to_internal(raiden.blockchain.events) (1 samples, 0.24%)</title><rect x="1041.1" y="1349" width="2.8" height="15.0" fill="rgb(210,159,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1044.10" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_assert_one_val(eth_utils.decorators) (1 samples, 0.24%)</title><rect x="437.0" y="1045" width="2.9" height="15.0" fill="rgb(216,5,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="440.05" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (2 samples, 0.48%)</title><rect x="383.7" y="869" width="5.6" height="15.0" fill="rgb(221,163,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="386.67" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_block(raiden.network.blockchain_service) (3 samples, 0.71%)</title><rect x="521.3" y="1397" width="8.5" height="15.0" fill="rgb(232,41,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="524.33" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_state_change(raiden.transfer.node) (1 samples, 0.24%)</title><rect x="1046.7" y="1333" width="2.8" height="15.0" fill="rgb(211,222,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1049.71" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.sessions) (1 samples, 0.24%)</title><rect x="66.2" y="709" width="2.8" height="15.0" fill="rgb(230,183,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="69.19" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_connection(requests.adapters) (1 samples, 0.24%)</title><rect x="577.5" y="1013" width="2.8" height="15.0" fill="rgb(232,149,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="580.52" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="344.3" y="1317" width="2.8" height="15.0" fill="rgb(251,45,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="347.33" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__repr__(raiden.messages) (1 samples, 0.24%)</title><rect x="338.7" y="1189" width="2.8" height="15.0" fill="rgb(208,185,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="341.71" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="29.7" y="549" width="2.8" height="15.0" fill="rgb(229,222,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>decode(os) (1 samples, 0.24%)</title><rect x="184.2" y="1157" width="2.8" height="15.0" fill="rgb(219,70,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="187.19" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>blockchain_services(raiden.tests.integration.fixtures.blockchain) (2 samples, 0.48%)</title><rect x="91.5" y="693" width="5.6" height="15.0" fill="rgb(228,111,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_environ_proxies(requests.utils) (1 samples, 0.24%)</title><rect x="184.2" y="1253" width="2.8" height="15.0" fill="rgb(227,40,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="187.19" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (1 samples, 0.24%)</title><rect x="99.9" y="485" width="2.8" height="15.0" fill="rgb(246,138,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="102.90" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="119.6" y="565" width="2.8" height="15.0" fill="rgb(249,186,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="122.57" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get(email.message) (1 samples, 0.24%)</title><rect x="557.9" y="1237" width="2.8" height="15.0" fill="rgb(252,101,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="560.86" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>uname(platform) (1 samples, 0.24%)</title><rect x="1173.1" y="1237" width="2.9" height="15.0" fill="rgb(239,10,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1176.14" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>state_transition(raiden.transfer.node) (1 samples, 0.24%)</title><rect x="1046.7" y="1349" width="2.8" height="15.0" fill="rgb(244,226,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1049.71" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="602.8" y="1237" width="2.8" height="15.0" fill="rgb(221,74,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="605.81" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pytest_fixture_setup(_pytest.fixtures) (6 samples, 1.43%)</title><rect x="128.0" y="677" width="16.9" height="15.0" fill="rgb(245,127,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="131.00" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>hexstr_if_str(eth_utils.conversions) (1 samples, 0.24%)</title><rect x="437.0" y="1077" width="2.9" height="15.0" fill="rgb(254,9,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="440.05" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__send_chunk(gevent._socketcommon) (1 samples, 0.24%)</title><rect x="490.4" y="869" width="2.8" height="15.0" fill="rgb(253,88,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="493.43" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>iterencode(json.encoder) (1 samples, 0.24%)</title><rect x="226.3" y="1189" width="2.8" height="15.0" fill="rgb(234,216,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="229.33" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>poll_blockchain_events(raiden.blockchain.events) (33 samples, 7.86%)</title><rect x="428.6" y="1365" width="92.7" height="15.0" fill="rgb(215,46,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="431.62" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >poll_blockc..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(collections.abc) (1 samples, 0.24%)</title><rect x="361.2" y="997" width="2.8" height="15.0" fill="rgb(254,30,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="364.19" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="74.6" y="549" width="2.8" height="15.0" fill="rgb(248,157,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="77.62" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>format(logging) (1 samples, 0.24%)</title><rect x="372.4" y="1141" width="2.8" height="15.0" fill="rgb(234,19,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="375.43" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="1024.2" y="1189" width="2.8" height="15.0" fill="rgb(245,43,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.24" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="15.6" y="421" width="2.8" height="15.0" fill="rgb(252,4,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parseNoCache(pkg_resources._vendor.pyparsing) (4 samples, 0.95%)</title><rect x="1108.5" y="821" width="11.3" height="15.0" fill="rgb(223,42,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1111.52" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="144.9" y="389" width="2.8" height="15.0" fill="rgb(252,2,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_hex_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="504.5" y="741" width="2.8" height="15.0" fill="rgb(240,44,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="507.48" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_wrapper(web3.utils.decorators) (1 samples, 0.24%)</title><rect x="99.9" y="629" width="2.8" height="15.0" fill="rgb(232,92,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="102.90" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(urllib3.connectionpool) (1 samples, 0.24%)</title><rect x="605.6" y="1013" width="2.8" height="15.0" fill="rgb(231,127,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="608.62" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(urllib3.connectionpool) (1 samples, 0.24%)</title><rect x="91.5" y="293" width="2.8" height="15.0" fill="rgb(207,228,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><lambda>(pluggy.manager) (55 samples, 13.10%)</title><rect x="10.0" y="1013" width="154.5" height="15.0" fill="rgb(209,226,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><lambda>(pluggy.man..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>match(re) (1 samples, 0.24%)</title><rect x="1041.1" y="1253" width="2.8" height="15.0" fill="rgb(235,110,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1044.10" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(raiden.storage.sqlite) (1 samples, 0.24%)</title><rect x="305.0" y="1237" width="2.8" height="15.0" fill="rgb(213,105,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="308.00" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>map_abi_data(web3.utils.abi) (1 samples, 0.24%)</title><rect x="591.6" y="1285" width="2.8" height="15.0" fill="rgb(244,211,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="594.57" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="257.2" y="1061" width="2.8" height="15.0" fill="rgb(222,27,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="260.24" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>data_tree_map(web3.utils.abi) (1 samples, 0.24%)</title><rect x="302.2" y="1029" width="2.8" height="15.0" fill="rgb(221,54,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="305.19" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>stream(urllib3.response) (1 samples, 0.24%)</title><rect x="80.2" y="277" width="2.8" height="15.0" fill="rgb(248,30,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>decode(os) (3 samples, 0.71%)</title><rect x="459.5" y="933" width="8.5" height="15.0" fill="rgb(224,58,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="462.52" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="29.7" y="181" width="2.8" height="15.0" fill="rgb(250,154,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>poll_blockchain_events(raiden.blockchain.events) (1 samples, 0.24%)</title><rect x="32.5" y="773" width="2.8" height="15.0" fill="rgb(216,195,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="35.48" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>check_address_has_code(raiden.network.rpc.client) (1 samples, 0.24%)</title><rect x="614.0" y="1381" width="2.9" height="15.0" fill="rgb(253,33,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="617.05" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="566.3" y="1189" width="2.8" height="15.0" fill="rgb(239,11,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (1 samples, 0.24%)</title><rect x="114.0" y="469" width="2.8" height="15.0" fill="rgb(241,3,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="116.95" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>cleanup_tasks(raiden.tests.utils.tests) (2 samples, 0.48%)</title><rect x="158.9" y="837" width="5.6" height="15.0" fill="rgb(247,188,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="161.90" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (2 samples, 0.48%)</title><rect x="271.3" y="885" width="5.6" height="15.0" fill="rgb(229,98,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_connection(requests.adapters) (1 samples, 0.24%)</title><rect x="597.2" y="997" width="2.8" height="15.0" fill="rgb(227,154,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="600.19" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (3 samples, 0.71%)</title><rect x="291.0" y="997" width="8.4" height="15.0" fill="rgb(214,175,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="293.95" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sign(raiden.messages) (1 samples, 0.24%)</title><rect x="26.9" y="789" width="2.8" height="15.0" fill="rgb(229,56,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="29.86" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="85.9" y="629" width="2.8" height="15.0" fill="rgb(252,25,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="88.86" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><genexpr>(eth_utils.address) (1 samples, 0.24%)</title><rect x="189.8" y="1221" width="2.8" height="15.0" fill="rgb(208,210,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="192.81" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (2 samples, 0.48%)</title><rect x="237.6" y="1045" width="5.6" height="15.0" fill="rgb(209,102,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>default(raiden.storage.serialize) (1 samples, 0.24%)</title><rect x="282.5" y="1157" width="2.8" height="15.0" fill="rgb(211,188,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="285.52" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="29.7" y="213" width="2.8" height="15.0" fill="rgb(248,45,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parsestr(email.parser) (2 samples, 0.48%)</title><rect x="237.6" y="821" width="5.6" height="15.0" fill="rgb(237,227,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recursive_map(web3.utils.formatters) (1 samples, 0.24%)</title><rect x="569.1" y="1285" width="2.8" height="15.0" fill="rgb(234,108,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="572.10" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(collections.abc) (1 samples, 0.24%)</title><rect x="611.2" y="981" width="2.8" height="15.0" fill="rgb(212,228,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="614.24" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (5 samples, 1.19%)</title><rect x="375.2" y="1141" width="14.1" height="15.0" fill="rgb(223,174,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="378.24" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_multicall(pluggy.callers) (3 samples, 0.71%)</title><rect x="144.9" y="645" width="8.4" height="15.0" fill="rgb(211,74,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="209.5" y="661" width="2.8" height="15.0" fill="rgb(225,181,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__new__(hexbytes.main) (1 samples, 0.24%)</title><rect x="352.8" y="1141" width="2.8" height="15.0" fill="rgb(206,199,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="355.76" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (3 samples, 0.71%)</title><rect x="201.0" y="821" width="8.5" height="15.0" fill="rgb(230,95,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="204.05" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>encode(json.encoder) (1 samples, 0.24%)</title><rect x="305.0" y="1189" width="2.8" height="15.0" fill="rgb(214,202,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="308.00" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parseNoCache(pkg_resources._vendor.pyparsing) (26 samples, 6.19%)</title><rect x="1088.9" y="1237" width="73.0" height="15.0" fill="rgb(238,40,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1091.86" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_parseNo..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>hexstr_if_str(eth_utils.conversions) (2 samples, 0.48%)</title><rect x="507.3" y="709" width="5.6" height="15.0" fill="rgb(218,120,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="510.29" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>debug(structlog.stdlib) (1 samples, 0.24%)</title><rect x="423.0" y="1301" width="2.8" height="15.0" fill="rgb(215,26,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="426.00" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_callback_new_block(raiden.raiden_service) (61 samples, 14.52%)</title><rect x="350.0" y="1381" width="171.3" height="15.0" fill="rgb(221,137,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="352.95" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_callback_new_block(ra..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (1 samples, 0.24%)</title><rect x="91.5" y="357" width="2.8" height="15.0" fill="rgb(217,66,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.sessions) (1 samples, 0.24%)</title><rect x="12.8" y="453" width="2.8" height="15.0" fill="rgb(235,54,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters_to_dict(web3.utils.formatters) (2 samples, 0.48%)</title><rect x="350.0" y="1189" width="5.6" height="15.0" fill="rgb(244,56,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="352.95" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><genexpr>(copy) (1 samples, 0.24%)</title><rect x="52.1" y="357" width="2.9" height="15.0" fill="rgb(238,103,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="55.14" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (1 samples, 0.24%)</title><rect x="417.4" y="1157" width="2.8" height="15.0" fill="rgb(249,101,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="420.38" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_kill_all_kids(mirakuru.base) (1 samples, 0.24%)</title><rect x="153.3" y="741" width="2.8" height="15.0" fill="rgb(247,16,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="156.29" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>connection_from_host(urllib3.poolmanager) (1 samples, 0.24%)</title><rect x="476.4" y="981" width="2.8" height="15.0" fill="rgb(228,210,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="479.38" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><genexpr>(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="434.2" y="821" width="2.8" height="15.0" fill="rgb(225,64,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="437.24" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="29.7" y="149" width="2.8" height="15.0" fill="rgb(220,127,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>default_middlewares(web3.manager) (1 samples, 0.24%)</title><rect x="588.8" y="1221" width="2.8" height="15.0" fill="rgb(230,125,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="591.76" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><genexpr>(copy) (1 samples, 0.24%)</title><rect x="29.7" y="165" width="2.8" height="15.0" fill="rgb(208,77,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (1 samples, 0.24%)</title><rect x="411.8" y="1221" width="2.8" height="15.0" fill="rgb(235,111,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call(web3.eth) (1 samples, 0.24%)</title><rect x="566.3" y="1349" width="2.8" height="15.0" fill="rgb(238,29,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parse_headers(email.feedparser) (1 samples, 0.24%)</title><rect x="484.8" y="853" width="2.8" height="15.0" fill="rgb(248,25,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="487.81" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getCode(web3.eth) (2 samples, 0.48%)</title><rect x="1027.0" y="1285" width="5.7" height="15.0" fill="rgb(254,169,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1030.05" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (2 samples, 0.48%)</title><rect x="271.3" y="1173" width="5.6" height="15.0" fill="rgb(211,111,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (4 samples, 0.95%)</title><rect x="15.6" y="725" width="11.3" height="15.0" fill="rgb(231,215,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>stop(gevent.timeout) (1 samples, 0.24%)</title><rect x="335.9" y="1317" width="2.8" height="15.0" fill="rgb(214,25,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="338.90" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>debug(structlog.stdlib) (2 samples, 0.48%)</title><rect x="338.7" y="1397" width="5.6" height="15.0" fill="rgb(206,30,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="341.71" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_check_for_outdated_channel(raiden.network.proxies.token_network) (2 samples, 0.48%)</title><rect x="591.6" y="1365" width="5.6" height="15.0" fill="rgb(254,16,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="594.57" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_environ_proxies(requests.utils) (1 samples, 0.24%)</title><rect x="1187.2" y="1285" width="2.8" height="15.0" fill="rgb(248,69,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.19" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__new__(web3.utils.datatypes) (1 samples, 0.24%)</title><rect x="102.7" y="437" width="2.8" height="15.0" fill="rgb(250,99,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="105.71" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getLogs(web3.eth) (33 samples, 7.86%)</title><rect x="428.6" y="1333" width="92.7" height="15.0" fill="rgb(222,112,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="431.62" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >getLogs(web..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="288.1" y="853" width="2.9" height="15.0" fill="rgb(213,174,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>validate_address(web3.utils.validation) (4 samples, 0.95%)</title><rect x="504.5" y="773" width="11.2" height="15.0" fill="rgb(235,163,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="507.48" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>contract(web3.eth) (1 samples, 0.24%)</title><rect x="147.7" y="549" width="2.8" height="15.0" fill="rgb(208,32,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="150.67" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call(web3.eth) (1 samples, 0.24%)</title><rect x="420.2" y="1253" width="2.8" height="15.0" fill="rgb(219,125,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="423.19" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="209.5" y="629" width="2.8" height="15.0" fill="rgb(243,63,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pytest_runtest_call(_pytest.runner) (21 samples, 5.00%)</title><rect x="10.0" y="981" width="59.0" height="15.0" fill="rgb(236,179,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pytest..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseImpl(pkg_resources._vendor.pyparsing) (2 samples, 0.48%)</title><rect x="1114.1" y="805" width="5.7" height="15.0" fill="rgb(228,113,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1117.14" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(ens.main) (1 samples, 0.24%)</title><rect x="128.0" y="533" width="2.8" height="15.0" fill="rgb(212,191,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="131.00" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parse_sub(sre_parse) (1 samples, 0.24%)</title><rect x="1041.1" y="1189" width="2.8" height="15.0" fill="rgb(223,161,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1044.10" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_list_like(eth_utils.types) (1 samples, 0.24%)</title><rect x="442.7" y="1045" width="2.8" height="15.0" fill="rgb(241,18,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="445.67" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="614.0" y="1317" width="2.9" height="15.0" fill="rgb(254,198,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="617.05" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_post_request(web3.utils.request) (1 samples, 0.24%)</title><rect x="167.3" y="1029" width="2.8" height="15.0" fill="rgb(211,224,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="114.0" y="453" width="2.8" height="15.0" fill="rgb(240,168,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="116.95" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="344.3" y="1253" width="2.8" height="15.0" fill="rgb(237,131,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="347.33" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>fromWeb3(ens.main) (1 samples, 0.24%)</title><rect x="133.6" y="517" width="2.8" height="15.0" fill="rgb(230,196,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="136.62" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (2 samples, 0.48%)</title><rect x="271.3" y="1077" width="5.6" height="15.0" fill="rgb(252,92,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="583.1" y="1237" width="2.9" height="15.0" fill="rgb(229,200,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="586.14" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call(web3.eth) (1 samples, 0.24%)</title><rect x="167.3" y="1269" width="2.8" height="15.0" fill="rgb(219,38,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="114.0" y="517" width="2.8" height="15.0" fill="rgb(228,143,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="116.95" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (3 samples, 0.71%)</title><rect x="291.0" y="1013" width="8.4" height="15.0" fill="rgb(215,60,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="293.95" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get(email.message) (1 samples, 0.24%)</title><rect x="482.0" y="949" width="2.8" height="15.0" fill="rgb(246,131,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="485.00" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (33 samples, 7.86%)</title><rect x="428.6" y="1285" width="92.7" height="15.0" fill="rgb(219,39,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="431.62" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >middleware(..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>detail(raiden.network.proxies.token_network) (1 samples, 0.24%)</title><rect x="414.6" y="1301" width="2.8" height="15.0" fill="rgb(219,85,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="417.57" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>bind_partial(inspect) (1 samples, 0.24%)</title><rect x="1035.5" y="1173" width="2.8" height="15.0" fill="rgb(213,219,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1038.48" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>default(raiden.storage.serialize) (1 samples, 0.24%)</title><rect x="268.5" y="1189" width="2.8" height="15.0" fill="rgb(245,171,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="271.48" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="12.8" y="725" width="2.8" height="15.0" fill="rgb(206,106,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="619.7" y="1349" width="2.8" height="15.0" fill="rgb(250,205,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="622.67" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parseNoCache(pkg_resources._vendor.pyparsing) (1 samples, 0.24%)</title><rect x="1133.8" y="901" width="2.8" height="15.0" fill="rgb(228,174,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1136.81" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (3 samples, 0.71%)</title><rect x="201.0" y="613" width="8.5" height="15.0" fill="rgb(221,40,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="204.05" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_get_room_for_address(raiden.network.transport.matrix.transport) (1 samples, 0.24%)</title><rect x="321.9" y="1381" width="2.8" height="15.0" fill="rgb(223,110,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="324.86" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (3 samples, 0.71%)</title><rect x="201.0" y="869" width="8.5" height="15.0" fill="rgb(241,68,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="204.05" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>keccak(eth_utils.crypto) (1 samples, 0.24%)</title><rect x="571.9" y="1317" width="2.8" height="15.0" fill="rgb(211,153,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="574.90" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>prepare_transaction(web3.utils.contracts) (1 samples, 0.24%)</title><rect x="594.4" y="1285" width="2.8" height="15.0" fill="rgb(228,84,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="597.38" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (1 samples, 0.24%)</title><rect x="80.2" y="469" width="2.8" height="15.0" fill="rgb(221,195,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>merge_environment_settings(requests.sessions) (1 samples, 0.24%)</title><rect x="32.5" y="453" width="2.8" height="15.0" fill="rgb(209,79,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="35.48" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>log_and_dispatch(raiden.storage.wal) (1 samples, 0.24%)</title><rect x="1046.7" y="1381" width="2.8" height="15.0" fill="rgb(241,84,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1049.71" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="577.5" y="1221" width="2.8" height="15.0" fill="rgb(238,78,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="580.52" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(collections.abc) (1 samples, 0.24%)</title><rect x="330.3" y="1237" width="2.8" height="15.0" fill="rgb(213,43,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="333.29" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.sessions) (1 samples, 0.24%)</title><rect x="535.4" y="1317" width="2.8" height="15.0" fill="rgb(223,84,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="538.38" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>emit(logging.handlers) (1 samples, 0.24%)</title><rect x="97.1" y="533" width="2.8" height="15.0" fill="rgb(249,43,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="100.10" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (2 samples, 0.48%)</title><rect x="608.4" y="1205" width="5.6" height="15.0" fill="rgb(239,56,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="611.43" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (1 samples, 0.24%)</title><rect x="420.2" y="1173" width="2.8" height="15.0" fill="rgb(243,43,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="423.19" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="209.5" y="581" width="2.8" height="15.0" fill="rgb(238,66,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="55.0" y="325" width="2.8" height="15.0" fill="rgb(233,164,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_sendall(gevent._socketcommon) (1 samples, 0.24%)</title><rect x="490.4" y="885" width="2.8" height="15.0" fill="rgb(217,56,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="493.43" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recurse(web3.utils.formatters) (2 samples, 0.48%)</title><rect x="431.4" y="949" width="5.6" height="15.0" fill="rgb(215,202,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="434.43" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="1043.9" y="1317" width="2.8" height="15.0" fill="rgb(223,148,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1046.90" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (3 samples, 0.71%)</title><rect x="201.0" y="645" width="8.5" height="15.0" fill="rgb(241,195,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="204.05" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="411.8" y="1189" width="2.8" height="15.0" fill="rgb(207,148,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle(logging) (1 samples, 0.24%)</title><rect x="423.0" y="1221" width="2.8" height="15.0" fill="rgb(207,80,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="426.00" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getproxies_environment(urllib.request) (1 samples, 0.24%)</title><rect x="1043.9" y="981" width="2.8" height="15.0" fill="rgb(237,11,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1046.90" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_normalized_address(eth_utils.address) (3 samples, 0.71%)</title><rect x="507.3" y="725" width="8.4" height="15.0" fill="rgb(244,76,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="510.29" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="260.0" y="629" width="2.9" height="15.0" fill="rgb(218,109,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (1 samples, 0.24%)</title><rect x="574.7" y="1093" width="2.8" height="15.0" fill="rgb(226,101,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="577.71" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parseNoCache(pkg_resources._vendor.pyparsing) (4 samples, 0.95%)</title><rect x="1142.2" y="901" width="11.3" height="15.0" fill="rgb(209,22,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1145.24" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.sessions) (1 samples, 0.24%)</title><rect x="167.3" y="981" width="2.8" height="15.0" fill="rgb(245,217,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__contains__(pkg_resources) (2 samples, 0.48%)</title><rect x="1052.3" y="1349" width="5.7" height="15.0" fill="rgb(246,6,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1055.33" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>requires(pkg_resources) (45 samples, 10.71%)</title><rect x="1060.8" y="1349" width="126.4" height="15.0" fill="rgb(213,228,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1063.76" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >requires(pkg_re..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(ens.main) (1 samples, 0.24%)</title><rect x="83.0" y="581" width="2.9" height="15.0" fill="rgb(234,61,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="86.05" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="170.1" y="1109" width="2.9" height="15.0" fill="rgb(242,14,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="173.14" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (4 samples, 0.95%)</title><rect x="288.1" y="1237" width="11.3" height="15.0" fill="rgb(239,159,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (2 samples, 0.48%)</title><rect x="608.4" y="1157" width="5.6" height="15.0" fill="rgb(239,66,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="611.43" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>map_collection(web3.utils.formatters) (1 samples, 0.24%)</title><rect x="366.8" y="1189" width="2.8" height="15.0" fill="rgb(221,149,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="369.81" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>uuid4(uuid) (1 samples, 0.24%)</title><rect x="187.0" y="1365" width="2.8" height="15.0" fill="rgb(253,159,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="190.00" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>merge_environment_settings(requests.sessions) (1 samples, 0.24%)</title><rect x="417.4" y="1013" width="2.8" height="15.0" fill="rgb(216,160,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="420.38" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (1 samples, 0.24%)</title><rect x="139.2" y="261" width="2.8" height="15.0" fill="rgb(228,165,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_send_output(http.client) (1 samples, 0.24%)</title><rect x="605.6" y="949" width="2.8" height="15.0" fill="rgb(254,134,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="608.62" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="257.2" y="1013" width="2.8" height="15.0" fill="rgb(244,84,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="260.24" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_run(raiden.network.transport.matrix.transport) (10 samples, 2.38%)</title><rect x="319.0" y="1429" width="28.1" height="15.0" fill="rgb(226,50,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="322.05" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="69.0" y="453" width="2.8" height="15.0" fill="rgb(236,185,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><genexpr>(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="524.1" y="1093" width="2.9" height="15.0" fill="rgb(221,208,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="527.14" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>close_block_number(raiden.network.proxies.payment_channel) (1 samples, 0.24%)</title><rect x="411.8" y="1317" width="2.8" height="15.0" fill="rgb(231,200,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="257.2" y="981" width="2.8" height="15.0" fill="rgb(214,208,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="260.24" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call(web3.eth) (2 samples, 0.48%)</title><rect x="608.4" y="1317" width="5.6" height="15.0" fill="rgb(239,18,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="611.43" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>fromWeb3(ens.main) (1 samples, 0.24%)</title><rect x="147.7" y="501" width="2.8" height="15.0" fill="rgb(236,169,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="150.67" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (21 samples, 5.00%)</title><rect x="439.9" y="1141" width="59.0" height="15.0" fill="rgb(248,148,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="442.86" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >apply_..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>abi_data_tree(web3.utils.abi) (1 samples, 0.24%)</title><rect x="591.6" y="1269" width="2.8" height="15.0" fill="rgb(237,175,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="594.57" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="29.7" y="421" width="2.8" height="15.0" fill="rgb(236,108,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>eth_sign_sha3(raiden.utils.signer) (1 samples, 0.24%)</title><rect x="181.4" y="1333" width="2.8" height="15.0" fill="rgb(252,150,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="184.38" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>packed(raiden.messages) (1 samples, 0.24%)</title><rect x="338.7" y="1157" width="2.8" height="15.0" fill="rgb(215,186,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="341.71" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="99.9" y="357" width="2.8" height="15.0" fill="rgb(251,172,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="102.90" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>post(requests.sessions) (1 samples, 0.24%)</title><rect x="139.2" y="277" width="2.8" height="15.0" fill="rgb(214,142,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>inner(eth_utils.functional) (1 samples, 0.24%)</title><rect x="80.2" y="629" width="2.8" height="15.0" fill="rgb(206,170,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (5 samples, 1.19%)</title><rect x="375.2" y="1013" width="14.1" height="15.0" fill="rgb(209,8,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="378.24" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_retry_on_intr(urllib3.util.wait) (1 samples, 0.24%)</title><rect x="167.3" y="869" width="2.8" height="15.0" fill="rgb(253,212,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(collections.abc) (4 samples, 0.95%)</title><rect x="448.3" y="997" width="11.2" height="15.0" fill="rgb(208,176,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="451.29" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>check_address_has_code(raiden.network.rpc.client) (1 samples, 0.24%)</title><rect x="583.1" y="1365" width="2.9" height="15.0" fill="rgb(250,216,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="586.14" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="77.4" y="645" width="2.8" height="15.0" fill="rgb(219,154,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="80.43" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (2 samples, 0.48%)</title><rect x="237.6" y="1013" width="5.6" height="15.0" fill="rgb(232,20,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>encode(json.encoder) (1 samples, 0.24%)</title><rect x="307.8" y="1109" width="2.8" height="15.0" fill="rgb(242,112,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="310.81" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="288.1" y="917" width="2.9" height="15.0" fill="rgb(226,149,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="1043.9" y="1269" width="2.8" height="15.0" fill="rgb(250,98,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1046.90" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (3 samples, 0.71%)</title><rect x="57.8" y="565" width="8.4" height="15.0" fill="rgb(246,169,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="60.76" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>formatMessage(logging) (1 samples, 0.24%)</title><rect x="372.4" y="1125" width="2.8" height="15.0" fill="rgb(251,75,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="375.43" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="288.1" y="501" width="2.9" height="15.0" fill="rgb(210,155,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>detail(raiden.network.proxies.token_network) (1 samples, 0.24%)</title><rect x="569.1" y="1381" width="2.8" height="15.0" fill="rgb(249,172,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="572.10" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.main) (1 samples, 0.24%)</title><rect x="85.9" y="549" width="2.8" height="15.0" fill="rgb(233,90,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="88.86" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_get_operator(pkg_resources.extern.packaging.specifiers) (1 samples, 0.24%)</title><rect x="1052.3" y="1285" width="2.8" height="15.0" fill="rgb(215,82,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1055.33" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="209.5" y="405" width="2.8" height="15.0" fill="rgb(245,27,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="125.2" y="469" width="2.8" height="15.0" fill="rgb(221,210,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="128.19" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="383.7" y="773" width="2.8" height="15.0" fill="rgb(216,133,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="386.67" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(ens.main) (1 samples, 0.24%)</title><rect x="105.5" y="533" width="2.8" height="15.0" fill="rgb(234,186,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="108.52" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>debug(logging) (2 samples, 0.48%)</title><rect x="338.7" y="1349" width="5.6" height="15.0" fill="rgb(219,76,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="341.71" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (1 samples, 0.24%)</title><rect x="611.2" y="1045" width="2.8" height="15.0" fill="rgb(249,113,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="614.24" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (1 samples, 0.24%)</title><rect x="414.6" y="965" width="2.8" height="15.0" fill="rgb(249,22,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="417.57" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>decode(os) (1 samples, 0.24%)</title><rect x="574.7" y="917" width="2.8" height="15.0" fill="rgb(239,226,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="577.71" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>decode(os) (1 samples, 0.24%)</title><rect x="361.2" y="965" width="2.8" height="15.0" fill="rgb(253,26,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="364.19" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (3 samples, 0.71%)</title><rect x="243.2" y="1205" width="8.4" height="15.0" fill="rgb(219,220,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (2 samples, 0.48%)</title><rect x="1035.5" y="1221" width="5.6" height="15.0" fill="rgb(218,30,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1038.48" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>patched_web3_eth_estimate_gas(raiden.network.rpc.client) (1 samples, 0.24%)</title><rect x="139.2" y="533" width="2.8" height="15.0" fill="rgb(245,215,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(pkg_resources.extern.packaging.markers) (5 samples, 1.19%)</title><rect x="1139.4" y="1029" width="14.1" height="15.0" fill="rgb(254,0,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1142.43" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_post_request(web3.utils.request) (1 samples, 0.24%)</title><rect x="69.0" y="389" width="2.8" height="15.0" fill="rgb(211,184,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (3 samples, 0.71%)</title><rect x="291.0" y="1061" width="8.4" height="15.0" fill="rgb(224,84,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="293.95" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__new__(web3.utils.abi) (1 samples, 0.24%)</title><rect x="173.0" y="1173" width="2.8" height="15.0" fill="rgb(243,127,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="175.95" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (2 samples, 0.48%)</title><rect x="271.3" y="741" width="5.6" height="15.0" fill="rgb(235,224,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send_text(matrix_client.room) (3 samples, 0.71%)</title><rect x="330.3" y="1381" width="8.4" height="15.0" fill="rgb(250,228,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="333.29" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (3 samples, 0.71%)</title><rect x="291.0" y="1029" width="8.4" height="15.0" fill="rgb(238,191,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="293.95" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (1 samples, 0.24%)</title><rect x="414.6" y="1109" width="2.8" height="15.0" fill="rgb(244,96,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="417.57" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>emit(logging) (1 samples, 0.24%)</title><rect x="423.0" y="1141" width="2.8" height="15.0" fill="rgb(230,151,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="426.00" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>should_bypass_proxies(requests.utils) (1 samples, 0.24%)</title><rect x="411.8" y="981" width="2.8" height="15.0" fill="rgb(216,22,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="1024.2" y="1061" width="2.8" height="15.0" fill="rgb(233,119,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.24" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (2 samples, 0.48%)</title><rect x="276.9" y="1077" width="5.6" height="15.0" fill="rgb(226,223,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_read_status(http.client) (1 samples, 0.24%)</title><rect x="12.8" y="357" width="2.8" height="15.0" fill="rgb(216,74,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_recognized_type(web3.utils.abi) (1 samples, 0.24%)</title><rect x="1041.1" y="1269" width="2.8" height="15.0" fill="rgb(218,57,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1044.10" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (3 samples, 0.71%)</title><rect x="521.3" y="1285" width="8.5" height="15.0" fill="rgb(244,62,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="524.33" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__getitem__(os) (4 samples, 0.95%)</title><rect x="459.5" y="949" width="11.3" height="15.0" fill="rgb(248,229,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="462.52" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_post_request(web3.utils.request) (1 samples, 0.24%)</title><rect x="417.4" y="1061" width="2.8" height="15.0" fill="rgb(238,82,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="420.38" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>map_collection(web3.utils.formatters) (2 samples, 0.48%)</title><rect x="431.4" y="1045" width="5.6" height="15.0" fill="rgb(229,76,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="434.43" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(http.client) (1 samples, 0.24%)</title><rect x="144.9" y="197" width="2.8" height="15.0" fill="rgb(231,94,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_encode_params(requests.models) (1 samples, 0.24%)</title><rect x="546.6" y="1285" width="2.8" height="15.0" fill="rgb(251,92,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="549.62" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (3 samples, 0.71%)</title><rect x="260.0" y="1109" width="8.5" height="15.0" fill="rgb(221,91,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="69.0" y="533" width="2.8" height="15.0" fill="rgb(233,209,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(raiden.network.proxies.payment_channel) (1 samples, 0.24%)</title><rect x="580.3" y="1397" width="2.8" height="15.0" fill="rgb(252,100,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="583.33" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>on_message(raiden.message_handler) (25 samples, 5.95%)</title><rect x="237.6" y="1333" width="70.2" height="15.0" fill="rgb(230,126,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >on_mess..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (1 samples, 0.24%)</title><rect x="1043.9" y="1253" width="2.8" height="15.0" fill="rgb(231,4,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1046.90" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="566.3" y="1237" width="2.8" height="15.0" fill="rgb(220,24,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>check_transaction_threw(raiden.network.rpc.transactions) (1 samples, 0.24%)</title><rect x="605.6" y="1381" width="2.8" height="15.0" fill="rgb(219,21,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="608.62" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ens(web3.main) (1 samples, 0.24%)</title><rect x="128.0" y="565" width="2.8" height="15.0" fill="rgb(237,216,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="131.00" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="139.2" y="357" width="2.8" height="15.0" fill="rgb(217,197,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>format(logging) (2 samples, 0.48%)</title><rect x="369.6" y="1173" width="5.6" height="15.0" fill="rgb(244,159,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="372.62" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (1 samples, 0.24%)</title><rect x="80.2" y="533" width="2.8" height="15.0" fill="rgb(210,94,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>buildTransaction(web3.contract) (1 samples, 0.24%)</title><rect x="139.2" y="581" width="2.8" height="15.0" fill="rgb(245,16,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (1 samples, 0.24%)</title><rect x="77.4" y="581" width="2.8" height="15.0" fill="rgb(207,65,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="80.43" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="580.3" y="1173" width="2.8" height="15.0" fill="rgb(241,132,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="583.33" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>post(requests.sessions) (1 samples, 0.24%)</title><rect x="111.1" y="357" width="2.9" height="15.0" fill="rgb(229,179,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="114.14" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (1 samples, 0.24%)</title><rect x="583.1" y="1269" width="2.9" height="15.0" fill="rgb(242,184,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="586.14" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>post(requests.sessions) (1 samples, 0.24%)</title><rect x="411.8" y="1045" width="2.8" height="15.0" fill="rgb(245,83,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><genexpr>(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="116.8" y="437" width="2.8" height="15.0" fill="rgb(222,65,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="119.76" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="139.2" y="517" width="2.8" height="15.0" fill="rgb(227,74,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_multicall(pluggy.callers) (6 samples, 1.43%)</title><rect x="128.0" y="693" width="16.9" height="15.0" fill="rgb(241,132,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="131.00" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__enter__(threading) (1 samples, 0.24%)</title><rect x="111.1" y="245" width="2.9" height="15.0" fill="rgb(250,76,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="114.14" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (9 samples, 2.14%)</title><rect x="198.2" y="1141" width="25.3" height="15.0" fill="rgb(236,201,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="201.24" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="614.0" y="1269" width="2.9" height="15.0" fill="rgb(251,203,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="617.05" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (7 samples, 1.67%)</title><rect x="392.1" y="1109" width="19.7" height="15.0" fill="rgb(230,94,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="395.10" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_checksum_address(eth_utils.address) (3 samples, 0.71%)</title><rect x="507.3" y="741" width="8.4" height="15.0" fill="rgb(248,210,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="510.29" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_expiration_generator(raiden.network.transport.matrix.transport) (1 samples, 0.24%)</title><rect x="319.0" y="1381" width="2.9" height="15.0" fill="rgb(241,210,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="322.05" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_unlock(raiden.transfer.channel) (2 samples, 0.48%)</title><rect x="299.4" y="1141" width="5.6" height="15.0" fill="rgb(251,145,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="302.38" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getproxies_environment(urllib.request) (1 samples, 0.24%)</title><rect x="420.2" y="901" width="2.8" height="15.0" fill="rgb(206,67,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="423.19" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recursive_map(web3.utils.formatters) (1 samples, 0.24%)</title><rect x="594.4" y="1189" width="2.8" height="15.0" fill="rgb(245,70,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="597.38" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get(queue) (1 samples, 0.24%)</title><rect x="111.1" y="261" width="2.9" height="15.0" fill="rgb(231,22,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="114.14" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="32.5" y="533" width="2.8" height="15.0" fill="rgb(212,74,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="35.48" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><genexpr>(eth_utils.address) (1 samples, 0.24%)</title><rect x="229.1" y="1157" width="2.9" height="15.0" fill="rgb(206,196,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="232.14" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (1 samples, 0.24%)</title><rect x="167.3" y="1125" width="2.8" height="15.0" fill="rgb(240,88,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>log_and_dispatch(raiden.storage.wal) (1 samples, 0.24%)</title><rect x="29.7" y="741" width="2.8" height="15.0" fill="rgb(253,148,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call_contract_function(web3.contract) (1 samples, 0.24%)</title><rect x="71.8" y="645" width="2.8" height="15.0" fill="rgb(236,175,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="74.81" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (2 samples, 0.48%)</title><rect x="383.7" y="885" width="5.6" height="15.0" fill="rgb(213,7,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="386.67" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_hex(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="512.9" y="677" width="2.8" height="15.0" fill="rgb(217,159,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="515.90" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="597.2" y="1221" width="2.8" height="15.0" fill="rgb(208,216,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="600.19" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>dispatch(raiden.transfer.architecture) (10 samples, 2.38%)</title><rect x="198.2" y="1253" width="28.1" height="15.0" fill="rgb(207,132,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="201.24" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>token_address(raiden.network.proxies.token_network) (2 samples, 0.48%)</title><rect x="608.4" y="1381" width="5.6" height="15.0" fill="rgb(242,93,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="611.43" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__setattr__(raiden.encoding.format) (1 samples, 0.24%)</title><rect x="338.7" y="1125" width="2.8" height="15.0" fill="rgb(235,103,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="341.71" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_partial_args(toolz.functoolz) (1 samples, 0.24%)</title><rect x="119.6" y="533" width="2.8" height="15.0" fill="rgb(219,172,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="122.57" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(logging) (1 samples, 0.24%)</title><rect x="234.8" y="1141" width="2.8" height="15.0" fill="rgb(210,37,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="237.76" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>merge_environment_settings(requests.sessions) (1 samples, 0.24%)</title><rect x="611.2" y="1029" width="2.8" height="15.0" fill="rgb(242,129,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="614.24" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_call_parse(email.feedparser) (1 samples, 0.24%)</title><rect x="69.0" y="181" width="2.8" height="15.0" fill="rgb(220,2,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_multicall(pluggy.callers) (55 samples, 13.10%)</title><rect x="10.0" y="1237" width="154.5" height="15.0" fill="rgb(238,98,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_multicall(pluggy.c..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>patched_contractfunction_estimateGas(raiden.network.rpc.client) (1 samples, 0.24%)</title><rect x="600.0" y="1333" width="2.8" height="15.0" fill="rgb(232,66,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="603.00" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="614.0" y="1349" width="2.9" height="15.0" fill="rgb(210,105,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="617.05" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>makeLogRecord(logging) (1 samples, 0.24%)</title><rect x="97.1" y="469" width="2.8" height="15.0" fill="rgb(249,211,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="100.10" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_log(logging) (2 samples, 0.48%)</title><rect x="232.0" y="1285" width="5.6" height="15.0" fill="rgb(234,179,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="234.95" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><lambda>(web3.utils.transactions) (1 samples, 0.24%)</title><rect x="139.2" y="549" width="2.8" height="15.0" fill="rgb(222,66,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_put_conn(urllib3.connectionpool) (1 samples, 0.24%)</title><rect x="80.2" y="197" width="2.8" height="15.0" fill="rgb(225,166,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>contains(pkg_resources.extern.packaging.specifiers) (2 samples, 0.48%)</title><rect x="1052.3" y="1333" width="5.7" height="15.0" fill="rgb(249,212,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1055.33" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="580.3" y="1253" width="2.8" height="15.0" fill="rgb(239,227,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="583.33" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="94.3" y="453" width="2.8" height="15.0" fill="rgb(254,20,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_exit_wrapper(contextlib) (1 samples, 0.24%)</title><rect x="153.3" y="789" width="2.8" height="15.0" fill="rgb(220,209,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="156.29" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>serialize(raiden.storage.serialize) (1 samples, 0.24%)</title><rect x="229.1" y="1269" width="2.9" height="15.0" fill="rgb(214,80,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="232.14" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (2 samples, 0.48%)</title><rect x="237.6" y="1173" width="5.6" height="15.0" fill="rgb(205,158,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_environ_proxies(requests.utils) (1 samples, 0.24%)</title><rect x="170.1" y="1013" width="2.9" height="15.0" fill="rgb(217,213,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="173.14" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="12.8" y="629" width="2.8" height="15.0" fill="rgb(225,65,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="288.1" y="949" width="2.9" height="15.0" fill="rgb(237,38,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__call__(pluggy.hooks) (8 samples, 1.90%)</title><rect x="69.0" y="837" width="22.5" height="15.0" fill="rgb(251,120,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>encode_hex(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="251.6" y="1141" width="2.8" height="15.0" fill="rgb(227,45,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="254.62" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="29.7" y="325" width="2.8" height="15.0" fill="rgb(214,1,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (2 samples, 0.48%)</title><rect x="271.3" y="917" width="5.6" height="15.0" fill="rgb(251,163,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>connection_from_context(urllib3.poolmanager) (1 samples, 0.24%)</title><rect x="476.4" y="965" width="2.8" height="15.0" fill="rgb(241,108,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="479.38" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_valid_unlock(raiden.transfer.channel) (2 samples, 0.48%)</title><rect x="299.4" y="1125" width="5.6" height="15.0" fill="rgb(251,84,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="302.38" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>putrequest(http.client) (1 samples, 0.24%)</title><rect x="496.0" y="949" width="2.9" height="15.0" fill="rgb(226,4,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="499.05" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="276.9" y="885" width="2.8" height="15.0" fill="rgb(239,147,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_get_conn(urllib3.connectionpool) (1 samples, 0.24%)</title><rect x="167.3" y="933" width="2.8" height="15.0" fill="rgb(218,190,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_ident(gevent.thread) (1 samples, 0.24%)</title><rect x="234.8" y="1125" width="2.8" height="15.0" fill="rgb(209,35,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="237.76" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (5 samples, 1.19%)</title><rect x="375.2" y="1077" width="14.1" height="15.0" fill="rgb(223,203,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="378.24" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recursive_map(web3.utils.formatters) (5 samples, 1.19%)</title><rect x="501.7" y="901" width="14.0" height="15.0" fill="rgb(242,28,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="504.67" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (1 samples, 0.24%)</title><rect x="580.3" y="1109" width="2.8" height="15.0" fill="rgb(240,120,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="583.33" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle(logging) (1 samples, 0.24%)</title><rect x="195.4" y="1157" width="2.8" height="15.0" fill="rgb(208,86,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="198.43" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_post_request(web3.utils.request) (4 samples, 0.95%)</title><rect x="355.6" y="1125" width="11.2" height="15.0" fill="rgb(211,42,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="358.57" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="136.4" y="517" width="2.8" height="15.0" fill="rgb(220,92,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="139.43" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call(web3.contract) (1 samples, 0.24%)</title><rect x="12.8" y="789" width="2.8" height="15.0" fill="rgb(253,21,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>merge_environment_settings(requests.sessions) (1 samples, 0.24%)</title><rect x="1043.9" y="1045" width="2.8" height="15.0" fill="rgb(251,107,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1046.90" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>encode_transaction_data(web3.utils.contracts) (1 samples, 0.24%)</title><rect x="600.0" y="1285" width="2.8" height="15.0" fill="rgb(212,97,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="603.00" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_proxy_to_logger(structlog.stdlib) (2 samples, 0.48%)</title><rect x="324.7" y="1365" width="5.6" height="15.0" fill="rgb(240,155,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="327.67" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parsegen(email.feedparser) (1 samples, 0.24%)</title><rect x="240.4" y="757" width="2.8" height="15.0" fill="rgb(215,226,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="243.38" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (2 samples, 0.48%)</title><rect x="271.3" y="949" width="5.6" height="15.0" fill="rgb(252,224,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>format(structlog.stdlib) (1 samples, 0.24%)</title><rect x="423.0" y="1109" width="2.8" height="15.0" fill="rgb(230,81,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="426.00" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="55.0" y="341" width="2.8" height="15.0" fill="rgb(252,115,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (4 samples, 0.95%)</title><rect x="15.6" y="693" width="11.3" height="15.0" fill="rgb(222,194,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_normalized_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="321.9" y="1333" width="2.8" height="15.0" fill="rgb(252,101,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="324.86" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="111.1" y="581" width="2.9" height="15.0" fill="rgb(234,160,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="114.14" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="616.9" y="1253" width="2.8" height="15.0" fill="rgb(238,159,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="619.86" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>as_dict(psutil) (1 samples, 0.24%)</title><rect x="153.3" y="709" width="2.8" height="15.0" fill="rgb(217,229,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="156.29" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(os) (1 samples, 0.24%)</title><rect x="580.3" y="1029" width="2.8" height="15.0" fill="rgb(248,212,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="583.33" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (1 samples, 0.24%)</title><rect x="597.2" y="1237" width="2.8" height="15.0" fill="rgb(211,197,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="600.19" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_keep_alive(copy) (1 samples, 0.24%)</title><rect x="386.5" y="805" width="2.8" height="15.0" fill="rgb(214,44,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="389.48" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getproxies_environment(urllib.request) (1 samples, 0.24%)</title><rect x="330.3" y="1253" width="2.8" height="15.0" fill="rgb(236,214,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="333.29" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parsegen(email.feedparser) (1 samples, 0.24%)</title><rect x="139.2" y="69" width="2.8" height="15.0" fill="rgb(237,141,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recursive_map(web3.utils.formatters) (1 samples, 0.24%)</title><rect x="302.2" y="933" width="2.8" height="15.0" fill="rgb(239,14,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="305.19" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapped(web3.utils.decorators) (3 samples, 0.71%)</title><rect x="428.6" y="1141" width="8.4" height="15.0" fill="rgb(229,31,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="431.62" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.sessions) (1 samples, 0.24%)</title><rect x="577.5" y="1045" width="2.8" height="15.0" fill="rgb(249,165,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="580.52" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(os) (1 samples, 0.24%)</title><rect x="1043.9" y="949" width="2.8" height="15.0" fill="rgb(249,133,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1046.90" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (1 samples, 0.24%)</title><rect x="12.8" y="469" width="2.8" height="15.0" fill="rgb(211,62,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>begin(http.client) (1 samples, 0.24%)</title><rect x="333.1" y="1205" width="2.8" height="15.0" fill="rgb(207,91,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="336.10" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="209.5" y="389" width="2.8" height="15.0" fill="rgb(213,195,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>prepare_headers(requests.models) (1 samples, 0.24%)</title><rect x="71.8" y="293" width="2.8" height="15.0" fill="rgb(212,90,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="74.81" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>secret_registry(raiden.network.blockchain_service) (2 samples, 0.48%)</title><rect x="71.8" y="709" width="5.6" height="15.0" fill="rgb(253,35,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="74.81" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="583.1" y="1285" width="2.9" height="15.0" fill="rgb(239,64,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="586.14" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>inner(eth_utils.functional) (1 samples, 0.24%)</title><rect x="420.2" y="1269" width="2.8" height="15.0" fill="rgb(208,161,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="423.19" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="80.2" y="581" width="2.8" height="15.0" fill="rgb(210,139,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="136.4" y="453" width="2.8" height="15.0" fill="rgb(242,220,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="139.43" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="276.9" y="853" width="2.8" height="15.0" fill="rgb(245,19,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(ens.main) (2 samples, 0.48%)</title><rect x="586.0" y="1285" width="5.6" height="15.0" fill="rgb(238,177,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="588.95" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="257.2" y="1093" width="2.8" height="15.0" fill="rgb(250,61,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="260.24" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (2 samples, 0.48%)</title><rect x="271.3" y="997" width="5.6" height="15.0" fill="rgb(234,36,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="71.8" y="485" width="2.8" height="15.0" fill="rgb(240,83,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="74.81" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (4 samples, 0.95%)</title><rect x="55.0" y="613" width="11.2" height="15.0" fill="rgb(232,211,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__new__(hexbytes.main) (1 samples, 0.24%)</title><rect x="116.8" y="485" width="2.8" height="15.0" fill="rgb(252,33,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="119.76" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__setitem__(cachetools.cache) (1 samples, 0.24%)</title><rect x="313.4" y="1333" width="2.8" height="15.0" fill="rgb(225,131,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="316.43" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(gevent._socket3) (1 samples, 0.24%)</title><rect x="490.4" y="853" width="2.8" height="15.0" fill="rgb(244,181,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="493.43" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle(logging) (2 samples, 0.48%)</title><rect x="369.6" y="1253" width="5.6" height="15.0" fill="rgb(233,81,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="372.62" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call_contract_function(web3.contract) (2 samples, 0.48%)</title><rect x="591.6" y="1301" width="5.6" height="15.0" fill="rgb(244,221,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="594.57" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getresponse(http.client) (1 samples, 0.24%)</title><rect x="69.0" y="277" width="2.8" height="15.0" fill="rgb(234,94,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>gas_price(raiden.network.rpc.client) (1 samples, 0.24%)</title><rect x="577.5" y="1365" width="2.8" height="15.0" fill="rgb(231,112,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="580.52" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapper(web3.utils.normalizers) (1 samples, 0.24%)</title><rect x="302.2" y="901" width="2.8" height="15.0" fill="rgb(237,134,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="305.19" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_valid_args(toolz.functoolz) (1 samples, 0.24%)</title><rect x="102.7" y="421" width="2.8" height="15.0" fill="rgb(207,172,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="105.71" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseImpl(pkg_resources._vendor.pyparsing) (1 samples, 0.24%)</title><rect x="1122.6" y="917" width="2.8" height="15.0" fill="rgb(240,50,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1125.57" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (3 samples, 0.71%)</title><rect x="358.4" y="1093" width="8.4" height="15.0" fill="rgb(205,102,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="361.38" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_normalized_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="302.2" y="853" width="2.8" height="15.0" fill="rgb(243,79,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="305.19" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (1 samples, 0.24%)</title><rect x="66.2" y="725" width="2.8" height="15.0" fill="rgb(206,56,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="69.19" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="114.0" y="421" width="2.8" height="15.0" fill="rgb(209,209,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="116.95" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ens(web3.main) (1 samples, 0.24%)</title><rect x="105.5" y="565" width="2.8" height="15.0" fill="rgb(241,192,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="108.52" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>on_blockchain_event(raiden.blockchain_events_handler) (6 samples, 1.43%)</title><rect x="411.8" y="1365" width="16.8" height="15.0" fill="rgb(248,89,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (2 samples, 0.48%)</title><rect x="524.1" y="1189" width="5.7" height="15.0" fill="rgb(246,49,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="527.14" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="198.2" y="1061" width="2.8" height="15.0" fill="rgb(207,81,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="201.24" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>contract(web3.eth) (1 samples, 0.24%)</title><rect x="105.5" y="517" width="2.8" height="15.0" fill="rgb(205,107,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="108.52" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(ens.main) (1 samples, 0.24%)</title><rect x="74.6" y="581" width="2.8" height="15.0" fill="rgb(206,155,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="77.62" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_balance_proof_usable_onchain(raiden.transfer.channel) (1 samples, 0.24%)</title><rect x="302.2" y="1109" width="2.8" height="15.0" fill="rgb(231,175,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="305.19" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_state_change(raiden.transfer.node) (2 samples, 0.48%)</title><rect x="299.4" y="1221" width="5.6" height="15.0" fill="rgb(211,113,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="302.38" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_checksum_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="189.8" y="1237" width="2.8" height="15.0" fill="rgb(230,16,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="192.81" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>format(logging) (1 samples, 0.24%)</title><rect x="324.7" y="1205" width="2.8" height="15.0" fill="rgb(228,158,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="327.67" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.adapters) (8 samples, 1.90%)</title><rect x="476.4" y="1029" width="22.5" height="15.0" fill="rgb(235,164,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="479.38" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>serialize(raiden.storage.serialize) (1 samples, 0.24%)</title><rect x="305.0" y="1221" width="2.8" height="15.0" fill="rgb(206,185,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="308.00" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ens(web3.main) (1 samples, 0.24%)</title><rect x="74.6" y="613" width="2.8" height="15.0" fill="rgb(232,37,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="77.62" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_bind(inspect) (1 samples, 0.24%)</title><rect x="619.7" y="1173" width="2.8" height="15.0" fill="rgb(226,150,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="622.67" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_list(copy) (1 samples, 0.24%)</title><rect x="206.7" y="453" width="2.8" height="15.0" fill="rgb(210,110,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="209.67" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (3 samples, 0.71%)</title><rect x="201.0" y="981" width="8.5" height="15.0" fill="rgb(245,81,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="204.05" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="605.6" y="1253" width="2.8" height="15.0" fill="rgb(207,152,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="608.62" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call_contract_function(web3.contract) (1 samples, 0.24%)</title><rect x="569.1" y="1349" width="2.8" height="15.0" fill="rgb(238,116,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="572.10" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__repr__(raiden.messages) (1 samples, 0.24%)</title><rect x="232.0" y="1045" width="2.8" height="15.0" fill="rgb(226,45,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="234.95" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>map_collection(web3.utils.formatters) (2 samples, 0.48%)</title><rect x="431.4" y="965" width="5.6" height="15.0" fill="rgb(246,8,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="434.43" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_log(logging) (1 samples, 0.24%)</title><rect x="307.8" y="1301" width="2.8" height="15.0" fill="rgb(250,96,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="310.81" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get(collections.abc) (1 samples, 0.24%)</title><rect x="476.4" y="933" width="2.8" height="15.0" fill="rgb(223,94,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="479.38" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_checksum_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="437.0" y="1109" width="2.9" height="15.0" fill="rgb(216,97,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="440.05" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>map_collection(web3.utils.formatters) (1 samples, 0.24%)</title><rect x="594.4" y="1109" width="2.8" height="15.0" fill="rgb(207,42,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="597.38" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>new_contract(raiden.network.rpc.client) (1 samples, 0.24%)</title><rect x="74.6" y="661" width="2.8" height="15.0" fill="rgb(234,226,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="77.62" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatter_at_index(web3.utils.formatters) (8 samples, 1.90%)</title><rect x="498.9" y="1125" width="22.4" height="15.0" fill="rgb(223,22,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="501.86" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >a..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapped(pkg_resources.extern.packaging.specifiers) (1 samples, 0.24%)</title><rect x="38.1" y="661" width="2.8" height="15.0" fill="rgb(222,18,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="41.10" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parseNoCache(pkg_resources._vendor.pyparsing) (1 samples, 0.24%)</title><rect x="1150.7" y="741" width="2.8" height="15.0" fill="rgb(217,130,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1153.67" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="52.1" y="405" width="2.9" height="15.0" fill="rgb(224,22,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="55.14" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="586.0" y="1221" width="2.8" height="15.0" fill="rgb(245,144,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="588.95" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.adapters) (1 samples, 0.24%)</title><rect x="12.8" y="437" width="2.8" height="15.0" fill="rgb(211,125,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="574.7" y="1269" width="2.8" height="15.0" fill="rgb(247,135,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="577.71" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="52.1" y="341" width="2.9" height="15.0" fill="rgb(229,0,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="55.14" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>prepare_transaction(web3.utils.contracts) (1 samples, 0.24%)</title><rect x="1032.7" y="1253" width="2.8" height="15.0" fill="rgb(236,26,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1035.67" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_new_channel_preconditions(raiden.network.proxies.token_network) (1 samples, 0.24%)</title><rect x="574.7" y="1397" width="2.8" height="15.0" fill="rgb(228,71,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="577.71" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>hash(raiden.messages) (1 samples, 0.24%)</title><rect x="175.8" y="1301" width="2.8" height="15.0" fill="rgb(211,141,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="178.76" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_contract_send_secretreveal(raiden.raiden_event_handler) (2 samples, 0.48%)</title><rect x="167.3" y="1397" width="5.7" height="15.0" fill="rgb(248,124,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>buildTransaction(web3.contract) (1 samples, 0.24%)</title><rect x="99.9" y="613" width="2.8" height="15.0" fill="rgb(230,30,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="102.90" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_state_change(raiden.raiden_service) (1 samples, 0.24%)</title><rect x="344.3" y="1397" width="2.8" height="15.0" fill="rgb(226,27,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="347.33" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="260.0" y="821" width="2.9" height="15.0" fill="rgb(233,114,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (2 samples, 0.48%)</title><rect x="1027.0" y="1173" width="5.7" height="15.0" fill="rgb(246,159,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1030.05" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parseNoCache(pkg_resources._vendor.pyparsing) (1 samples, 0.24%)</title><rect x="1063.6" y="1205" width="2.8" height="15.0" fill="rgb(251,41,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1066.57" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>dispatch(raiden.transfer.architecture) (3 samples, 0.71%)</title><rect x="243.2" y="1237" width="8.4" height="15.0" fill="rgb(249,185,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getTransactionReceipt(web3.eth) (1 samples, 0.24%)</title><rect x="605.6" y="1349" width="2.8" height="15.0" fill="rgb(211,50,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="608.62" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="15.6" y="437" width="2.8" height="15.0" fill="rgb(219,39,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>packed(raiden.messages) (1 samples, 0.24%)</title><rect x="341.5" y="1061" width="2.8" height="15.0" fill="rgb(251,143,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="344.52" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_log(logging) (1 samples, 0.24%)</title><rect x="192.6" y="1285" width="2.8" height="15.0" fill="rgb(246,6,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="195.62" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>post(requests.sessions) (2 samples, 0.48%)</title><rect x="237.6" y="965" width="5.6" height="15.0" fill="rgb(242,14,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_multicall(pluggy.callers) (55 samples, 13.10%)</title><rect x="10.0" y="1349" width="154.5" height="15.0" fill="rgb(254,123,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_multicall(pluggy.c..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (2 samples, 0.48%)</title><rect x="608.4" y="1141" width="5.6" height="15.0" fill="rgb(222,223,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="611.43" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ens(web3.main) (1 samples, 0.24%)</title><rect x="85.9" y="613" width="2.8" height="15.0" fill="rgb(230,210,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="88.86" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="383.7" y="805" width="2.8" height="15.0" fill="rgb(211,182,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="386.67" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getCode(web3.eth) (1 samples, 0.24%)</title><rect x="77.4" y="661" width="2.8" height="15.0" fill="rgb(252,108,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="80.43" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (4 samples, 0.95%)</title><rect x="15.6" y="629" width="11.3" height="15.0" fill="rgb(235,92,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (3 samples, 0.71%)</title><rect x="243.2" y="1189" width="8.4" height="15.0" fill="rgb(251,135,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="15.6" y="373" width="2.8" height="15.0" fill="rgb(205,10,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__new__(web3.utils.datatypes) (1 samples, 0.24%)</title><rect x="74.6" y="485" width="2.8" height="15.0" fill="rgb(232,198,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="77.62" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (3 samples, 0.71%)</title><rect x="243.2" y="1125" width="8.4" height="15.0" fill="rgb(231,125,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseString(pkg_resources._vendor.pyparsing) (5 samples, 1.19%)</title><rect x="1139.4" y="1013" width="14.1" height="15.0" fill="rgb(219,46,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1142.43" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle(logging) (2 samples, 0.48%)</title><rect x="232.0" y="1237" width="5.6" height="15.0" fill="rgb(213,135,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="234.95" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_valid_args(toolz.functoolz) (1 samples, 0.24%)</title><rect x="588.8" y="1157" width="2.8" height="15.0" fill="rgb(231,94,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="591.76" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>fromWeb3(ens.main) (1 samples, 0.24%)</title><rect x="108.3" y="565" width="2.8" height="15.0" fill="rgb(248,123,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="111.33" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseImpl(pkg_resources._vendor.pyparsing) (4 samples, 0.95%)</title><rect x="1142.2" y="821" width="11.3" height="15.0" fill="rgb(244,12,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1145.24" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="597.2" y="1205" width="2.8" height="15.0" fill="rgb(232,213,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="600.19" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="288.1" y="901" width="2.9" height="15.0" fill="rgb(223,58,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>format(logging) (1 samples, 0.24%)</title><rect x="232.0" y="1173" width="2.8" height="15.0" fill="rgb(224,206,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="234.95" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_partial_args(toolz.functoolz) (1 samples, 0.24%)</title><rect x="619.7" y="1205" width="2.8" height="15.0" fill="rgb(214,38,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="622.67" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="209.5" y="1013" width="2.8" height="15.0" fill="rgb(239,165,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_compute_fixture_value(_pytest.fixtures) (22 samples, 5.24%)</title><rect x="91.5" y="821" width="61.8" height="15.0" fill="rgb(221,160,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_compu..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>merge_environment_settings(requests.sessions) (1 samples, 0.24%)</title><rect x="184.2" y="1269" width="2.8" height="15.0" fill="rgb(225,104,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="187.19" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>map_abi_data(web3.utils.abi) (3 samples, 0.71%)</title><rect x="428.6" y="1173" width="8.4" height="15.0" fill="rgb(230,23,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="431.62" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>default(raiden.storage.serialize) (1 samples, 0.24%)</title><rect x="189.8" y="1269" width="2.8" height="15.0" fill="rgb(222,214,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="192.81" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.contract) (1 samples, 0.24%)</title><rect x="102.7" y="581" width="2.8" height="15.0" fill="rgb(215,201,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="105.71" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>begin(http.client) (2 samples, 0.48%)</title><rect x="237.6" y="853" width="5.6" height="15.0" fill="rgb(216,91,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>map_to_typed_data(web3.utils.abi) (4 samples, 0.95%)</title><rect x="504.5" y="821" width="11.2" height="15.0" fill="rgb(218,188,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="507.48" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="170.1" y="1125" width="2.9" height="15.0" fill="rgb(213,86,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="173.14" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (1 samples, 0.24%)</title><rect x="111.1" y="469" width="2.9" height="15.0" fill="rgb(230,88,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="114.14" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_format_marker(pkg_resources.extern.packaging.markers) (1 samples, 0.24%)</title><rect x="1161.9" y="1237" width="2.8" height="15.0" fill="rgb(220,103,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1164.90" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_sanitize_header(email._policybase) (1 samples, 0.24%)</title><rect x="557.9" y="1205" width="2.8" height="15.0" fill="rgb(252,146,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="560.86" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="80.2" y="565" width="2.8" height="15.0" fill="rgb(212,166,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>fromWeb3(ens.main) (1 samples, 0.24%)</title><rect x="85.9" y="597" width="2.8" height="15.0" fill="rgb(235,25,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="88.86" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="71.8" y="501" width="2.8" height="15.0" fill="rgb(233,181,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="74.81" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="602.8" y="1157" width="2.8" height="15.0" fill="rgb(225,39,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="605.81" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>bind_partial(inspect) (1 samples, 0.24%)</title><rect x="619.7" y="1189" width="2.8" height="15.0" fill="rgb(241,100,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="622.67" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.contract) (1 samples, 0.24%)</title><rect x="142.0" y="453" width="2.9" height="15.0" fill="rgb(214,171,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="145.05" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>debug(logging) (1 samples, 0.24%)</title><rect x="195.4" y="1221" width="2.8" height="15.0" fill="rgb(231,23,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="198.43" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapped(pkg_resources.extern.packaging.specifiers) (1 samples, 0.24%)</title><rect x="38.1" y="693" width="2.8" height="15.0" fill="rgb(232,40,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="41.10" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>validate(eth_abi.grammar) (1 samples, 0.24%)</title><rect x="591.6" y="1205" width="2.8" height="15.0" fill="rgb(228,21,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="594.57" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (29 samples, 6.90%)</title><rect x="439.9" y="1157" width="81.4" height="15.0" fill="rgb(209,194,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="442.86" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >apply_for..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>acquire(gevent.thread) (1 samples, 0.24%)</title><rect x="80.2" y="133" width="2.8" height="15.0" fill="rgb(230,33,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="114.0" y="405" width="2.8" height="15.0" fill="rgb(209,114,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="116.95" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pack_balance_proof(raiden.transfer.balance_proof) (1 samples, 0.24%)</title><rect x="302.2" y="1077" width="2.8" height="15.0" fill="rgb(205,27,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="305.19" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapped(pkg_resources.extern.packaging.specifiers) (1 samples, 0.24%)</title><rect x="1055.1" y="1285" width="2.9" height="15.0" fill="rgb(224,178,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1058.14" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (2 samples, 0.48%)</title><rect x="524.1" y="1237" width="5.7" height="15.0" fill="rgb(214,5,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="527.14" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="602.8" y="1125" width="2.8" height="15.0" fill="rgb(215,176,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="605.81" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>require(pkg_resources) (49 samples, 11.67%)</title><rect x="1049.5" y="1381" width="137.7" height="15.0" fill="rgb(248,195,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1052.52" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >require(pkg_resou..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_channel_new(raiden.blockchain_events_handler) (4 samples, 0.95%)</title><rect x="411.8" y="1349" width="11.2" height="15.0" fill="rgb(220,84,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>payment_channel_open_and_deposit(raiden.tests.utils.network) (20 samples, 4.76%)</title><rect x="566.3" y="1429" width="56.2" height="15.0" fill="rgb(246,26,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >payme..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call(web3.contract) (1 samples, 0.24%)</title><rect x="569.1" y="1365" width="2.8" height="15.0" fill="rgb(237,34,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="572.10" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>new(Crypto.Hash.keccak) (1 samples, 0.24%)</title><rect x="571.9" y="1269" width="2.8" height="15.0" fill="rgb(252,77,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="574.90" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>new(cffi.api) (1 samples, 0.24%)</title><rect x="226.3" y="1029" width="2.8" height="15.0" fill="rgb(210,30,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="229.33" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (3 samples, 0.71%)</title><rect x="521.3" y="1349" width="8.5" height="15.0" fill="rgb(208,173,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="524.33" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deploy_solidity_contract(raiden.network.rpc.client) (4 samples, 0.95%)</title><rect x="128.0" y="613" width="11.2" height="15.0" fill="rgb(251,8,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="131.00" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_is_owned(threading) (1 samples, 0.24%)</title><rect x="80.2" y="149" width="2.8" height="15.0" fill="rgb(208,26,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>kind(inspect) (1 samples, 0.24%)</title><rect x="125.2" y="389" width="2.8" height="15.0" fill="rgb(217,6,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="128.19" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(pkg_resources) (2 samples, 0.48%)</title><rect x="1060.8" y="1285" width="5.6" height="15.0" fill="rgb(239,102,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1063.76" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>serialize(raiden.storage.serialize) (1 samples, 0.24%)</title><rect x="226.3" y="1237" width="2.8" height="15.0" fill="rgb(245,61,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="229.33" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_state_change(raiden.raiden_service) (8 samples, 1.90%)</title><rect x="285.3" y="1285" width="22.5" height="15.0" fill="rgb(223,62,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="288.33" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >h..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>contract(web3.eth) (1 samples, 0.24%)</title><rect x="128.0" y="517" width="2.8" height="15.0" fill="rgb(234,9,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="131.00" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>dispatch(raiden.transfer.architecture) (8 samples, 1.90%)</title><rect x="43.7" y="805" width="22.5" height="15.0" fill="rgb(211,29,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="46.71" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_list(copy) (1 samples, 0.24%)</title><rect x="46.5" y="629" width="2.8" height="15.0" fill="rgb(246,70,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="49.52" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="203.9" y="549" width="2.8" height="15.0" fill="rgb(225,143,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="206.86" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="29.7" y="613" width="2.8" height="15.0" fill="rgb(230,142,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>event_signature_to_log_topic(eth_utils.abi) (1 samples, 0.24%)</title><rect x="571.9" y="1333" width="2.8" height="15.0" fill="rgb(214,142,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="574.90" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="55.0" y="165" width="2.8" height="15.0" fill="rgb(254,49,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(raiden.network.rpc.client) (1 samples, 0.24%)</title><rect x="91.5" y="661" width="2.8" height="15.0" fill="rgb(214,38,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>format(structlog.stdlib) (1 samples, 0.24%)</title><rect x="232.0" y="1157" width="2.8" height="15.0" fill="rgb(237,71,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="234.95" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>finish(_pytest.fixtures) (4 samples, 0.95%)</title><rect x="153.3" y="885" width="11.2" height="15.0" fill="rgb(248,133,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="156.29" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>urlopen(urllib3.connectionpool) (6 samples, 1.43%)</title><rect x="482.0" y="1013" width="16.9" height="15.0" fill="rgb(224,16,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="485.00" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getresponse(http.client) (1 samples, 0.24%)</title><rect x="139.2" y="181" width="2.8" height="15.0" fill="rgb(245,229,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sign(raiden.messages) (1 samples, 0.24%)</title><rect x="181.4" y="1365" width="2.8" height="15.0" fill="rgb(219,182,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="184.38" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_hex(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="282.5" y="1061" width="2.8" height="15.0" fill="rgb(217,18,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="285.52" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>add_listener(matrix_client.room) (1 samples, 0.24%)</title><rect x="187.0" y="1381" width="2.8" height="15.0" fill="rgb(251,188,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="190.00" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (1 samples, 0.24%)</title><rect x="32.5" y="517" width="2.8" height="15.0" fill="rgb(242,138,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="35.48" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>web3(raiden.tests.integration.fixtures.blockchain) (2 samples, 0.48%)</title><rect x="158.9" y="853" width="5.6" height="15.0" fill="rgb(221,104,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="161.90" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatter_at_index(web3.utils.formatters) (3 samples, 0.71%)</title><rect x="428.6" y="1205" width="8.4" height="15.0" fill="rgb(238,96,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="431.62" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_proxy_to_logger(structlog.stdlib) (2 samples, 0.48%)</title><rect x="369.6" y="1317" width="5.6" height="15.0" fill="rgb(205,31,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="372.62" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_state_change(raiden.raiden_service) (3 samples, 0.71%)</title><rect x="268.5" y="1285" width="8.4" height="15.0" fill="rgb(214,199,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="271.48" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(collections.abc) (1 samples, 0.24%)</title><rect x="543.8" y="1253" width="2.8" height="15.0" fill="rgb(249,190,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="546.81" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (2 samples, 0.48%)</title><rect x="1027.0" y="1157" width="5.7" height="15.0" fill="rgb(254,64,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1030.05" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.adapters) (1 samples, 0.24%)</title><rect x="597.2" y="1013" width="2.8" height="15.0" fill="rgb(219,187,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="600.19" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="122.4" y="485" width="2.8" height="15.0" fill="rgb(234,98,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="125.38" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(pkg_resources._vendor.pyparsing) (1 samples, 0.24%)</title><rect x="1088.9" y="1189" width="2.8" height="15.0" fill="rgb(251,203,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1091.86" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recurse(web3.utils.formatters) (2 samples, 0.48%)</title><rect x="431.4" y="1093" width="5.6" height="15.0" fill="rgb(208,48,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="434.43" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_hex(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="504.5" y="725" width="2.8" height="15.0" fill="rgb(238,186,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="507.48" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (4 samples, 0.95%)</title><rect x="288.1" y="1141" width="11.3" height="15.0" fill="rgb(219,92,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>setup(_pytest.python) (30 samples, 7.14%)</title><rect x="69.0" y="949" width="84.3" height="15.0" fill="rgb(246,141,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >setup(_py..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="274.1" y="517" width="2.8" height="15.0" fill="rgb(242,73,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="277.10" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (33 samples, 7.86%)</title><rect x="428.6" y="1253" width="92.7" height="15.0" fill="rgb(236,151,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="431.62" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >middleware(..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="46.5" y="565" width="2.8" height="15.0" fill="rgb(226,76,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="49.52" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__call__(pluggy.hooks) (6 samples, 1.43%)</title><rect x="128.0" y="741" width="16.9" height="15.0" fill="rgb(235,212,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="131.00" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="94.3" y="437" width="2.8" height="15.0" fill="rgb(236,180,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>default(raiden.storage.serialize) (1 samples, 0.24%)</title><rect x="226.3" y="1173" width="2.8" height="15.0" fill="rgb(239,39,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="229.33" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>state_transition(raiden.transfer.node) (1 samples, 0.24%)</title><rect x="223.5" y="1237" width="2.8" height="15.0" fill="rgb(233,68,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="226.52" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatter_if(web3.utils.formatters) (2 samples, 0.48%)</title><rect x="350.0" y="1173" width="5.6" height="15.0" fill="rgb(207,212,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="352.95" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>decode(os) (1 samples, 0.24%)</title><rect x="532.6" y="1205" width="2.8" height="15.0" fill="rgb(205,180,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="535.57" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(raiden.network.proxies.token) (3 samples, 0.71%)</title><rect x="583.1" y="1381" width="8.5" height="15.0" fill="rgb(239,222,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="586.14" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_dep_map(pkg_resources) (45 samples, 10.71%)</title><rect x="1060.8" y="1333" width="126.4" height="15.0" fill="rgb(228,43,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1063.76" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_dep_map(pkg_re..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>raiden_network(raiden.tests.integration.fixtures.raiden_network) (8 samples, 1.90%)</title><rect x="69.0" y="741" width="22.5" height="15.0" fill="rgb(223,175,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >r..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_teardown_yield_fixture(_pytest.fixtures) (4 samples, 0.95%)</title><rect x="153.3" y="869" width="11.2" height="15.0" fill="rgb(206,122,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="156.29" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (7 samples, 1.67%)</title><rect x="392.1" y="1061" width="19.7" height="15.0" fill="rgb(236,50,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="395.10" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call(web3.eth) (1 samples, 0.24%)</title><rect x="574.7" y="1317" width="2.8" height="15.0" fill="rgb(211,68,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="577.71" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="99.9" y="453" width="2.8" height="15.0" fill="rgb(252,163,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="102.90" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__getitem__(os) (1 samples, 0.24%)</title><rect x="170.1" y="933" width="2.9" height="15.0" fill="rgb(250,149,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="173.14" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>emit(logging.handlers) (1 samples, 0.24%)</title><rect x="324.7" y="1253" width="2.8" height="15.0" fill="rgb(225,70,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="327.67" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.contract) (1 samples, 0.24%)</title><rect x="102.7" y="469" width="2.8" height="15.0" fill="rgb(205,167,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="105.71" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>write_events(raiden.storage.sqlite) (1 samples, 0.24%)</title><rect x="305.0" y="1253" width="2.8" height="15.0" fill="rgb(229,92,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="308.00" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="52.1" y="485" width="2.9" height="15.0" fill="rgb(225,218,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="55.14" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_state_change(raiden.raiden_service) (1 samples, 0.24%)</title><rect x="425.8" y="1317" width="2.8" height="15.0" fill="rgb(225,30,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="428.81" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_call_parse(email.feedparser) (1 samples, 0.24%)</title><rect x="240.4" y="773" width="2.8" height="15.0" fill="rgb(209,54,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="243.38" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><genexpr>(eth_utils.address) (1 samples, 0.24%)</title><rect x="268.5" y="1141" width="2.8" height="15.0" fill="rgb(240,160,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="271.48" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>create_apps(raiden.tests.utils.network) (7 samples, 1.67%)</title><rect x="69.0" y="725" width="19.7" height="15.0" fill="rgb(227,18,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_bind(inspect) (1 samples, 0.24%)</title><rect x="1038.3" y="1157" width="2.8" height="15.0" fill="rgb(222,177,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1041.29" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>map_collection(web3.utils.formatters) (1 samples, 0.24%)</title><rect x="173.0" y="1189" width="2.8" height="15.0" fill="rgb(230,147,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="175.95" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>format(logging) (1 samples, 0.24%)</title><rect x="338.7" y="1237" width="2.8" height="15.0" fill="rgb(233,12,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="341.71" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="147.7" y="405" width="2.8" height="15.0" fill="rgb(236,100,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="150.67" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="260.0" y="853" width="2.9" height="15.0" fill="rgb(222,48,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="128.0" y="485" width="2.8" height="15.0" fill="rgb(245,36,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="131.00" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="99.9" y="437" width="2.8" height="15.0" fill="rgb(246,51,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="102.90" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (2 samples, 0.48%)</title><rect x="378.0" y="773" width="5.7" height="15.0" fill="rgb(242,15,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="381.05" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>urlopen(urllib3.connectionpool) (1 samples, 0.24%)</title><rect x="139.2" y="213" width="2.8" height="15.0" fill="rgb(239,9,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>set_display_name(matrix_client.api) (1 samples, 0.24%)</title><rect x="1187.2" y="1365" width="2.8" height="15.0" fill="rgb(234,2,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.19" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>log_and_dispatch(raiden.storage.wal) (3 samples, 0.71%)</title><rect x="276.9" y="1269" width="8.4" height="15.0" fill="rgb(229,185,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>urlopen(urllib3.connectionpool) (1 samples, 0.24%)</title><rect x="333.1" y="1253" width="2.8" height="15.0" fill="rgb(226,147,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="336.10" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="144.9" y="373" width="2.8" height="15.0" fill="rgb(253,45,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(pkg_resources.extern.packaging.version) (1 samples, 0.24%)</title><rect x="40.9" y="709" width="2.8" height="15.0" fill="rgb(217,75,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="43.90" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deploy_contract_web3(raiden.utils.smart_contracts) (2 samples, 0.48%)</title><rect x="147.7" y="581" width="5.6" height="15.0" fill="rgb(227,25,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="150.67" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (3 samples, 0.71%)</title><rect x="201.0" y="901" width="8.5" height="15.0" fill="rgb(251,171,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="204.05" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_assert_one_val(eth_utils.decorators) (1 samples, 0.24%)</title><rect x="355.6" y="997" width="2.8" height="15.0" fill="rgb(253,202,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="358.57" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>join_room(matrix_client.client) (1 samples, 0.24%)</title><rect x="66.2" y="789" width="2.8" height="15.0" fill="rgb(243,225,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="69.19" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (4 samples, 0.95%)</title><rect x="288.1" y="1173" width="11.3" height="15.0" fill="rgb(227,186,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>fromWeb3(ens.main) (1 samples, 0.24%)</title><rect x="616.9" y="1317" width="2.8" height="15.0" fill="rgb(235,134,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="619.86" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (2 samples, 0.48%)</title><rect x="271.3" y="1237" width="5.6" height="15.0" fill="rgb(210,182,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (1 samples, 0.24%)</title><rect x="136.4" y="357" width="2.8" height="15.0" fill="rgb(224,224,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="139.43" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (1 samples, 0.24%)</title><rect x="605.6" y="1125" width="2.8" height="15.0" fill="rgb(217,49,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="608.62" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>bind(inspect) (1 samples, 0.24%)</title><rect x="1038.3" y="1173" width="2.8" height="15.0" fill="rgb(231,68,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1041.29" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="55.0" y="405" width="2.8" height="15.0" fill="rgb(226,19,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (1 samples, 0.24%)</title><rect x="136.4" y="501" width="2.8" height="15.0" fill="rgb(253,199,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="139.43" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters_to_dict(web3.utils.formatters) (1 samples, 0.24%)</title><rect x="437.0" y="1125" width="2.9" height="15.0" fill="rgb(216,166,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="440.05" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>prepare_request(requests.sessions) (1 samples, 0.24%)</title><rect x="414.6" y="901" width="2.8" height="15.0" fill="rgb(236,11,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="417.57" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>urlopen(urllib3.connectionpool) (2 samples, 0.48%)</title><rect x="237.6" y="901" width="5.6" height="15.0" fill="rgb(211,216,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_compare_equal(pkg_resources.extern.packaging.specifiers) (1 samples, 0.24%)</title><rect x="38.1" y="645" width="2.8" height="15.0" fill="rgb(217,71,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="41.10" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.adapters) (1 samples, 0.24%)</title><rect x="111.1" y="309" width="2.9" height="15.0" fill="rgb(242,63,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="114.14" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (3 samples, 0.71%)</title><rect x="18.4" y="517" width="8.5" height="15.0" fill="rgb(227,48,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="21.43" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="383.7" y="789" width="2.8" height="15.0" fill="rgb(247,201,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="386.67" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__getitem__(os) (1 samples, 0.24%)</title><rect x="538.2" y="1269" width="2.8" height="15.0" fill="rgb(236,76,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="541.19" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>debug(structlog.stdlib) (1 samples, 0.24%)</title><rect x="307.8" y="1365" width="2.8" height="15.0" fill="rgb(205,10,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="310.81" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>hash(raiden.messages) (1 samples, 0.24%)</title><rect x="341.5" y="1077" width="2.8" height="15.0" fill="rgb(219,131,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="344.52" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(urllib3.connectionpool) (1 samples, 0.24%)</title><rect x="69.0" y="293" width="2.8" height="15.0" fill="rgb(218,51,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="29.7" y="469" width="2.8" height="15.0" fill="rgb(217,193,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__getitem__(cachetools.lru) (1 samples, 0.24%)</title><rect x="310.6" y="1349" width="2.8" height="15.0" fill="rgb(206,177,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="313.62" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="29.7" y="373" width="2.8" height="15.0" fill="rgb(216,136,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call_contract_function(web3.contract) (1 samples, 0.24%)</title><rect x="566.3" y="1381" width="2.8" height="15.0" fill="rgb(214,58,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_proxy_to_logger(structlog.stdlib) (2 samples, 0.48%)</title><rect x="232.0" y="1333" width="5.6" height="15.0" fill="rgb(212,203,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="234.95" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getCode(web3.eth) (1 samples, 0.24%)</title><rect x="150.5" y="549" width="2.8" height="15.0" fill="rgb(206,75,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="153.48" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>contract(web3.eth) (1 samples, 0.24%)</title><rect x="616.9" y="1285" width="2.8" height="15.0" fill="rgb(227,134,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="619.86" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_hex(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="583.1" y="1173" width="2.9" height="15.0" fill="rgb(221,46,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="586.14" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (1 samples, 0.24%)</title><rect x="167.3" y="1045" width="2.8" height="15.0" fill="rgb(231,21,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>strip_abi_type(web3.utils.abi) (1 samples, 0.24%)</title><rect x="26.9" y="661" width="2.8" height="15.0" fill="rgb(228,145,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="29.86" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_proxy_to_logger(structlog.stdlib) (1 samples, 0.24%)</title><rect x="307.8" y="1349" width="2.8" height="15.0" fill="rgb(244,29,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="310.81" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>contract(web3.eth) (1 samples, 0.24%)</title><rect x="586.0" y="1269" width="2.8" height="15.0" fill="rgb(213,182,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="588.95" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (7 samples, 1.67%)</title><rect x="350.0" y="1349" width="19.6" height="15.0" fill="rgb(231,214,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="352.95" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>remove_0x_prefix(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="425.8" y="1285" width="2.8" height="15.0" fill="rgb(207,122,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="428.81" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseImpl(pkg_resources._vendor.pyparsing) (14 samples, 3.33%)</title><rect x="1097.3" y="1029" width="39.3" height="15.0" fill="rgb(207,10,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1100.29" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >par..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="29.7" y="517" width="2.8" height="15.0" fill="rgb(206,6,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatter_to_array(web3.utils.formatters) (1 samples, 0.24%)</title><rect x="437.0" y="1157" width="2.9" height="15.0" fill="rgb(221,198,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="440.05" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getproxies_environment(urllib.request) (1 samples, 0.24%)</title><rect x="411.8" y="949" width="2.8" height="15.0" fill="rgb(214,218,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pytest_fixture_setup(_pytest.fixtures) (13 samples, 3.10%)</title><rect x="91.5" y="725" width="36.5" height="15.0" fill="rgb(207,13,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pyt..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="1024.2" y="1109" width="2.8" height="15.0" fill="rgb(213,92,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.24" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__next__(email.feedparser) (1 samples, 0.24%)</title><rect x="1077.6" y="1205" width="2.8" height="15.0" fill="rgb(217,162,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1080.62" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_dict(raiden.transfer.events) (1 samples, 0.24%)</title><rect x="268.5" y="1173" width="2.8" height="15.0" fill="rgb(248,68,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="271.48" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="420.2" y="1189" width="2.8" height="15.0" fill="rgb(228,11,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="423.19" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="274.1" y="709" width="2.8" height="15.0" fill="rgb(239,168,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="277.10" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>log_run(raiden.storage.sqlite) (3 samples, 0.71%)</title><rect x="35.3" y="821" width="8.4" height="15.0" fill="rgb(224,126,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="38.29" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_hex(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="524.1" y="1109" width="2.9" height="15.0" fill="rgb(241,31,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="527.14" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.adapters) (1 samples, 0.24%)</title><rect x="167.3" y="965" width="2.8" height="15.0" fill="rgb(212,97,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>data_tree_map(web3.utils.abi) (1 samples, 0.24%)</title><rect x="594.4" y="1221" width="2.8" height="15.0" fill="rgb(250,38,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="597.38" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>post(requests.sessions) (3 samples, 0.71%)</title><rect x="358.4" y="1109" width="8.4" height="15.0" fill="rgb(207,157,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="361.38" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(urllib3.connectionpool) (3 samples, 0.71%)</title><rect x="557.9" y="1285" width="8.4" height="15.0" fill="rgb(250,69,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="560.86" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="102.7" y="485" width="2.8" height="15.0" fill="rgb(219,137,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="105.71" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__getitem__(os) (1 samples, 0.24%)</title><rect x="361.2" y="981" width="2.8" height="15.0" fill="rgb(209,193,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="364.19" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (2 samples, 0.48%)</title><rect x="271.3" y="757" width="5.6" height="15.0" fill="rgb(232,136,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pex(raiden.utils) (1 samples, 0.24%)</title><rect x="307.8" y="1045" width="2.8" height="15.0" fill="rgb(235,110,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="310.81" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (2 samples, 0.48%)</title><rect x="246.0" y="981" width="5.6" height="15.0" fill="rgb(230,134,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="249.00" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(raiden.app) (1 samples, 0.24%)</title><rect x="69.0" y="709" width="2.8" height="15.0" fill="rgb(239,68,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="55.0" y="197" width="2.8" height="15.0" fill="rgb(231,167,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle(logging) (2 samples, 0.48%)</title><rect x="232.0" y="1269" width="5.6" height="15.0" fill="rgb(253,156,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="234.95" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getproxies_environment(urllib.request) (1 samples, 0.24%)</title><rect x="99.9" y="245" width="2.8" height="15.0" fill="rgb(223,189,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="102.90" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="139.2" y="485" width="2.8" height="15.0" fill="rgb(226,179,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>dumps(json) (1 samples, 0.24%)</title><rect x="307.8" y="1125" width="2.8" height="15.0" fill="rgb(240,214,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="310.81" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call(web3.contract) (1 samples, 0.24%)</title><rect x="94.3" y="613" width="2.8" height="15.0" fill="rgb(206,120,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (2 samples, 0.48%)</title><rect x="524.1" y="1205" width="5.7" height="15.0" fill="rgb(211,169,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="527.14" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_get_session(web3.utils.request) (2 samples, 0.48%)</title><rect x="439.9" y="1077" width="5.6" height="15.0" fill="rgb(240,84,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="442.86" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_hexbytes(web3.middleware.pythonic) (1 samples, 0.24%)</title><rect x="352.8" y="1157" width="2.8" height="15.0" fill="rgb(211,194,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="355.76" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__call__(pluggy.hooks) (55 samples, 13.10%)</title><rect x="10.0" y="1285" width="154.5" height="15.0" fill="rgb(216,218,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__call__(pluggy.hoo..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__getitem__(os) (1 samples, 0.24%)</title><rect x="150.5" y="197" width="2.8" height="15.0" fill="rgb(238,142,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="153.48" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(ens.main) (1 samples, 0.24%)</title><rect x="147.7" y="485" width="2.8" height="15.0" fill="rgb(252,77,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="150.67" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="209.5" y="533" width="2.8" height="15.0" fill="rgb(221,76,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_post_request(web3.utils.request) (2 samples, 0.48%)</title><rect x="608.4" y="1077" width="5.6" height="15.0" fill="rgb(227,90,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="611.43" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recursive_map(web3.utils.formatters) (6 samples, 1.43%)</title><rect x="498.9" y="1045" width="16.8" height="15.0" fill="rgb(221,201,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="501.86" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="69.0" y="501" width="2.8" height="15.0" fill="rgb(244,146,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>on_message(raiden.raiden_service) (25 samples, 5.95%)</title><rect x="237.6" y="1349" width="70.2" height="15.0" fill="rgb(211,144,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >on_mess..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="288.1" y="533" width="2.9" height="15.0" fill="rgb(241,220,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(collections.abc) (1 samples, 0.24%)</title><rect x="184.2" y="1189" width="2.8" height="15.0" fill="rgb(254,151,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="187.19" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="147.7" y="437" width="2.8" height="15.0" fill="rgb(223,7,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="150.67" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="12.8" y="565" width="2.8" height="15.0" fill="rgb(238,162,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="288.1" y="821" width="2.9" height="15.0" fill="rgb(215,205,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (4 samples, 0.95%)</title><rect x="257.2" y="1221" width="11.3" height="15.0" fill="rgb(241,92,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="260.24" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (2 samples, 0.48%)</title><rect x="271.3" y="933" width="5.6" height="15.0" fill="rgb(213,30,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.sessions) (1 samples, 0.24%)</title><rect x="139.2" y="245" width="2.8" height="15.0" fill="rgb(208,105,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="136.4" y="421" width="2.8" height="15.0" fill="rgb(209,9,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="139.43" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="602.8" y="1269" width="2.8" height="15.0" fill="rgb(212,72,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="605.81" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parseNoCache(pkg_resources._vendor.pyparsing) (4 samples, 0.95%)</title><rect x="1142.2" y="869" width="11.3" height="15.0" fill="rgb(229,184,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1145.24" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="55.0" y="437" width="2.8" height="15.0" fill="rgb(240,207,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_environ_proxies(requests.utils) (3 samples, 0.71%)</title><rect x="538.2" y="1317" width="8.4" height="15.0" fill="rgb(237,223,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="541.19" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="209.5" y="1029" width="2.8" height="15.0" fill="rgb(207,28,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_multicall(pluggy.callers) (55 samples, 13.10%)</title><rect x="10.0" y="997" width="154.5" height="15.0" fill="rgb(227,91,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_multicall(pluggy.c..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>urlparse(urllib.parse) (1 samples, 0.24%)</title><rect x="364.0" y="1029" width="2.8" height="15.0" fill="rgb(241,16,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="367.00" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><genexpr>(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="282.5" y="1045" width="2.8" height="15.0" fill="rgb(210,169,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="285.52" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="577.5" y="1173" width="2.8" height="15.0" fill="rgb(219,24,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="580.52" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parse_requirements(pkg_resources) (29 samples, 6.90%)</title><rect x="1083.2" y="1301" width="81.5" height="15.0" fill="rgb(226,114,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1086.24" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >parse_req..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_evaluate_markers(pkg_resources.extern.packaging.markers) (1 samples, 0.24%)</title><rect x="1167.5" y="1269" width="2.8" height="15.0" fill="rgb(212,54,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1170.52" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="574.7" y="1205" width="2.8" height="15.0" fill="rgb(216,44,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="577.71" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>dispatch(raiden.transfer.architecture) (2 samples, 0.48%)</title><rect x="271.3" y="1253" width="5.6" height="15.0" fill="rgb(227,24,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(logging) (1 samples, 0.24%)</title><rect x="327.5" y="1285" width="2.8" height="15.0" fill="rgb(253,118,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="330.48" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="150.5" y="341" width="2.8" height="15.0" fill="rgb(237,178,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="153.48" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__new__(web3.utils.datatypes) (1 samples, 0.24%)</title><rect x="105.5" y="437" width="2.8" height="15.0" fill="rgb(250,74,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="108.52" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>decode(os) (1 samples, 0.24%)</title><rect x="330.3" y="1205" width="2.8" height="15.0" fill="rgb(241,135,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="333.29" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_connection_dropped(urllib3.util.connection) (1 samples, 0.24%)</title><rect x="555.0" y="1269" width="2.9" height="15.0" fill="rgb(236,17,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="558.05" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>resolve_redirects(requests.sessions) (1 samples, 0.24%)</title><rect x="364.0" y="1045" width="2.8" height="15.0" fill="rgb(206,182,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="367.00" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="243.2" y="901" width="2.8" height="15.0" fill="rgb(210,158,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>abi_address_to_hex(web3.utils.normalizers) (1 samples, 0.24%)</title><rect x="302.2" y="885" width="2.8" height="15.0" fill="rgb(229,78,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="305.19" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(raiden.raiden_service) (1 samples, 0.24%)</title><rect x="285.3" y="1269" width="2.8" height="15.0" fill="rgb(249,173,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="288.33" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (1 samples, 0.24%)</title><rect x="80.2" y="341" width="2.8" height="15.0" fill="rgb(209,78,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>contract(web3.eth) (2 samples, 0.48%)</title><rect x="122.4" y="613" width="5.6" height="15.0" fill="rgb(230,202,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="125.38" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="144.9" y="421" width="2.8" height="15.0" fill="rgb(217,185,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getTransaction(web3.eth) (1 samples, 0.24%)</title><rect x="602.8" y="1333" width="2.8" height="15.0" fill="rgb(221,49,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="605.81" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>bind_partial(inspect) (1 samples, 0.24%)</title><rect x="105.5" y="405" width="2.8" height="15.0" fill="rgb(250,159,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="108.52" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>proxy_bypass_environment(urllib.request) (1 samples, 0.24%)</title><rect x="543.8" y="1285" width="2.8" height="15.0" fill="rgb(210,84,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="546.81" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (2 samples, 0.48%)</title><rect x="271.3" y="965" width="5.6" height="15.0" fill="rgb(250,199,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(collections.abc) (1 samples, 0.24%)</title><rect x="574.7" y="949" width="2.8" height="15.0" fill="rgb(226,162,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="577.71" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="577.5" y="1301" width="2.8" height="15.0" fill="rgb(235,189,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="580.52" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_bind(inspect) (1 samples, 0.24%)</title><rect x="588.8" y="1125" width="2.8" height="15.0" fill="rgb(218,114,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="591.76" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(raiden.raiden_service) (1 samples, 0.24%)</title><rect x="10.0" y="837" width="2.8" height="15.0" fill="rgb(212,132,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapped(web3.utils.decorators) (1 samples, 0.24%)</title><rect x="173.0" y="1285" width="2.8" height="15.0" fill="rgb(237,194,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="175.95" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="108.3" y="517" width="2.8" height="15.0" fill="rgb(225,184,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="111.33" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(urllib3.connectionpool) (1 samples, 0.24%)</title><rect x="144.9" y="213" width="2.8" height="15.0" fill="rgb(226,25,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="206.7" y="501" width="2.8" height="15.0" fill="rgb(242,92,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="209.67" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_partial_args(toolz.functoolz) (1 samples, 0.24%)</title><rect x="133.6" y="389" width="2.8" height="15.0" fill="rgb(240,46,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="136.62" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_hookexec(pluggy.manager) (13 samples, 3.10%)</title><rect x="91.5" y="773" width="36.5" height="15.0" fill="rgb(233,177,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ho..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (3 samples, 0.71%)</title><rect x="291.0" y="1077" width="8.4" height="15.0" fill="rgb(233,0,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="293.95" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="260.0" y="725" width="2.9" height="15.0" fill="rgb(252,7,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deploy_solidity_contract(raiden.network.rpc.client) (2 samples, 0.48%)</title><rect x="147.7" y="565" width="5.6" height="15.0" fill="rgb(223,0,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="150.67" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><genexpr>(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="583.1" y="1157" width="2.9" height="15.0" fill="rgb(252,223,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="586.14" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="80.2" y="437" width="2.8" height="15.0" fill="rgb(230,61,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>should_bypass_proxies(requests.utils) (1 samples, 0.24%)</title><rect x="574.7" y="997" width="2.8" height="15.0" fill="rgb(239,13,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="577.71" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (2 samples, 0.48%)</title><rect x="271.3" y="1061" width="5.6" height="15.0" fill="rgb(222,90,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call_contract_function(web3.contract) (1 samples, 0.24%)</title><rect x="12.8" y="773" width="2.8" height="15.0" fill="rgb(223,178,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.main) (1 samples, 0.24%)</title><rect x="588.8" y="1253" width="2.8" height="15.0" fill="rgb(225,165,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="591.76" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (1 samples, 0.24%)</title><rect x="574.7" y="1045" width="2.8" height="15.0" fill="rgb(254,213,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="577.71" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>new_contract(raiden.network.rpc.client) (2 samples, 0.48%)</title><rect x="102.7" y="613" width="5.6" height="15.0" fill="rgb(220,143,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="105.71" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>begin(http.client) (1 samples, 0.24%)</title><rect x="12.8" y="373" width="2.8" height="15.0" fill="rgb(238,112,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_post_request(web3.utils.request) (1 samples, 0.24%)</title><rect x="144.9" y="309" width="2.8" height="15.0" fill="rgb(234,193,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_message_secretrequest(raiden.message_handler) (3 samples, 0.71%)</title><rect x="276.9" y="1317" width="8.4" height="15.0" fill="rgb(218,66,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>join_global_room(raiden.network.transport.matrix.utils) (1 samples, 0.24%)</title><rect x="66.2" y="805" width="2.8" height="15.0" fill="rgb(250,150,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="69.19" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="32.5" y="725" width="2.8" height="15.0" fill="rgb(237,53,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="35.48" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>data_tree_map(web3.utils.abi) (6 samples, 1.43%)</title><rect x="498.9" y="1077" width="16.8" height="15.0" fill="rgb(247,126,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="501.86" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="133.6" y="453" width="2.8" height="15.0" fill="rgb(235,69,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="136.62" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_state_change(raiden.raiden_service) (5 samples, 1.19%)</title><rect x="254.4" y="1285" width="14.1" height="15.0" fill="rgb(240,123,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="257.43" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_bind(inspect) (1 samples, 0.24%)</title><rect x="83.0" y="437" width="2.9" height="15.0" fill="rgb(231,145,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="86.05" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_get_active_fixturedef(_pytest.fixtures) (30 samples, 7.14%)</title><rect x="69.0" y="885" width="84.3" height="15.0" fill="rgb(240,119,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_get_acti..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call(web3.contract) (1 samples, 0.24%)</title><rect x="1032.7" y="1285" width="2.8" height="15.0" fill="rgb(210,109,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1035.67" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_message_processed(raiden.message_handler) (5 samples, 1.19%)</title><rect x="254.4" y="1317" width="14.1" height="15.0" fill="rgb(228,143,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="257.43" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_get_room_ids_for_address(raiden.network.transport.matrix.transport) (1 samples, 0.24%)</title><rect x="321.9" y="1365" width="2.8" height="15.0" fill="rgb(237,199,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="324.86" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_hex_address(eth_utils.address) (2 samples, 0.48%)</title><rect x="431.4" y="853" width="5.6" height="15.0" fill="rgb(250,39,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="434.43" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_connection_dropped(urllib3.util.connection) (1 samples, 0.24%)</title><rect x="167.3" y="917" width="2.8" height="15.0" fill="rgb(245,44,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>notify(threading) (1 samples, 0.24%)</title><rect x="80.2" y="165" width="2.8" height="15.0" fill="rgb(242,203,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="94.3" y="469" width="2.8" height="15.0" fill="rgb(252,33,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_content_maintype(email.message) (1 samples, 0.24%)</title><rect x="237.6" y="773" width="2.8" height="15.0" fill="rgb(232,0,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_environ_proxies(requests.utils) (1 samples, 0.24%)</title><rect x="420.2" y="949" width="2.8" height="15.0" fill="rgb(210,24,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="423.19" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (1 samples, 0.24%)</title><rect x="69.0" y="357" width="2.8" height="15.0" fill="rgb(217,149,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__new__(web3.utils.abi) (1 samples, 0.24%)</title><rect x="501.7" y="805" width="2.8" height="15.0" fill="rgb(214,7,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="504.67" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (2 samples, 0.48%)</title><rect x="271.3" y="789" width="5.6" height="15.0" fill="rgb(247,0,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="288.1" y="629" width="2.9" height="15.0" fill="rgb(207,216,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="260.0" y="885" width="2.9" height="15.0" fill="rgb(208,103,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(ens.main) (1 samples, 0.24%)</title><rect x="619.7" y="1301" width="2.8" height="15.0" fill="rgb(244,23,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="622.67" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>contract(web3.eth) (1 samples, 0.24%)</title><rect x="119.6" y="613" width="2.8" height="15.0" fill="rgb(208,2,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="122.57" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (2 samples, 0.48%)</title><rect x="1027.0" y="1189" width="5.7" height="15.0" fill="rgb(212,185,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1030.05" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="142.0" y="549" width="2.9" height="15.0" fill="rgb(250,94,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="145.05" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>decode(os) (1 samples, 0.24%)</title><rect x="420.2" y="853" width="2.8" height="15.0" fill="rgb(220,223,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="423.19" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="12.8" y="677" width="2.8" height="15.0" fill="rgb(213,70,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="288.1" y="693" width="2.9" height="15.0" fill="rgb(217,203,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>log_and_dispatch(raiden.storage.wal) (7 samples, 1.67%)</title><rect x="288.1" y="1269" width="19.7" height="15.0" fill="rgb(252,21,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>shouldRollover(logging.handlers) (1 samples, 0.24%)</title><rect x="234.8" y="1205" width="2.8" height="15.0" fill="rgb(236,19,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="237.76" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>iterencode(json.encoder) (1 samples, 0.24%)</title><rect x="305.0" y="1173" width="2.8" height="15.0" fill="rgb(239,204,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="308.00" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getproxies_environment(urllib.request) (1 samples, 0.24%)</title><rect x="574.7" y="965" width="2.8" height="15.0" fill="rgb(242,191,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="577.71" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_post_request(web3.utils.request) (1 samples, 0.24%)</title><rect x="80.2" y="373" width="2.8" height="15.0" fill="rgb(216,214,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_compute_fixture_value(_pytest.fixtures) (30 samples, 7.14%)</title><rect x="69.0" y="869" width="84.3" height="15.0" fill="rgb(217,223,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_compute_..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="321.9" y="1317" width="2.8" height="15.0" fill="rgb(219,200,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="324.86" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (4 samples, 0.95%)</title><rect x="198.2" y="1093" width="11.3" height="15.0" fill="rgb(253,193,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="201.24" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="69.0" y="517" width="2.8" height="15.0" fill="rgb(245,78,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>header_source_parse(email._policybase) (1 samples, 0.24%)</title><rect x="139.2" y="37" width="2.8" height="15.0" fill="rgb(209,132,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>execute(_pytest.fixtures) (3 samples, 0.71%)</title><rect x="144.9" y="709" width="8.4" height="15.0" fill="rgb(205,161,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_post_request(web3.utils.request) (1 samples, 0.24%)</title><rect x="136.4" y="341" width="2.8" height="15.0" fill="rgb(253,220,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="139.43" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getresponse(http.client) (1 samples, 0.24%)</title><rect x="91.5" y="277" width="2.8" height="15.0" fill="rgb(211,108,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>release(logging) (1 samples, 0.24%)</title><rect x="195.4" y="1077" width="2.8" height="15.0" fill="rgb(242,28,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="198.43" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (2 samples, 0.48%)</title><rect x="330.3" y="1301" width="5.6" height="15.0" fill="rgb(216,135,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="333.29" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="274.1" y="693" width="2.8" height="15.0" fill="rgb(221,14,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="277.10" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>merge_environment_settings(requests.sessions) (2 samples, 0.48%)</title><rect x="358.4" y="1077" width="5.6" height="15.0" fill="rgb(211,162,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="361.38" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="32.5" y="645" width="2.8" height="15.0" fill="rgb(207,91,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="35.48" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (4 samples, 0.95%)</title><rect x="55.0" y="597" width="11.2" height="15.0" fill="rgb(250,159,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call(web3.eth) (2 samples, 0.48%)</title><rect x="237.6" y="1221" width="5.6" height="15.0" fill="rgb(231,215,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (1 samples, 0.24%)</title><rect x="91.5" y="549" width="2.8" height="15.0" fill="rgb(241,2,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="80.2" y="421" width="2.8" height="15.0" fill="rgb(216,104,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>debug(logging) (1 samples, 0.24%)</title><rect x="192.6" y="1301" width="2.8" height="15.0" fill="rgb(215,115,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="195.62" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (19 samples, 4.52%)</title><rect x="445.5" y="1061" width="53.4" height="15.0" fill="rgb(212,205,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="448.48" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >reque..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (4 samples, 0.95%)</title><rect x="257.2" y="1189" width="11.3" height="15.0" fill="rgb(208,180,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="260.24" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>compile(sre_compile) (1 samples, 0.24%)</title><rect x="1041.1" y="1221" width="2.8" height="15.0" fill="rgb(221,110,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1044.10" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="71.8" y="437" width="2.8" height="15.0" fill="rgb(226,188,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="74.81" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call(web3.contract) (1 samples, 0.24%)</title><rect x="167.3" y="1317" width="2.8" height="15.0" fill="rgb(227,10,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="15.6" y="165" width="2.8" height="15.0" fill="rgb(227,184,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (1 samples, 0.24%)</title><rect x="139.2" y="309" width="2.8" height="15.0" fill="rgb(230,117,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>dirname(posixpath) (1 samples, 0.24%)</title><rect x="1049.5" y="1333" width="2.8" height="15.0" fill="rgb(221,214,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1052.52" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_0x_prefixed(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="307.8" y="997" width="2.8" height="15.0" fill="rgb(223,122,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="310.81" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>debug(structlog.stdlib) (2 samples, 0.48%)</title><rect x="232.0" y="1349" width="5.6" height="15.0" fill="rgb(235,75,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="234.95" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (4 samples, 0.95%)</title><rect x="355.6" y="1157" width="11.2" height="15.0" fill="rgb(219,131,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="358.57" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>callHandlers(logging) (1 samples, 0.24%)</title><rect x="192.6" y="1253" width="2.8" height="15.0" fill="rgb(235,119,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="195.62" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>merge_environment_settings(requests.sessions) (1 samples, 0.24%)</title><rect x="411.8" y="1013" width="2.8" height="15.0" fill="rgb(210,59,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_proxy_to_logger(structlog._base) (1 samples, 0.24%)</title><rect x="192.6" y="1317" width="2.8" height="15.0" fill="rgb(210,124,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="195.62" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recursive(web3.datastructures) (1 samples, 0.24%)</title><rect x="366.8" y="1237" width="2.8" height="15.0" fill="rgb(246,195,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="369.81" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_new_entries(raiden.utils.filters) (33 samples, 7.86%)</title><rect x="428.6" y="1349" width="92.7" height="15.0" fill="rgb(226,208,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="431.62" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >get_new_ent..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>poll_wait_for_socket(urllib3.util.wait) (1 samples, 0.24%)</title><rect x="167.3" y="885" width="2.8" height="15.0" fill="rgb(217,185,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_environ_proxies(requests.utils) (1 samples, 0.24%)</title><rect x="32.5" y="437" width="2.8" height="15.0" fill="rgb(208,183,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="35.48" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="1024.2" y="1093" width="2.8" height="15.0" fill="rgb(239,88,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.24" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parsegen(email.feedparser) (1 samples, 0.24%)</title><rect x="66.2" y="533" width="2.8" height="15.0" fill="rgb(244,176,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="69.19" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (1 samples, 0.24%)</title><rect x="614.0" y="1141" width="2.9" height="15.0" fill="rgb(243,16,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="617.05" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_environ_proxies(requests.utils) (2 samples, 0.48%)</title><rect x="529.8" y="1301" width="5.6" height="15.0" fill="rgb(224,24,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="532.76" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pytest_runtestloop(_pytest.main) (55 samples, 13.10%)</title><rect x="10.0" y="1221" width="154.5" height="15.0" fill="rgb(253,185,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pytest_runtestloop(..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseImpl(pkg_resources._vendor.pyparsing) (4 samples, 0.95%)</title><rect x="1142.2" y="853" width="11.3" height="15.0" fill="rgb(225,11,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1145.24" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (3 samples, 0.71%)</title><rect x="201.0" y="629" width="8.5" height="15.0" fill="rgb(212,1,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="204.05" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>post(requests.sessions) (1 samples, 0.24%)</title><rect x="144.9" y="293" width="2.8" height="15.0" fill="rgb(232,141,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_and_track_state_change(raiden.raiden_service) (1 samples, 0.24%)</title><rect x="1046.7" y="1413" width="2.8" height="15.0" fill="rgb(249,117,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1049.71" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getproxies_environment(urllib.request) (1 samples, 0.24%)</title><rect x="361.2" y="1013" width="2.8" height="15.0" fill="rgb(236,13,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="364.19" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sign(raiden.raiden_service) (1 samples, 0.24%)</title><rect x="26.9" y="805" width="2.8" height="15.0" fill="rgb(215,182,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="29.86" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_fillfixtures(_pytest.fixtures) (30 samples, 7.14%)</title><rect x="69.0" y="917" width="84.3" height="15.0" fill="rgb(223,127,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_fillfixt..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>dispatch(raiden.transfer.architecture) (4 samples, 0.95%)</title><rect x="15.6" y="773" width="11.3" height="15.0" fill="rgb(223,126,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>format(logging) (1 samples, 0.24%)</title><rect x="97.1" y="501" width="2.8" height="15.0" fill="rgb(243,26,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="100.10" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__new__(hexbytes.main) (1 samples, 0.24%)</title><rect x="524.1" y="1141" width="2.9" height="15.0" fill="rgb(246,52,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="527.14" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>data_tree_map(web3.utils.abi) (3 samples, 0.71%)</title><rect x="428.6" y="1157" width="8.4" height="15.0" fill="rgb(208,80,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="431.62" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (8 samples, 1.90%)</title><rect x="43.7" y="773" width="22.5" height="15.0" fill="rgb(209,148,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="46.71" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>post(requests.sessions) (1 samples, 0.24%)</title><rect x="99.9" y="309" width="2.8" height="15.0" fill="rgb(225,56,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="102.90" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="344.3" y="1157" width="2.8" height="15.0" fill="rgb(212,133,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="347.33" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="15.6" y="133" width="2.8" height="15.0" fill="rgb(254,43,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (3 samples, 0.71%)</title><rect x="521.3" y="1317" width="8.5" height="15.0" fill="rgb(224,200,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="524.33" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (3 samples, 0.71%)</title><rect x="201.0" y="709" width="8.5" height="15.0" fill="rgb(209,103,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="204.05" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_hex_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="321.9" y="1301" width="2.8" height="15.0" fill="rgb(220,178,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="324.86" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="383.7" y="725" width="2.8" height="15.0" fill="rgb(205,137,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="386.67" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>generate(requests.models) (1 samples, 0.24%)</title><rect x="94.3" y="245" width="2.8" height="15.0" fill="rgb(215,221,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="99.9" y="517" width="2.8" height="15.0" fill="rgb(217,143,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="102.90" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="597.2" y="1285" width="2.8" height="15.0" fill="rgb(235,76,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="600.19" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>generate_cache_key(web3.utils.caching) (1 samples, 0.24%)</title><rect x="439.9" y="1029" width="2.8" height="15.0" fill="rgb(232,205,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="442.86" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="32.5" y="677" width="2.8" height="15.0" fill="rgb(210,81,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="35.48" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="276.9" y="917" width="2.8" height="15.0" fill="rgb(226,171,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (30 samples, 7.14%)</title><rect x="437.0" y="1205" width="84.3" height="15.0" fill="rgb(253,106,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="440.05" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >apply_for..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="288.1" y="933" width="2.9" height="15.0" fill="rgb(220,181,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="116.8" y="597" width="2.8" height="15.0" fill="rgb(250,72,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="119.76" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_backend(eth_keys.datatypes) (1 samples, 0.24%)</title><rect x="178.6" y="1301" width="2.8" height="15.0" fill="rgb(246,97,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="181.57" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="69.0" y="421" width="2.8" height="15.0" fill="rgb(253,180,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>connection_from_url(urllib3.poolmanager) (1 samples, 0.24%)</title><rect x="597.2" y="981" width="2.8" height="15.0" fill="rgb(205,186,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="600.19" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_send(raiden.network.transport.matrix.client) (1 samples, 0.24%)</title><rect x="66.2" y="757" width="2.8" height="15.0" fill="rgb(232,24,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="69.19" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="46.5" y="549" width="2.8" height="15.0" fill="rgb(250,201,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="49.52" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_post_request(web3.utils.request) (21 samples, 5.00%)</title><rect x="439.9" y="1093" width="59.0" height="15.0" fill="rgb(216,185,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="442.86" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >make_p..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>dispatch(raiden.transfer.architecture) (1 samples, 0.24%)</title><rect x="1024.2" y="1317" width="2.8" height="15.0" fill="rgb(210,126,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.24" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseImpl(pkg_resources._vendor.pyparsing) (3 samples, 0.71%)</title><rect x="1145.0" y="789" width="8.5" height="15.0" fill="rgb(210,74,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1148.05" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><genexpr>(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="302.2" y="789" width="2.8" height="15.0" fill="rgb(236,95,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="305.19" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>map_collection(web3.utils.formatters) (6 samples, 1.43%)</title><rect x="498.9" y="1029" width="16.8" height="15.0" fill="rgb(219,12,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="501.86" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="614.0" y="1301" width="2.9" height="15.0" fill="rgb(230,97,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="617.05" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (3 samples, 0.71%)</title><rect x="201.0" y="997" width="8.5" height="15.0" fill="rgb(237,53,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="204.05" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="167.3" y="1237" width="2.8" height="15.0" fill="rgb(205,188,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="71.8" y="421" width="2.8" height="15.0" fill="rgb(222,44,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="74.81" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><genexpr>(eth_utils.hexadecimal) (2 samples, 0.48%)</title><rect x="1027.0" y="1093" width="5.7" height="15.0" fill="rgb(218,90,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1030.05" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_cleanup(gevent.threading) (2 samples, 0.48%)</title><rect x="1004.6" y="1413" width="5.6" height="15.0" fill="rgb(244,1,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1007.57" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call(web3.contract) (2 samples, 0.48%)</title><rect x="237.6" y="1269" width="5.6" height="15.0" fill="rgb(205,31,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="55.0" y="453" width="2.8" height="15.0" fill="rgb(215,224,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_checksum_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="268.5" y="1157" width="2.8" height="15.0" fill="rgb(241,165,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="271.48" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (1 samples, 0.24%)</title><rect x="614.0" y="1285" width="2.9" height="15.0" fill="rgb(242,14,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="617.05" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="52.1" y="453" width="2.9" height="15.0" fill="rgb(210,63,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="55.14" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>hexstr_if_str(eth_utils.conversions) (1 samples, 0.24%)</title><rect x="524.1" y="1125" width="2.9" height="15.0" fill="rgb(234,63,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="527.14" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><lambda>(pkg_resources.extern.packaging.markers) (1 samples, 0.24%)</title><rect x="1128.2" y="917" width="2.8" height="15.0" fill="rgb(215,118,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1131.19" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>post(requests.sessions) (1 samples, 0.24%)</title><rect x="150.5" y="293" width="2.8" height="15.0" fill="rgb(242,69,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="153.48" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="380.9" y="709" width="2.8" height="15.0" fill="rgb(225,63,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="383.86" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseImpl(pkg_resources._vendor.pyparsing) (2 samples, 0.48%)</title><rect x="1153.5" y="1109" width="5.6" height="15.0" fill="rgb(243,113,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1156.48" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (1 samples, 0.24%)</title><rect x="130.8" y="517" width="2.8" height="15.0" fill="rgb(245,192,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="133.81" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__exit__(contextlib) (1 samples, 0.24%)</title><rect x="153.3" y="837" width="2.8" height="15.0" fill="rgb(242,109,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="156.29" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (2 samples, 0.48%)</title><rect x="1027.0" y="1221" width="5.7" height="15.0" fill="rgb(240,0,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1030.05" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="614.0" y="1333" width="2.9" height="15.0" fill="rgb(251,212,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="617.05" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="29.7" y="437" width="2.8" height="15.0" fill="rgb(240,79,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>inner(eth_utils.functional) (2 samples, 0.48%)</title><rect x="350.0" y="1205" width="5.6" height="15.0" fill="rgb(236,172,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="352.95" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (1 samples, 0.24%)</title><rect x="144.9" y="277" width="2.8" height="15.0" fill="rgb(253,112,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (3 samples, 0.71%)</title><rect x="201.0" y="837" width="8.5" height="15.0" fill="rgb(237,55,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="204.05" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_format_marker(pkg_resources.extern.packaging.markers) (1 samples, 0.24%)</title><rect x="1161.9" y="1253" width="2.8" height="15.0" fill="rgb(247,171,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1164.90" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>endpoint_discovery_services(raiden.tests.integration.fixtures.blockchain) (2 samples, 0.48%)</title><rect x="122.4" y="693" width="5.6" height="15.0" fill="rgb(210,22,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="125.38" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="566.3" y="1221" width="2.8" height="15.0" fill="rgb(206,161,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_maybe_run_callbacks(raiden.tasks) (2 samples, 0.48%)</title><rect x="29.7" y="805" width="5.6" height="15.0" fill="rgb(236,217,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="574.7" y="1189" width="2.8" height="15.0" fill="rgb(221,41,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="577.71" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>contract(web3.eth) (1 samples, 0.24%)</title><rect x="142.0" y="485" width="2.9" height="15.0" fill="rgb(205,5,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="145.05" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>geth_assert_rpc_interfaces(raiden.network.rpc.client) (1 samples, 0.24%)</title><rect x="91.5" y="645" width="2.8" height="15.0" fill="rgb(216,57,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>emit(logging) (1 samples, 0.24%)</title><rect x="338.7" y="1253" width="2.8" height="15.0" fill="rgb(238,127,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="341.71" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseImpl(pkg_resources._vendor.pyparsing) (7 samples, 1.67%)</title><rect x="1102.9" y="901" width="19.7" height="15.0" fill="rgb(223,28,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1105.90" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>merge_environment_settings(requests.sessions) (1 samples, 0.24%)</title><rect x="330.3" y="1285" width="2.8" height="15.0" fill="rgb(205,192,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="333.29" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (1 samples, 0.24%)</title><rect x="32.5" y="661" width="2.8" height="15.0" fill="rgb(251,186,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="35.48" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getfixturevalue(_pytest.fixtures) (30 samples, 7.14%)</title><rect x="69.0" y="901" width="84.3" height="15.0" fill="rgb(224,37,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >getfixtur..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(raiden.tests.utils.tests) (1 samples, 0.24%)</title><rect x="156.1" y="805" width="2.8" height="15.0" fill="rgb(227,196,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="159.10" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="12.8" y="613" width="2.8" height="15.0" fill="rgb(210,10,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.adapters) (2 samples, 0.48%)</title><rect x="237.6" y="917" width="5.6" height="15.0" fill="rgb(252,72,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>contract(web3.eth) (1 samples, 0.24%)</title><rect x="74.6" y="645" width="2.8" height="15.0" fill="rgb(219,165,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="77.62" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="583.1" y="1253" width="2.9" height="15.0" fill="rgb(224,53,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="586.14" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_system_spec(raiden.utils) (49 samples, 11.67%)</title><rect x="1049.5" y="1397" width="137.7" height="15.0" fill="rgb(206,28,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1052.52" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >get_system_spec(r..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (1 samples, 0.24%)</title><rect x="116.8" y="549" width="2.8" height="15.0" fill="rgb(247,166,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="119.76" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>emit(logging.handlers) (2 samples, 0.48%)</title><rect x="232.0" y="1221" width="5.6" height="15.0" fill="rgb(243,207,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="234.95" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="274.1" y="597" width="2.8" height="15.0" fill="rgb(222,156,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="277.10" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="15.6" y="149" width="2.8" height="15.0" fill="rgb(244,101,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="380.9" y="725" width="2.8" height="15.0" fill="rgb(218,157,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="383.86" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="566.3" y="1317" width="2.8" height="15.0" fill="rgb(236,101,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_adapter(requests.sessions) (1 samples, 0.24%)</title><rect x="552.2" y="1317" width="2.8" height="15.0" fill="rgb(250,11,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="555.24" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.contract) (1 samples, 0.24%)</title><rect x="83.0" y="517" width="2.9" height="15.0" fill="rgb(218,59,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="86.05" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>join_room(matrix_client.client) (1 samples, 0.24%)</title><rect x="184.2" y="1349" width="2.8" height="15.0" fill="rgb(210,102,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="187.19" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>inner(eth_utils.functional) (1 samples, 0.24%)</title><rect x="167.3" y="1285" width="2.8" height="15.0" fill="rgb(251,109,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>debug(logging) (2 samples, 0.48%)</title><rect x="232.0" y="1301" width="5.6" height="15.0" fill="rgb(209,51,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="234.95" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="91.5" y="533" width="2.8" height="15.0" fill="rgb(226,148,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>iterencode(json.encoder) (1 samples, 0.24%)</title><rect x="251.6" y="1205" width="2.8" height="15.0" fill="rgb(221,88,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="254.62" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="383.7" y="757" width="2.8" height="15.0" fill="rgb(219,1,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="386.67" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__repr__(raiden.messages) (1 samples, 0.24%)</title><rect x="307.8" y="1061" width="2.8" height="15.0" fill="rgb(249,43,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="310.81" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="243.2" y="1013" width="2.8" height="15.0" fill="rgb(240,179,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ens(web3.main) (1 samples, 0.24%)</title><rect x="147.7" y="517" width="2.8" height="15.0" fill="rgb(228,49,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="150.67" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>fill_transaction_defaults(web3.utils.transactions) (1 samples, 0.24%)</title><rect x="139.2" y="565" width="2.8" height="15.0" fill="rgb(248,132,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="420.2" y="1061" width="2.8" height="15.0" fill="rgb(242,111,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="423.19" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (7 samples, 1.67%)</title><rect x="350.0" y="1301" width="19.6" height="15.0" fill="rgb(244,39,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="352.95" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__contains__(collections.abc) (1 samples, 0.24%)</title><rect x="414.6" y="853" width="2.8" height="15.0" fill="rgb(229,169,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="417.57" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_log(logging) (2 samples, 0.48%)</title><rect x="338.7" y="1333" width="5.6" height="15.0" fill="rgb(205,157,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="341.71" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="276.9" y="1013" width="2.8" height="15.0" fill="rgb(239,45,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="243.2" y="837" width="2.8" height="15.0" fill="rgb(235,21,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (2 samples, 0.48%)</title><rect x="271.3" y="901" width="5.6" height="15.0" fill="rgb(233,63,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parse_headers(http.client) (2 samples, 0.48%)</title><rect x="237.6" y="837" width="5.6" height="15.0" fill="rgb(227,219,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recurse(web3.utils.formatters) (1 samples, 0.24%)</title><rect x="302.2" y="965" width="2.8" height="15.0" fill="rgb(244,15,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="305.19" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (2 samples, 0.48%)</title><rect x="237.6" y="1029" width="5.6" height="15.0" fill="rgb(249,190,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>estimate_gas(raiden.network.rpc.smartcontract_proxy) (1 samples, 0.24%)</title><rect x="600.0" y="1349" width="2.8" height="15.0" fill="rgb(251,71,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="603.00" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (4 samples, 0.95%)</title><rect x="288.1" y="1221" width="11.3" height="15.0" fill="rgb(247,91,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (10 samples, 2.38%)</title><rect x="538.2" y="1349" width="28.1" height="15.0" fill="rgb(208,214,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="541.19" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >r..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapped(web3.utils.decorators) (6 samples, 1.43%)</title><rect x="498.9" y="997" width="16.8" height="15.0" fill="rgb(254,129,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="501.86" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__new__(web3.utils.datatypes) (1 samples, 0.24%)</title><rect x="125.2" y="453" width="2.8" height="15.0" fill="rgb(234,136,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="128.19" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(collections.abc) (1 samples, 0.24%)</title><rect x="580.3" y="1045" width="2.8" height="15.0" fill="rgb(231,16,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="583.33" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(ens.main) (1 samples, 0.24%)</title><rect x="102.7" y="533" width="2.8" height="15.0" fill="rgb(237,126,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="105.71" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (9 samples, 2.14%)</title><rect x="198.2" y="1189" width="25.3" height="15.0" fill="rgb(213,37,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="201.24" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (2 samples, 0.48%)</title><rect x="271.3" y="1205" width="5.6" height="15.0" fill="rgb(247,124,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (1 samples, 0.24%)</title><rect x="99.9" y="421" width="2.8" height="15.0" fill="rgb(222,145,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="102.90" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>hex_encode(encodings.hex_codec) (1 samples, 0.24%)</title><rect x="251.6" y="1125" width="2.8" height="15.0" fill="rgb(241,87,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="254.62" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="411.8" y="1093" width="2.8" height="15.0" fill="rgb(231,25,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getLogs(web3.eth) (1 samples, 0.24%)</title><rect x="411.8" y="1301" width="2.8" height="15.0" fill="rgb(206,54,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="209.5" y="805" width="2.8" height="15.0" fill="rgb(242,172,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseImpl(pkg_resources._vendor.pyparsing) (11 samples, 2.62%)</title><rect x="1100.1" y="965" width="30.9" height="15.0" fill="rgb(249,11,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1103.10" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pa..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="380.9" y="661" width="2.8" height="15.0" fill="rgb(238,21,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="383.86" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="102.7" y="453" width="2.8" height="15.0" fill="rgb(214,116,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="105.71" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>proxy_bypass_environment(urllib.request) (1 samples, 0.24%)</title><rect x="411.8" y="965" width="2.8" height="15.0" fill="rgb(218,14,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="55.0" y="117" width="2.8" height="15.0" fill="rgb(207,15,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getLevelName(logging) (1 samples, 0.24%)</title><rect x="97.1" y="437" width="2.8" height="15.0" fill="rgb(222,169,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="100.10" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_json_fallback_handler(structlog.processors) (1 samples, 0.24%)</title><rect x="307.8" y="1077" width="2.8" height="15.0" fill="rgb(218,216,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="310.81" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapper(cachetools) (2 samples, 0.48%)</title><rect x="310.6" y="1365" width="5.6" height="15.0" fill="rgb(222,37,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="313.62" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>contract(web3.eth) (2 samples, 0.48%)</title><rect x="122.4" y="533" width="5.6" height="15.0" fill="rgb(242,63,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="125.38" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (2 samples, 0.48%)</title><rect x="1035.5" y="1253" width="5.6" height="15.0" fill="rgb(244,173,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1038.48" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="52.1" y="437" width="2.9" height="15.0" fill="rgb(232,80,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="55.14" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="605.6" y="1237" width="2.8" height="15.0" fill="rgb(221,28,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="608.62" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (4 samples, 0.95%)</title><rect x="55.0" y="629" width="11.2" height="15.0" fill="rgb(240,129,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (2 samples, 0.48%)</title><rect x="378.0" y="789" width="5.7" height="15.0" fill="rgb(225,136,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="381.05" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pytest_pyfunc_call(_pytest.python) (21 samples, 5.00%)</title><rect x="10.0" y="885" width="59.0" height="15.0" fill="rgb(220,115,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pytest..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.sessions) (6 samples, 1.43%)</title><rect x="549.4" y="1333" width="16.9" height="15.0" fill="rgb(227,160,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="552.43" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parseNoCache(pkg_resources._vendor.pyparsing) (14 samples, 3.33%)</title><rect x="1097.3" y="1013" width="39.3" height="15.0" fill="rgb(220,172,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1100.29" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_pa..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="288.1" y="1045" width="2.9" height="15.0" fill="rgb(246,128,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pytest_runtest_setup(_pytest.runner) (30 samples, 7.14%)</title><rect x="69.0" y="981" width="84.3" height="15.0" fill="rgb(233,161,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pytest_ru..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="111.1" y="565" width="2.9" height="15.0" fill="rgb(251,91,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="114.14" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__call__(pluggy.hooks) (55 samples, 13.10%)</title><rect x="10.0" y="1397" width="154.5" height="15.0" fill="rgb(231,30,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__call__(pluggy.hoo..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>default(raiden.storage.serialize) (1 samples, 0.24%)</title><rect x="305.0" y="1157" width="2.8" height="15.0" fill="rgb(244,22,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="308.00" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>settle_timeout(raiden.network.proxies.payment_channel) (1 samples, 0.24%)</title><rect x="417.4" y="1317" width="2.8" height="15.0" fill="rgb(239,114,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="420.38" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (3 samples, 0.71%)</title><rect x="201.0" y="885" width="8.5" height="15.0" fill="rgb(232,133,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="204.05" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_checksum_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="350.0" y="1157" width="2.8" height="15.0" fill="rgb(220,4,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="352.95" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (4 samples, 0.95%)</title><rect x="15.6" y="661" width="11.3" height="15.0" fill="rgb(252,15,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_has_one_val(eth_utils.decorators) (1 samples, 0.24%)</title><rect x="437.0" y="1029" width="2.9" height="15.0" fill="rgb(232,85,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="440.05" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="209.5" y="933" width="2.8" height="15.0" fill="rgb(246,35,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="257.2" y="1109" width="2.8" height="15.0" fill="rgb(215,123,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="260.24" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (2 samples, 0.48%)</title><rect x="276.9" y="1141" width="5.6" height="15.0" fill="rgb(223,71,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_hex(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="302.2" y="805" width="2.8" height="15.0" fill="rgb(218,75,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="305.19" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>log_and_dispatch(raiden.storage.wal) (2 samples, 0.48%)</title><rect x="271.3" y="1269" width="5.6" height="15.0" fill="rgb(207,44,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ens(web3.main) (1 samples, 0.24%)</title><rect x="133.6" y="533" width="2.8" height="15.0" fill="rgb(225,134,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="136.62" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_hex(eth_utils.hexadecimal) (2 samples, 0.48%)</title><rect x="507.3" y="693" width="5.6" height="15.0" fill="rgb(230,141,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="510.29" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>test_send_queued_messages(raiden.tests.integration.test_send_queued_messages) (21 samples, 5.00%)</title><rect x="10.0" y="869" width="59.0" height="15.0" fill="rgb(213,198,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >test_s..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(collections.abc) (1 samples, 0.24%)</title><rect x="358.4" y="1029" width="2.8" height="15.0" fill="rgb(243,20,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="361.38" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="1024.2" y="1157" width="2.8" height="15.0" fill="rgb(230,56,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.24" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="420.2" y="1077" width="2.8" height="15.0" fill="rgb(215,201,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="423.19" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (33 samples, 7.86%)</title><rect x="428.6" y="1317" width="92.7" height="15.0" fill="rgb(240,119,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="431.62" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >request_blo..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="1043.9" y="1157" width="2.8" height="15.0" fill="rgb(242,83,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1046.90" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (2 samples, 0.48%)</title><rect x="608.4" y="1189" width="5.6" height="15.0" fill="rgb(206,48,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="611.43" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>urlopen(urllib3.connectionpool) (1 samples, 0.24%)</title><rect x="144.9" y="229" width="2.8" height="15.0" fill="rgb(250,181,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getBlock(web3.eth) (3 samples, 0.71%)</title><rect x="521.3" y="1381" width="8.5" height="15.0" fill="rgb(230,57,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="524.33" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recurse(web3.utils.formatters) (1 samples, 0.24%)</title><rect x="594.4" y="1157" width="2.8" height="15.0" fill="rgb(250,173,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="597.38" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatter_if(web3.utils.formatters) (1 samples, 0.24%)</title><rect x="521.3" y="1189" width="2.8" height="15.0" fill="rgb(250,227,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="524.33" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pytest_fixture_setup(_pytest.fixtures) (8 samples, 1.90%)</title><rect x="69.0" y="773" width="22.5" height="15.0" fill="rgb(231,57,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(raiden.raiden_service) (1 samples, 0.24%)</title><rect x="268.5" y="1269" width="2.8" height="15.0" fill="rgb(226,206,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="271.48" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_send(matrix_client.api) (10 samples, 2.38%)</title><rect x="538.2" y="1365" width="28.1" height="15.0" fill="rgb(244,187,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="541.19" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.contract) (1 samples, 0.24%)</title><rect x="619.7" y="1269" width="2.8" height="15.0" fill="rgb(223,203,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="622.67" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.contract) (1 samples, 0.24%)</title><rect x="119.6" y="597" width="2.8" height="15.0" fill="rgb(240,106,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="122.57" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>bind_partial(inspect) (1 samples, 0.24%)</title><rect x="122.4" y="437" width="2.8" height="15.0" fill="rgb(216,108,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="125.38" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_sys_version(platform) (1 samples, 0.24%)</title><rect x="1176.0" y="1237" width="2.8" height="15.0" fill="rgb(250,149,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1178.95" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseImpl(pkg_resources._vendor.pyparsing) (7 samples, 1.67%)</title><rect x="1102.9" y="869" width="19.7" height="15.0" fill="rgb(244,118,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1105.90" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(logging) (1 samples, 0.24%)</title><rect x="324.7" y="1157" width="2.8" height="15.0" fill="rgb(232,71,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="327.67" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>inner(eth_utils.functional) (1 samples, 0.24%)</title><rect x="524.1" y="1173" width="2.9" height="15.0" fill="rgb(229,105,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="527.14" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(requests.sessions) (1 samples, 0.24%)</title><rect x="602.8" y="1029" width="2.8" height="15.0" fill="rgb(251,94,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="605.81" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (1 samples, 0.24%)</title><rect x="150.5" y="469" width="2.8" height="15.0" fill="rgb(249,56,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="153.48" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>begin(http.client) (2 samples, 0.48%)</title><rect x="482.0" y="965" width="5.6" height="15.0" fill="rgb(232,178,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="485.00" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_handle_event(raiden.raiden_service) (7 samples, 1.67%)</title><rect x="167.3" y="1429" width="19.7" height="15.0" fill="rgb(252,61,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><lambda>(pkg_resources.extern.packaging.requirements) (5 samples, 1.19%)</title><rect x="1139.4" y="1045" width="14.1" height="15.0" fill="rgb(231,112,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1142.43" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>stream(urllib3.response) (1 samples, 0.24%)</title><rect x="94.3" y="229" width="2.8" height="15.0" fill="rgb(207,170,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="577.5" y="1141" width="2.8" height="15.0" fill="rgb(236,65,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="580.52" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>hexstr_if_str(eth_utils.conversions) (1 samples, 0.24%)</title><rect x="77.4" y="501" width="2.8" height="15.0" fill="rgb(244,110,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="80.43" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_bind(inspect) (1 samples, 0.24%)</title><rect x="102.7" y="389" width="2.8" height="15.0" fill="rgb(238,93,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="105.71" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parseNoCache(pkg_resources._vendor.pyparsing) (23 samples, 5.48%)</title><rect x="1094.5" y="1141" width="64.6" height="15.0" fill="rgb(247,129,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1097.48" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_parseN..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="69.0" y="469" width="2.8" height="15.0" fill="rgb(218,142,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send_message(matrix_client.api) (3 samples, 0.71%)</title><rect x="529.8" y="1397" width="8.4" height="15.0" fill="rgb(213,130,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="532.76" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="288.1" y="885" width="2.9" height="15.0" fill="rgb(217,117,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>urlopen(urllib3.connectionpool) (1 samples, 0.24%)</title><rect x="69.0" y="309" width="2.8" height="15.0" fill="rgb(249,33,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle(logging) (2 samples, 0.48%)</title><rect x="338.7" y="1285" width="5.6" height="15.0" fill="rgb(226,186,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="341.71" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (2 samples, 0.48%)</title><rect x="378.0" y="853" width="5.7" height="15.0" fill="rgb(229,223,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="381.05" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="209.5" y="501" width="2.8" height="15.0" fill="rgb(226,135,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="414.6" y="1125" width="2.8" height="15.0" fill="rgb(209,182,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="417.57" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.sessions) (1 samples, 0.24%)</title><rect x="364.0" y="1077" width="2.8" height="15.0" fill="rgb(211,4,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="367.00" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parsed_pkg_info(pkg_resources) (6 samples, 1.43%)</title><rect x="1066.4" y="1301" width="16.8" height="15.0" fill="rgb(233,183,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1069.38" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>dumps(json) (1 samples, 0.24%)</title><rect x="189.8" y="1317" width="2.8" height="15.0" fill="rgb(241,37,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="192.81" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>post(requests.sessions) (1 samples, 0.24%)</title><rect x="597.2" y="1061" width="2.8" height="15.0" fill="rgb(209,60,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="600.19" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (3 samples, 0.71%)</title><rect x="243.2" y="1109" width="8.4" height="15.0" fill="rgb(254,58,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parse(email.parser) (1 samples, 0.24%)</title><rect x="66.2" y="581" width="2.8" height="15.0" fill="rgb(225,88,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="69.19" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_receive_message(raiden.network.transport.matrix.transport) (27 samples, 6.43%)</title><rect x="232.0" y="1365" width="75.8" height="15.0" fill="rgb(235,128,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="234.95" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_receive..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>filter(logging) (1 samples, 0.24%)</title><rect x="192.6" y="1221" width="2.8" height="15.0" fill="rgb(234,214,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="195.62" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>decode(os) (1 samples, 0.24%)</title><rect x="456.7" y="965" width="2.8" height="15.0" fill="rgb(247,149,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="459.71" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>merge_environment_settings(requests.sessions) (1 samples, 0.24%)</title><rect x="99.9" y="277" width="2.8" height="15.0" fill="rgb(220,225,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="102.90" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (3 samples, 0.71%)</title><rect x="260.0" y="1045" width="8.5" height="15.0" fill="rgb(252,195,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getresponse(http.client) (2 samples, 0.48%)</title><rect x="237.6" y="869" width="5.6" height="15.0" fill="rgb(227,99,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="417.4" y="1205" width="2.8" height="15.0" fill="rgb(210,140,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="420.38" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recursive_map(web3.utils.formatters) (5 samples, 1.19%)</title><rect x="501.7" y="837" width="14.0" height="15.0" fill="rgb(217,55,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="504.67" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="105.5" y="581" width="2.8" height="15.0" fill="rgb(243,214,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="108.52" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.adapters) (1 samples, 0.24%)</title><rect x="144.9" y="245" width="2.8" height="15.0" fill="rgb(228,37,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>proxy_bypass_environment(urllib.request) (1 samples, 0.24%)</title><rect x="184.2" y="1221" width="2.8" height="15.0" fill="rgb(241,218,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="187.19" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_post_request(web3.utils.request) (1 samples, 0.24%)</title><rect x="577.5" y="1093" width="2.8" height="15.0" fill="rgb(230,133,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="580.52" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapper(raiden.log_config) (1 samples, 0.24%)</title><rect x="307.8" y="1157" width="2.8" height="15.0" fill="rgb(238,161,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="310.81" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (2 samples, 0.48%)</title><rect x="524.1" y="1221" width="5.7" height="15.0" fill="rgb(231,175,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="527.14" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="1043.9" y="1301" width="2.8" height="15.0" fill="rgb(215,24,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1046.90" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>decode(os) (1 samples, 0.24%)</title><rect x="411.8" y="901" width="2.8" height="15.0" fill="rgb(251,89,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_check_and_send(raiden.network.transport.matrix.transport) (9 samples, 2.14%)</title><rect x="319.0" y="1413" width="25.3" height="15.0" fill="rgb(238,177,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="322.05" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="288.1" y="965" width="2.9" height="15.0" fill="rgb(230,151,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>connection_from_url(urllib3.poolmanager) (2 samples, 0.48%)</title><rect x="476.4" y="997" width="5.6" height="15.0" fill="rgb(249,116,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="479.38" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_bind(inspect) (1 samples, 0.24%)</title><rect x="74.6" y="437" width="2.8" height="15.0" fill="rgb(225,146,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="77.62" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="29.7" y="341" width="2.8" height="15.0" fill="rgb(233,184,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="260.0" y="757" width="2.9" height="15.0" fill="rgb(206,25,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>dispatch(raiden.transfer.architecture) (6 samples, 1.43%)</title><rect x="288.1" y="1253" width="16.9" height="15.0" fill="rgb(245,81,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sendRawTransaction(web3.eth) (1 samples, 0.24%)</title><rect x="114.0" y="613" width="2.8" height="15.0" fill="rgb(205,115,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="116.95" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (2 samples, 0.48%)</title><rect x="608.4" y="1285" width="5.6" height="15.0" fill="rgb(243,186,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="611.43" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.contract) (1 samples, 0.24%)</title><rect x="616.9" y="1237" width="2.8" height="15.0" fill="rgb(227,188,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="619.86" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (33 samples, 7.86%)</title><rect x="428.6" y="1301" width="92.7" height="15.0" fill="rgb(253,22,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="431.62" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_make_reque..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>emit(logging) (1 samples, 0.24%)</title><rect x="232.0" y="1189" width="2.8" height="15.0" fill="rgb(236,184,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="234.95" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getproxies_environment(urllib.request) (2 samples, 0.48%)</title><rect x="529.8" y="1253" width="5.6" height="15.0" fill="rgb(214,78,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="532.76" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (5 samples, 1.19%)</title><rect x="375.2" y="1173" width="14.1" height="15.0" fill="rgb(219,108,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="378.24" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__call__(pluggy.hooks) (13 samples, 3.10%)</title><rect x="91.5" y="789" width="36.5" height="15.0" fill="rgb(251,3,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__c..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(os) (1 samples, 0.24%)</title><rect x="330.3" y="1221" width="2.8" height="15.0" fill="rgb(238,153,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="333.29" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__new__(web3.utils.datatypes) (2 samples, 0.48%)</title><rect x="1035.5" y="1205" width="5.6" height="15.0" fill="rgb(238,148,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1038.48" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="574.7" y="1253" width="2.8" height="15.0" fill="rgb(246,203,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="577.71" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(os) (1 samples, 0.24%)</title><rect x="543.8" y="1237" width="2.8" height="15.0" fill="rgb(219,90,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="546.81" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_system_spec(raiden.utils) (3 samples, 0.71%)</title><rect x="35.3" y="805" width="8.4" height="15.0" fill="rgb(233,219,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="38.29" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (2 samples, 0.48%)</title><rect x="276.9" y="1045" width="5.6" height="15.0" fill="rgb(216,165,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_get_session(web3.utils.request) (1 samples, 0.24%)</title><rect x="355.6" y="1109" width="2.8" height="15.0" fill="rgb(209,169,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="358.57" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_handle_message(raiden.network.transport.matrix.transport) (44 samples, 10.48%)</title><rect x="192.6" y="1381" width="123.6" height="15.0" fill="rgb(223,25,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="195.62" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_handle_message..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>map_abi_data(web3.utils.abi) (1 samples, 0.24%)</title><rect x="26.9" y="709" width="2.8" height="15.0" fill="rgb(253,219,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="29.86" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (5 samples, 1.19%)</title><rect x="375.2" y="1109" width="14.1" height="15.0" fill="rgb(254,32,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="378.24" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (5 samples, 1.19%)</title><rect x="375.2" y="1125" width="14.1" height="15.0" fill="rgb(211,60,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="378.24" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (2 samples, 0.48%)</title><rect x="271.3" y="725" width="5.6" height="15.0" fill="rgb(217,129,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>name_to_address_middleware(web3.middleware.names) (1 samples, 0.24%)</title><rect x="588.8" y="1205" width="2.8" height="15.0" fill="rgb(230,22,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="591.76" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="274.1" y="629" width="2.8" height="15.0" fill="rgb(215,113,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="277.10" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="29.7" y="293" width="2.8" height="15.0" fill="rgb(252,200,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (1 samples, 0.24%)</title><rect x="602.8" y="1061" width="2.8" height="15.0" fill="rgb(239,171,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="605.81" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>matrix_server_starter(raiden.tests.utils.transport) (1 samples, 0.24%)</title><rect x="153.3" y="821" width="2.8" height="15.0" fill="rgb(248,104,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="156.29" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__setattr__(raiden.encoding.format) (1 samples, 0.24%)</title><rect x="175.8" y="1253" width="2.8" height="15.0" fill="rgb(247,219,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="178.76" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sign(raiden.raiden_service) (1 samples, 0.24%)</title><rect x="173.0" y="1381" width="2.8" height="15.0" fill="rgb(249,1,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="175.95" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>encode(json.encoder) (1 samples, 0.24%)</title><rect x="268.5" y="1221" width="2.8" height="15.0" fill="rgb(242,224,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="271.48" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_send_secretrequest(raiden.raiden_event_handler) (1 samples, 0.24%)</title><rect x="181.4" y="1397" width="2.8" height="15.0" fill="rgb(220,134,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="184.38" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>require(pkg_resources) (3 samples, 0.71%)</title><rect x="35.3" y="789" width="8.4" height="15.0" fill="rgb(235,134,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="38.29" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parse_headers(email.feedparser) (1 samples, 0.24%)</title><rect x="1080.4" y="1205" width="2.8" height="15.0" fill="rgb(228,16,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1083.43" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parsegen(email.feedparser) (1 samples, 0.24%)</title><rect x="560.7" y="1157" width="2.8" height="15.0" fill="rgb(242,140,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="563.67" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="243.2" y="789" width="2.8" height="15.0" fill="rgb(249,61,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>map_abi_data(web3.utils.abi) (1 samples, 0.24%)</title><rect x="594.4" y="1237" width="2.8" height="15.0" fill="rgb(235,4,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="597.38" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (2 samples, 0.48%)</title><rect x="271.3" y="821" width="5.6" height="15.0" fill="rgb(253,186,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(http.client) (1 samples, 0.24%)</title><rect x="114.0" y="261" width="2.8" height="15.0" fill="rgb(216,198,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="116.95" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>encode(eth_abi.encoding) (1 samples, 0.24%)</title><rect x="600.0" y="1189" width="2.8" height="15.0" fill="rgb(207,218,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="603.00" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="91.5" y="469" width="2.8" height="15.0" fill="rgb(228,1,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (1 samples, 0.24%)</title><rect x="32.5" y="469" width="2.8" height="15.0" fill="rgb(205,2,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="35.48" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (8 samples, 1.90%)</title><rect x="43.7" y="709" width="22.5" height="15.0" fill="rgb(228,131,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="46.71" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>open_text(psutil._pslinux) (1 samples, 0.24%)</title><rect x="153.3" y="645" width="2.8" height="15.0" fill="rgb(252,198,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="156.29" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="29.7" y="229" width="2.8" height="15.0" fill="rgb(219,106,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="130.8" y="421" width="2.8" height="15.0" fill="rgb(232,154,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="133.81" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getproxies_environment(urllib.request) (1 samples, 0.24%)</title><rect x="150.5" y="229" width="2.8" height="15.0" fill="rgb(217,75,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="153.48" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="32.5" y="709" width="2.8" height="15.0" fill="rgb(245,22,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="35.48" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>proxy_bypass_environment(urllib.request) (1 samples, 0.24%)</title><rect x="1187.2" y="1253" width="2.8" height="15.0" fill="rgb(210,185,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.19" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__setattr__(raiden.encoding.format) (1 samples, 0.24%)</title><rect x="232.0" y="981" width="2.8" height="15.0" fill="rgb(228,149,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="234.95" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_log(logging) (1 samples, 0.24%)</title><rect x="97.1" y="597" width="2.8" height="15.0" fill="rgb(250,192,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="100.10" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>inner(eth_utils.functional) (1 samples, 0.24%)</title><rect x="414.6" y="1205" width="2.8" height="15.0" fill="rgb(212,95,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="417.57" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle(logging) (2 samples, 0.48%)</title><rect x="338.7" y="1317" width="5.6" height="15.0" fill="rgb(219,65,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="341.71" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (7 samples, 1.67%)</title><rect x="350.0" y="1317" width="19.6" height="15.0" fill="rgb(229,11,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="352.95" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="32.5" y="693" width="2.8" height="15.0" fill="rgb(238,9,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="35.48" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="276.9" y="869" width="2.8" height="15.0" fill="rgb(251,21,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_dict(raiden.transfer.state_change) (1 samples, 0.24%)</title><rect x="226.3" y="1157" width="2.8" height="15.0" fill="rgb(225,151,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="229.33" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getBlock(web3.eth) (7 samples, 1.67%)</title><rect x="350.0" y="1365" width="19.6" height="15.0" fill="rgb(250,47,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="352.95" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>new(Crypto.Hash.keccak) (1 samples, 0.24%)</title><rect x="226.3" y="1077" width="2.8" height="15.0" fill="rgb(252,126,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="229.33" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="144.9" y="501" width="2.8" height="15.0" fill="rgb(224,158,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="32.5" y="549" width="2.8" height="15.0" fill="rgb(209,165,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="35.48" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="288.1" y="725" width="2.9" height="15.0" fill="rgb(251,202,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>packed(raiden.messages) (1 samples, 0.24%)</title><rect x="232.0" y="1013" width="2.8" height="15.0" fill="rgb(226,1,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="234.95" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (2 samples, 0.48%)</title><rect x="49.3" y="581" width="5.7" height="15.0" fill="rgb(230,83,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="52.33" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_checksum_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="229.1" y="1173" width="2.9" height="15.0" fill="rgb(222,222,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="232.14" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>putheader(http.client) (1 samples, 0.24%)</title><rect x="496.0" y="933" width="2.9" height="15.0" fill="rgb(238,228,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="499.05" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_state_change(raiden.raiden_service) (15 samples, 3.57%)</title><rect x="369.6" y="1349" width="42.2" height="15.0" fill="rgb(215,42,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="372.62" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >han..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call_fixture_func(_pytest.fixtures) (13 samples, 3.10%)</title><rect x="91.5" y="709" width="36.5" height="15.0" fill="rgb(230,152,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >cal..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_list(copy) (1 samples, 0.24%)</title><rect x="206.7" y="421" width="2.8" height="15.0" fill="rgb(229,217,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="209.67" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="243.2" y="869" width="2.8" height="15.0" fill="rgb(243,212,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>contract(web3.eth) (1 samples, 0.24%)</title><rect x="147.7" y="469" width="2.8" height="15.0" fill="rgb(235,40,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="150.67" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="344.3" y="1141" width="2.8" height="15.0" fill="rgb(254,206,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="347.33" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>post(requests.sessions) (1 samples, 0.24%)</title><rect x="574.7" y="1061" width="2.8" height="15.0" fill="rgb(207,15,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="577.71" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_partial_args(toolz.functoolz) (1 samples, 0.24%)</title><rect x="105.5" y="421" width="2.8" height="15.0" fill="rgb(215,156,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="108.52" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseString(pkg_resources._vendor.pyparsing) (2 samples, 0.48%)</title><rect x="1060.8" y="1253" width="5.6" height="15.0" fill="rgb(205,1,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1063.76" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (3 samples, 0.71%)</title><rect x="46.5" y="661" width="8.5" height="15.0" fill="rgb(254,13,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="49.52" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapper(raiden.log_config) (1 samples, 0.24%)</title><rect x="232.0" y="1141" width="2.8" height="15.0" fill="rgb(251,85,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="234.95" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="605.6" y="1157" width="2.8" height="15.0" fill="rgb(224,97,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="608.62" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>patched_web3_eth_estimate_gas(raiden.network.rpc.client) (1 samples, 0.24%)</title><rect x="99.9" y="565" width="2.8" height="15.0" fill="rgb(212,17,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="102.90" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>merge_environment_settings(requests.sessions) (1 samples, 0.24%)</title><rect x="150.5" y="261" width="2.8" height="15.0" fill="rgb(239,162,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="153.48" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="55.0" y="421" width="2.8" height="15.0" fill="rgb(250,61,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (9 samples, 2.14%)</title><rect x="198.2" y="1125" width="25.3" height="15.0" fill="rgb(248,38,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="201.24" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_has_one_val(eth_utils.decorators) (1 samples, 0.24%)</title><rect x="355.6" y="981" width="2.8" height="15.0" fill="rgb(211,188,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="358.57" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>register_secret_batch(raiden.network.proxies.secret_registry) (2 samples, 0.48%)</title><rect x="167.3" y="1365" width="5.7" height="15.0" fill="rgb(222,169,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="209.5" y="821" width="2.8" height="15.0" fill="rgb(231,112,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>inner(eth_utils.functional) (1 samples, 0.24%)</title><rect x="437.0" y="1141" width="2.9" height="15.0" fill="rgb(231,177,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="440.05" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (1 samples, 0.24%)</title><rect x="566.3" y="1125" width="2.8" height="15.0" fill="rgb(236,146,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (1 samples, 0.24%)</title><rect x="566.3" y="1269" width="2.8" height="15.0" fill="rgb(240,195,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__eq__(raiden.messages) (1 samples, 0.24%)</title><rect x="175.8" y="1317" width="2.8" height="15.0" fill="rgb(219,99,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="178.76" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="111.1" y="485" width="2.9" height="15.0" fill="rgb(228,6,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="114.14" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="12.8" y="581" width="2.8" height="15.0" fill="rgb(220,105,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (1 samples, 0.24%)</title><rect x="111.1" y="389" width="2.9" height="15.0" fill="rgb(252,58,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="114.14" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="380.9" y="741" width="2.8" height="15.0" fill="rgb(206,131,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="383.86" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="260.0" y="693" width="2.9" height="15.0" fill="rgb(251,207,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_environ_proxies(requests.utils) (1 samples, 0.24%)</title><rect x="580.3" y="1077" width="2.8" height="15.0" fill="rgb(209,2,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="583.33" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>inner(eth_utils.functional) (1 samples, 0.24%)</title><rect x="69.0" y="645" width="2.8" height="15.0" fill="rgb(238,22,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_post_request(web3.utils.request) (1 samples, 0.24%)</title><rect x="614.0" y="1125" width="2.9" height="15.0" fill="rgb(240,157,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="617.05" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (7 samples, 1.67%)</title><rect x="350.0" y="1253" width="19.6" height="15.0" fill="rgb(249,143,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="352.95" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (2 samples, 0.48%)</title><rect x="237.6" y="1141" width="5.6" height="15.0" fill="rgb(206,3,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="260.0" y="789" width="2.9" height="15.0" fill="rgb(249,149,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="276.9" y="981" width="2.8" height="15.0" fill="rgb(209,102,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (13 samples, 3.10%)</title><rect x="375.2" y="1189" width="36.6" height="15.0" fill="rgb(221,185,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="378.24" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >dee..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>gasPrice(web3.eth) (1 samples, 0.24%)</title><rect x="111.1" y="613" width="2.9" height="15.0" fill="rgb(235,172,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="114.14" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="288.1" y="565" width="2.9" height="15.0" fill="rgb(248,137,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>prepare(_pytest.runner) (30 samples, 7.14%)</title><rect x="69.0" y="965" width="84.3" height="15.0" fill="rgb(252,166,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >prepare(_..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>emit(logging) (1 samples, 0.24%)</title><rect x="341.5" y="1253" width="2.8" height="15.0" fill="rgb(238,113,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="344.52" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="580.3" y="1205" width="2.8" height="15.0" fill="rgb(206,84,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="583.33" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_environ_proxies(requests.utils) (2 samples, 0.48%)</title><rect x="358.4" y="1061" width="5.6" height="15.0" fill="rgb(208,40,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="361.38" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_hex(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="77.4" y="485" width="2.8" height="15.0" fill="rgb(252,135,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="80.43" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>check_registered(raiden.network.proxies.secret_registry) (1 samples, 0.24%)</title><rect x="12.8" y="821" width="2.8" height="15.0" fill="rgb(207,17,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (1 samples, 0.24%)</title><rect x="130.8" y="453" width="2.8" height="15.0" fill="rgb(252,183,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="133.81" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(ens.main) (1 samples, 0.24%)</title><rect x="133.6" y="501" width="2.8" height="15.0" fill="rgb(247,210,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="136.62" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (5 samples, 1.19%)</title><rect x="209.5" y="1093" width="14.0" height="15.0" fill="rgb(237,44,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="209.5" y="837" width="2.8" height="15.0" fill="rgb(209,118,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_poll(urllib3.util.wait) (1 samples, 0.24%)</title><rect x="167.3" y="853" width="2.8" height="15.0" fill="rgb(231,121,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_post_request(web3.utils.request) (1 samples, 0.24%)</title><rect x="94.3" y="325" width="2.8" height="15.0" fill="rgb(247,159,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>proxy_bypass_environment(urllib.request) (2 samples, 0.48%)</title><rect x="529.8" y="1269" width="5.6" height="15.0" fill="rgb(213,186,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="532.76" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="414.6" y="981" width="2.8" height="15.0" fill="rgb(213,184,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="417.57" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="111.1" y="517" width="2.9" height="15.0" fill="rgb(217,150,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="114.14" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="288.1" y="549" width="2.9" height="15.0" fill="rgb(239,35,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_checksum_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="302.2" y="869" width="2.8" height="15.0" fill="rgb(227,58,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="305.19" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="91.5" y="421" width="2.8" height="15.0" fill="rgb(211,101,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="411.8" y="1253" width="2.8" height="15.0" fill="rgb(241,107,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>inner(eth_utils.functional) (1 samples, 0.24%)</title><rect x="1041.1" y="1301" width="2.8" height="15.0" fill="rgb(252,21,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1044.10" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (2 samples, 0.48%)</title><rect x="276.9" y="1157" width="5.6" height="15.0" fill="rgb(238,168,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="1043.9" y="1237" width="2.8" height="15.0" fill="rgb(207,91,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1046.90" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_hookexec(pluggy.manager) (8 samples, 1.90%)</title><rect x="69.0" y="821" width="22.5" height="15.0" fill="rgb(233,150,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pex(raiden.utils) (1 samples, 0.24%)</title><rect x="425.8" y="1301" width="2.8" height="15.0" fill="rgb(227,33,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="428.81" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="344.3" y="1109" width="2.8" height="15.0" fill="rgb(236,108,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="347.33" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (1 samples, 0.24%)</title><rect x="597.2" y="1045" width="2.8" height="15.0" fill="rgb(240,229,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="600.19" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call(web3.eth) (1 samples, 0.24%)</title><rect x="71.8" y="613" width="2.8" height="15.0" fill="rgb(211,73,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="74.81" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>compare_contract_versions(raiden.network.proxies.utils) (1 samples, 0.24%)</title><rect x="71.8" y="677" width="2.8" height="15.0" fill="rgb(230,117,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="74.81" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>count_state_changes(raiden.storage.sqlite) (1 samples, 0.24%)</title><rect x="254.4" y="1269" width="2.8" height="15.0" fill="rgb(230,26,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="257.43" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>merge_environment_settings(requests.sessions) (1 samples, 0.24%)</title><rect x="1187.2" y="1301" width="2.8" height="15.0" fill="rgb(212,223,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.19" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__setitem__(cachetools.lru) (1 samples, 0.24%)</title><rect x="313.4" y="1349" width="2.8" height="15.0" fill="rgb(220,139,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="316.43" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_proxy_to_logger(structlog.stdlib) (1 samples, 0.24%)</title><rect x="192.6" y="1333" width="2.8" height="15.0" fill="rgb(223,66,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="195.62" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>token_address(raiden.network.proxies.token_network) (1 samples, 0.24%)</title><rect x="420.2" y="1317" width="2.8" height="15.0" fill="rgb(208,173,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="423.19" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (1 samples, 0.24%)</title><rect x="420.2" y="1029" width="2.8" height="15.0" fill="rgb(214,142,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="423.19" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__new__(web3.utils.abi) (6 samples, 1.43%)</title><rect x="498.9" y="949" width="16.8" height="15.0" fill="rgb(230,122,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="501.86" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call(web3.contract) (2 samples, 0.48%)</title><rect x="608.4" y="1365" width="5.6" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="611.43" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="15.6" y="229" width="2.8" height="15.0" fill="rgb(246,28,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>post(requests.sessions) (1 samples, 0.24%)</title><rect x="577.5" y="1077" width="2.8" height="15.0" fill="rgb(220,188,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="580.52" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="1024.2" y="1173" width="2.8" height="15.0" fill="rgb(212,39,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.24" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_partial_args(toolz.functoolz) (2 samples, 0.48%)</title><rect x="515.7" y="1077" width="5.6" height="15.0" fill="rgb(210,218,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="518.71" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>post(requests.sessions) (1 samples, 0.24%)</title><rect x="136.4" y="325" width="2.8" height="15.0" fill="rgb(231,220,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="139.43" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (2 samples, 0.48%)</title><rect x="383.7" y="837" width="5.6" height="15.0" fill="rgb(240,22,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="386.67" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.contract) (2 samples, 0.48%)</title><rect x="122.4" y="597" width="5.6" height="15.0" fill="rgb(244,43,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="125.38" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="420.2" y="1045" width="2.8" height="15.0" fill="rgb(206,75,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="423.19" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (4 samples, 0.95%)</title><rect x="257.2" y="1173" width="11.3" height="15.0" fill="rgb(213,66,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="260.24" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="133.6" y="469" width="2.8" height="15.0" fill="rgb(228,77,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="136.62" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_send_balanceproof(raiden.raiden_event_handler) (1 samples, 0.24%)</title><rect x="173.0" y="1397" width="2.8" height="15.0" fill="rgb(212,218,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="175.95" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>inner(eth_utils.functional) (1 samples, 0.24%)</title><rect x="71.8" y="629" width="2.8" height="15.0" fill="rgb(213,37,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="74.81" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(logging) (1 samples, 0.24%)</title><rect x="97.1" y="453" width="2.8" height="15.0" fill="rgb(249,91,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="100.10" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatter_if(web3.utils.formatters) (1 samples, 0.24%)</title><rect x="521.3" y="1237" width="2.8" height="15.0" fill="rgb(229,217,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="524.33" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (1 samples, 0.24%)</title><rect x="605.6" y="1205" width="2.8" height="15.0" fill="rgb(225,188,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="608.62" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="125.2" y="501" width="2.8" height="15.0" fill="rgb(225,54,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="128.19" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_hex_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="302.2" y="821" width="2.8" height="15.0" fill="rgb(216,222,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="305.19" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="94.3" y="501" width="2.8" height="15.0" fill="rgb(208,78,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(raiden.network.proxies.token_network) (5 samples, 1.19%)</title><rect x="1027.0" y="1317" width="14.1" height="15.0" fill="rgb(213,197,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1030.05" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recursive_map(web3.utils.formatters) (6 samples, 1.43%)</title><rect x="498.9" y="981" width="16.8" height="15.0" fill="rgb(217,227,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="501.86" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (1 samples, 0.24%)</title><rect x="99.9" y="293" width="2.8" height="15.0" fill="rgb(211,54,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="102.90" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (1 samples, 0.24%)</title><rect x="111.1" y="533" width="2.9" height="15.0" fill="rgb(223,56,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="114.14" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deploy_contract_web3(raiden.utils.smart_contracts) (4 samples, 0.95%)</title><rect x="128.0" y="629" width="11.2" height="15.0" fill="rgb(212,29,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="131.00" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapper(eth_utils.decorators) (1 samples, 0.24%)</title><rect x="352.8" y="1109" width="2.8" height="15.0" fill="rgb(234,158,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="355.76" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_send(matrix_client.api) (2 samples, 0.48%)</title><rect x="330.3" y="1317" width="5.6" height="15.0" fill="rgb(237,142,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="333.29" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (1 samples, 0.24%)</title><rect x="1043.9" y="1109" width="2.8" height="15.0" fill="rgb(236,23,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1046.90" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (4 samples, 0.95%)</title><rect x="257.2" y="1157" width="11.3" height="15.0" fill="rgb(225,120,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="260.24" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><lambda>(web3.utils.transactions) (1 samples, 0.24%)</title><rect x="99.9" y="581" width="2.8" height="15.0" fill="rgb(234,160,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="102.90" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_handle_invite(raiden.network.transport.matrix.transport) (1 samples, 0.24%)</title><rect x="187.0" y="1397" width="2.8" height="15.0" fill="rgb(219,87,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="190.00" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_handle_fromlist(importlib._bootstrap) (1 samples, 0.24%)</title><rect x="178.6" y="1285" width="2.8" height="15.0" fill="rgb(207,229,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="181.57" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="111.1" y="453" width="2.9" height="15.0" fill="rgb(243,137,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="114.14" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>generate(requests.models) (1 samples, 0.24%)</title><rect x="549.4" y="1301" width="2.8" height="15.0" fill="rgb(235,65,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="552.43" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="130.8" y="485" width="2.8" height="15.0" fill="rgb(239,78,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="133.81" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>proxy_bypass_environment(urllib.request) (1 samples, 0.24%)</title><rect x="420.2" y="917" width="2.8" height="15.0" fill="rgb(226,202,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="423.19" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>log_and_dispatch(raiden.storage.wal) (4 samples, 0.95%)</title><rect x="257.2" y="1269" width="11.3" height="15.0" fill="rgb(206,69,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="260.24" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="15.6" y="469" width="2.8" height="15.0" fill="rgb(212,227,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="414.6" y="1093" width="2.8" height="15.0" fill="rgb(211,14,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="417.57" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="274.1" y="549" width="2.8" height="15.0" fill="rgb(205,119,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="277.10" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_send(matrix_client.api) (1 samples, 0.24%)</title><rect x="66.2" y="741" width="2.8" height="15.0" fill="rgb(245,103,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="69.19" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="77.4" y="533" width="2.8" height="15.0" fill="rgb(245,77,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="80.43" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="527.0" y="1173" width="2.8" height="15.0" fill="rgb(243,94,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="529.95" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>new_contract_proxy(raiden.network.rpc.client) (2 samples, 0.48%)</title><rect x="83.0" y="677" width="5.7" height="15.0" fill="rgb(232,167,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="86.05" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="1043.9" y="1125" width="2.8" height="15.0" fill="rgb(227,54,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1046.90" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(os) (1 samples, 0.24%)</title><rect x="574.7" y="933" width="2.8" height="15.0" fill="rgb(253,67,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="577.71" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parseNoCache(pkg_resources._vendor.pyparsing) (1 samples, 0.24%)</title><rect x="1122.6" y="901" width="2.8" height="15.0" fill="rgb(214,0,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1125.57" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recursive_map(web3.utils.formatters) (1 samples, 0.24%)</title><rect x="366.8" y="1205" width="2.8" height="15.0" fill="rgb(252,105,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="369.81" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_normalized_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="350.0" y="1141" width="2.8" height="15.0" fill="rgb(231,102,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="352.95" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>basename(posixpath) (1 samples, 0.24%)</title><rect x="324.7" y="1141" width="2.8" height="15.0" fill="rgb(245,46,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="327.67" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_callfinalizers(_pytest.runner) (4 samples, 0.95%)</title><rect x="153.3" y="901" width="11.2" height="15.0" fill="rgb(208,162,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="156.29" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="150.5" y="389" width="2.8" height="15.0" fill="rgb(250,85,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="153.48" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="198.2" y="1013" width="2.8" height="15.0" fill="rgb(214,114,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="201.24" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle(logging) (1 samples, 0.24%)</title><rect x="307.8" y="1285" width="2.8" height="15.0" fill="rgb(211,91,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="310.81" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_send_request(http.client) (1 samples, 0.24%)</title><rect x="114.0" y="245" width="2.8" height="15.0" fill="rgb(227,114,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="116.95" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="147.7" y="533" width="2.8" height="15.0" fill="rgb(235,43,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="150.67" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="29.7" y="357" width="2.8" height="15.0" fill="rgb(249,224,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parse(sre_parse) (1 samples, 0.24%)</title><rect x="1041.1" y="1205" width="2.8" height="15.0" fill="rgb(213,14,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1044.10" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><genexpr>(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="77.4" y="469" width="2.8" height="15.0" fill="rgb(222,43,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="80.43" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>decode(json.decoder) (1 samples, 0.24%)</title><rect x="10.0" y="773" width="2.8" height="15.0" fill="rgb(227,194,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_on_child(gevent.os) (1 samples, 0.24%)</title><rect x="1010.2" y="1413" width="2.8" height="15.0" fill="rgb(215,13,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1013.19" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>kind(inspect) (1 samples, 0.24%)</title><rect x="133.6" y="341" width="2.8" height="15.0" fill="rgb(243,205,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="136.62" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (2 samples, 0.48%)</title><rect x="378.0" y="757" width="5.7" height="15.0" fill="rgb(238,78,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="381.05" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (1 samples, 0.24%)</title><rect x="136.4" y="437" width="2.8" height="15.0" fill="rgb(217,25,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="139.43" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_pop_and_teardown(_pytest.runner) (4 samples, 0.95%)</title><rect x="153.3" y="933" width="11.2" height="15.0" fill="rgb(250,58,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="156.29" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="52.1" y="421" width="2.9" height="15.0" fill="rgb(240,201,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="55.14" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>emit(logging) (1 samples, 0.24%)</title><rect x="324.7" y="1237" width="2.8" height="15.0" fill="rgb(215,130,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="327.67" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="577.5" y="1285" width="2.8" height="15.0" fill="rgb(241,46,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="580.52" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>load(json) (1 samples, 0.24%)</title><rect x="10.0" y="805" width="2.8" height="15.0" fill="rgb(231,9,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="136.4" y="373" width="2.8" height="15.0" fill="rgb(209,18,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="139.43" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="150.5" y="373" width="2.8" height="15.0" fill="rgb(235,4,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="153.48" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><dictcomp>(raiden.utils.filters) (1 samples, 0.24%)</title><rect x="571.9" y="1365" width="2.8" height="15.0" fill="rgb(208,32,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="574.90" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>isEnabledFor(logging) (1 samples, 0.24%)</title><rect x="527.0" y="1125" width="2.8" height="15.0" fill="rgb(230,211,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="529.95" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="288.1" y="597" width="2.9" height="15.0" fill="rgb(245,152,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (3 samples, 0.71%)</title><rect x="201.0" y="1061" width="8.5" height="15.0" fill="rgb(254,124,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="204.05" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>compare_contract_versions(raiden.network.proxies.utils) (1 samples, 0.24%)</title><rect x="94.3" y="629" width="2.8" height="15.0" fill="rgb(250,21,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="116.8" y="533" width="2.8" height="15.0" fill="rgb(230,159,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="119.76" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>map_abi_data(web3.utils.abi) (1 samples, 0.24%)</title><rect x="1032.7" y="1205" width="2.8" height="15.0" fill="rgb(215,107,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1035.67" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>map_abi_data(web3.utils.abi) (1 samples, 0.24%)</title><rect x="302.2" y="1045" width="2.8" height="15.0" fill="rgb(238,3,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="305.19" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="80.2" y="549" width="2.8" height="15.0" fill="rgb(254,53,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(collections.abc) (1 samples, 0.24%)</title><rect x="1043.9" y="965" width="2.8" height="15.0" fill="rgb(229,30,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1046.90" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>merge_environment_settings(requests.sessions) (1 samples, 0.24%)</title><rect x="170.1" y="1029" width="2.9" height="15.0" fill="rgb(219,12,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="173.14" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (2 samples, 0.48%)</title><rect x="608.4" y="1237" width="5.6" height="15.0" fill="rgb(239,10,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="611.43" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="577.5" y="1317" width="2.8" height="15.0" fill="rgb(232,100,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="580.52" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call(web3.contract) (2 samples, 0.48%)</title><rect x="591.6" y="1317" width="5.6" height="15.0" fill="rgb(210,52,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="594.57" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>iterencode(json.encoder) (1 samples, 0.24%)</title><rect x="268.5" y="1205" width="2.8" height="15.0" fill="rgb(230,107,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="271.48" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>encode(os) (1 samples, 0.24%)</title><rect x="1187.2" y="1189" width="2.8" height="15.0" fill="rgb(209,129,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.19" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>begin(http.client) (1 samples, 0.24%)</title><rect x="69.0" y="261" width="2.8" height="15.0" fill="rgb(229,50,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_post_request(web3.utils.request) (1 samples, 0.24%)</title><rect x="411.8" y="1061" width="2.8" height="15.0" fill="rgb(217,36,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>default(raiden.storage.serialize) (1 samples, 0.24%)</title><rect x="251.6" y="1189" width="2.8" height="15.0" fill="rgb(237,67,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="254.62" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="566.3" y="1141" width="2.8" height="15.0" fill="rgb(252,204,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="55.0" y="229" width="2.8" height="15.0" fill="rgb(217,134,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>execute(_pytest.fixtures) (9 samples, 2.14%)</title><rect x="128.0" y="757" width="25.3" height="15.0" fill="rgb(249,144,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="131.00" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle(logging) (1 samples, 0.24%)</title><rect x="97.1" y="549" width="2.8" height="15.0" fill="rgb(214,90,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="100.10" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parseNoCache(pkg_resources._vendor.pyparsing) (1 samples, 0.24%)</title><rect x="1125.4" y="901" width="2.8" height="15.0" fill="rgb(228,131,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1128.38" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parsestr(email.parser) (1 samples, 0.24%)</title><rect x="66.2" y="597" width="2.8" height="15.0" fill="rgb(215,95,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="69.19" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><lambda>(pluggy.manager) (13 samples, 3.10%)</title><rect x="91.5" y="757" width="36.5" height="15.0" fill="rgb(235,143,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><la..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_send_request(http.client) (1 samples, 0.24%)</title><rect x="144.9" y="181" width="2.8" height="15.0" fill="rgb(237,10,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.sessions) (1 samples, 0.24%)</title><rect x="114.0" y="325" width="2.8" height="15.0" fill="rgb(250,70,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="116.95" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>contract(web3.eth) (1 samples, 0.24%)</title><rect x="619.7" y="1285" width="2.8" height="15.0" fill="rgb(227,92,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="622.67" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>inner(eth_utils.functional) (1 samples, 0.24%)</title><rect x="566.3" y="1365" width="2.8" height="15.0" fill="rgb(228,57,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>contract(web3.eth) (1 samples, 0.24%)</title><rect x="102.7" y="517" width="2.8" height="15.0" fill="rgb(233,138,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="105.71" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="288.1" y="661" width="2.9" height="15.0" fill="rgb(229,176,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>contract(web3.eth) (1 samples, 0.24%)</title><rect x="142.0" y="565" width="2.9" height="15.0" fill="rgb(236,147,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="145.05" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>post(requests.sessions) (1 samples, 0.24%)</title><rect x="94.3" y="309" width="2.8" height="15.0" fill="rgb(237,15,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_checksum_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="305.0" y="1125" width="2.8" height="15.0" fill="rgb(241,207,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="308.00" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="32.5" y="629" width="2.8" height="15.0" fill="rgb(245,196,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="35.48" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(raiden.network.proxies.secret_registry) (1 samples, 0.24%)</title><rect x="94.3" y="645" width="2.8" height="15.0" fill="rgb(237,142,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recv_into(gevent._socket3) (1 samples, 0.24%)</title><rect x="12.8" y="325" width="2.8" height="15.0" fill="rgb(235,88,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="260.0" y="901" width="2.9" height="15.0" fill="rgb(235,87,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="116.8" y="613" width="2.8" height="15.0" fill="rgb(251,117,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="119.76" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_cookie_header(requests.cookies) (1 samples, 0.24%)</title><rect x="566.3" y="1013" width="2.8" height="15.0" fill="rgb(230,40,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>normalize_event_input_types(web3.utils.abi) (1 samples, 0.24%)</title><rect x="1041.1" y="1285" width="2.8" height="15.0" fill="rgb(211,215,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1044.10" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="130.8" y="549" width="2.8" height="15.0" fill="rgb(213,130,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="133.81" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (1 samples, 0.24%)</title><rect x="580.3" y="1301" width="2.8" height="15.0" fill="rgb(249,9,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="583.33" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>log_and_dispatch(raiden.storage.wal) (3 samples, 0.71%)</title><rect x="243.2" y="1253" width="8.4" height="15.0" fill="rgb(219,122,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_partial_args(toolz.functoolz) (1 samples, 0.24%)</title><rect x="125.2" y="437" width="2.8" height="15.0" fill="rgb(232,9,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="128.19" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>loads(json) (1 samples, 0.24%)</title><rect x="10.0" y="789" width="2.8" height="15.0" fill="rgb(205,213,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>post(requests.sessions) (1 samples, 0.24%)</title><rect x="91.5" y="373" width="2.8" height="15.0" fill="rgb(217,6,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="139.2" y="501" width="2.8" height="15.0" fill="rgb(231,217,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_hookexec(pluggy.manager) (55 samples, 13.10%)</title><rect x="10.0" y="1381" width="154.5" height="15.0" fill="rgb(205,30,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_hookexec(pluggy.ma..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_call_parse(email.feedparser) (1 samples, 0.24%)</title><rect x="484.8" y="885" width="2.8" height="15.0" fill="rgb(222,135,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="487.81" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>payment_channel(raiden.network.blockchain_service) (1 samples, 0.24%)</title><rect x="580.3" y="1413" width="2.8" height="15.0" fill="rgb(218,4,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="583.33" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="111.1" y="597" width="2.9" height="15.0" fill="rgb(243,158,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="114.14" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="130.8" y="533" width="2.8" height="15.0" fill="rgb(227,27,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="133.81" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="167.3" y="1109" width="2.8" height="15.0" fill="rgb(227,205,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send_transaction(raiden.network.rpc.client) (2 samples, 0.48%)</title><rect x="111.1" y="629" width="5.7" height="15.0" fill="rgb(207,7,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="114.14" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>connection_from_host(urllib3.poolmanager) (1 samples, 0.24%)</title><rect x="597.2" y="965" width="2.8" height="15.0" fill="rgb(214,211,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="600.19" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (2 samples, 0.48%)</title><rect x="237.6" y="1061" width="5.6" height="15.0" fill="rgb(240,26,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="344.3" y="1349" width="2.8" height="15.0" fill="rgb(217,193,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="347.33" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>post(requests.sessions) (1 samples, 0.24%)</title><rect x="1043.9" y="1077" width="2.8" height="15.0" fill="rgb(245,119,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1046.90" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="94.3" y="389" width="2.8" height="15.0" fill="rgb(244,147,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>decode(os) (1 samples, 0.24%)</title><rect x="1043.9" y="933" width="2.8" height="15.0" fill="rgb(219,110,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1046.90" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_hex(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="321.9" y="1285" width="2.8" height="15.0" fill="rgb(247,192,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="324.86" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>post(requests.sessions) (1 samples, 0.24%)</title><rect x="566.3" y="1093" width="2.8" height="15.0" fill="rgb(222,13,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__exit__(mirakuru.base) (1 samples, 0.24%)</title><rect x="153.3" y="773" width="2.8" height="15.0" fill="rgb(251,34,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="156.29" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wait_for_channels(raiden.tests.utils.network) (1 samples, 0.24%)</title><rect x="88.7" y="725" width="2.8" height="15.0" fill="rgb(230,225,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="91.67" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseImpl(pkg_resources._vendor.pyparsing) (1 samples, 0.24%)</title><rect x="1150.7" y="725" width="2.8" height="15.0" fill="rgb(218,208,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1153.67" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (3 samples, 0.71%)</title><rect x="243.2" y="1077" width="8.4" height="15.0" fill="rgb(215,34,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getproxies_environment(urllib.request) (1 samples, 0.24%)</title><rect x="170.1" y="965" width="2.9" height="15.0" fill="rgb(206,25,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="173.14" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="74.6" y="501" width="2.8" height="15.0" fill="rgb(216,217,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="77.62" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="260.0" y="965" width="2.9" height="15.0" fill="rgb(221,35,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="46.5" y="613" width="2.8" height="15.0" fill="rgb(224,210,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="49.52" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>feed(email.feedparser) (5 samples, 1.19%)</title><rect x="1069.2" y="1253" width="14.0" height="15.0" fill="rgb(239,16,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1072.19" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(http.client) (4 samples, 0.95%)</title><rect x="487.6" y="981" width="11.3" height="15.0" fill="rgb(228,77,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="490.62" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapped(web3.utils.decorators) (1 samples, 0.24%)</title><rect x="173.0" y="1141" width="2.8" height="15.0" fill="rgb(233,5,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="175.95" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="167.3" y="1205" width="2.8" height="15.0" fill="rgb(207,195,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__new__(web3.utils.datatypes) (1 samples, 0.24%)</title><rect x="122.4" y="469" width="2.8" height="15.0" fill="rgb(251,0,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="125.38" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>post(requests.sessions) (1 samples, 0.24%)</title><rect x="414.6" y="933" width="2.8" height="15.0" fill="rgb(248,220,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="417.57" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parse_headers(http.client) (1 samples, 0.24%)</title><rect x="139.2" y="149" width="2.8" height="15.0" fill="rgb(211,66,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (3 samples, 0.71%)</title><rect x="291.0" y="1109" width="8.4" height="15.0" fill="rgb(247,0,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="293.95" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="206.7" y="469" width="2.8" height="15.0" fill="rgb(248,31,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="209.67" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><lambda>(pluggy.manager) (55 samples, 13.10%)</title><rect x="10.0" y="1365" width="154.5" height="15.0" fill="rgb(206,124,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><lambda>(pluggy.man..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.contract) (1 samples, 0.24%)</title><rect x="133.6" y="437" width="2.8" height="15.0" fill="rgb(217,132,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="136.62" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="15.6" y="453" width="2.8" height="15.0" fill="rgb(214,64,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_bind(inspect) (1 samples, 0.24%)</title><rect x="133.6" y="357" width="2.8" height="15.0" fill="rgb(218,159,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="136.62" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="55.0" y="389" width="2.8" height="15.0" fill="rgb(219,129,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>first_run(raiden.tasks) (2 samples, 0.48%)</title><rect x="29.7" y="821" width="5.6" height="15.0" fill="rgb(215,58,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="574.7" y="1285" width="2.8" height="15.0" fill="rgb(245,47,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="577.71" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>run(gevent.hub) (143 samples, 34.05%)</title><rect x="622.5" y="1429" width="401.7" height="15.0" fill="rgb(253,104,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="625.48" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >run(gevent.hub)</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>bind(inspect) (1 samples, 0.24%)</title><rect x="74.6" y="453" width="2.8" height="15.0" fill="rgb(208,174,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="77.62" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>merge_environment_settings(requests.sessions) (1 samples, 0.24%)</title><rect x="136.4" y="293" width="2.8" height="15.0" fill="rgb(223,129,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="139.43" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ens(web3.main) (2 samples, 0.48%)</title><rect x="586.0" y="1317" width="5.6" height="15.0" fill="rgb(223,114,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="588.95" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="80.2" y="453" width="2.8" height="15.0" fill="rgb(227,184,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="52.1" y="373" width="2.9" height="15.0" fill="rgb(213,132,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="55.14" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parse_headers(http.client) (1 samples, 0.24%)</title><rect x="69.0" y="245" width="2.8" height="15.0" fill="rgb(221,11,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="566.3" y="1157" width="2.8" height="15.0" fill="rgb(223,96,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>soliditySha3(web3.main) (1 samples, 0.24%)</title><rect x="26.9" y="725" width="2.8" height="15.0" fill="rgb(234,86,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="29.86" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getproxies_environment(urllib.request) (1 samples, 0.24%)</title><rect x="580.3" y="1061" width="2.8" height="15.0" fill="rgb(228,115,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="583.33" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="417.4" y="1141" width="2.8" height="15.0" fill="rgb(220,38,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="420.38" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (1 samples, 0.24%)</title><rect x="94.3" y="421" width="2.8" height="15.0" fill="rgb(246,42,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call_contract_function(web3.contract) (1 samples, 0.24%)</title><rect x="69.0" y="661" width="2.8" height="15.0" fill="rgb(206,58,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="80.2" y="501" width="2.8" height="15.0" fill="rgb(231,27,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_proxy_to_logger(structlog.stdlib) (1 samples, 0.24%)</title><rect x="97.1" y="645" width="2.8" height="15.0" fill="rgb(238,219,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="100.10" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>map_abi_data(web3.utils.abi) (8 samples, 1.90%)</title><rect x="498.9" y="1093" width="22.4" height="15.0" fill="rgb(213,139,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="501.86" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >m..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.sessions) (1 samples, 0.24%)</title><rect x="597.2" y="1029" width="2.8" height="15.0" fill="rgb(205,57,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="600.19" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_send(matrix_client.api) (1 samples, 0.24%)</title><rect x="184.2" y="1301" width="2.8" height="15.0" fill="rgb(230,141,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="187.19" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>default(raiden.storage.serialize) (1 samples, 0.24%)</title><rect x="229.1" y="1205" width="2.9" height="15.0" fill="rgb(235,35,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="232.14" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="139.2" y="421" width="2.8" height="15.0" fill="rgb(228,46,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="380.9" y="677" width="2.8" height="15.0" fill="rgb(250,228,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="383.86" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>resolve_redirects(requests.sessions) (1 samples, 0.24%)</title><rect x="602.8" y="1013" width="2.8" height="15.0" fill="rgb(234,96,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="605.81" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>map_collection(web3.utils.formatters) (5 samples, 1.19%)</title><rect x="501.7" y="885" width="14.0" height="15.0" fill="rgb(206,69,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="504.67" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><lambda>(pluggy.manager) (21 samples, 5.00%)</title><rect x="10.0" y="917" width="59.0" height="15.0" fill="rgb(208,140,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><lambd..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.contract) (1 samples, 0.24%)</title><rect x="74.6" y="629" width="2.8" height="15.0" fill="rgb(251,110,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="77.62" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (13 samples, 3.10%)</title><rect x="375.2" y="1221" width="36.6" height="15.0" fill="rgb(219,67,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="378.24" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >dee..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="29.7" y="709" width="2.8" height="15.0" fill="rgb(248,133,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>generate_cache_key(web3.utils.caching) (1 samples, 0.24%)</title><rect x="439.9" y="1045" width="2.8" height="15.0" fill="rgb(235,28,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="442.86" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_dict(raiden.transfer.mediated_transfer.events) (1 samples, 0.24%)</title><rect x="282.5" y="1141" width="2.8" height="15.0" fill="rgb(225,3,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="285.52" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(raiden.tests.utils.tests) (2 samples, 0.48%)</title><rect x="158.9" y="821" width="5.6" height="15.0" fill="rgb(224,85,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="161.90" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="94.3" y="373" width="2.8" height="15.0" fill="rgb(208,29,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="80.2" y="597" width="2.8" height="15.0" fill="rgb(208,161,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_state_change(raiden.raiden_service) (3 samples, 0.71%)</title><rect x="276.9" y="1285" width="8.4" height="15.0" fill="rgb(229,18,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_log(logging) (2 samples, 0.48%)</title><rect x="324.7" y="1317" width="5.6" height="15.0" fill="rgb(210,115,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="327.67" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="288.1" y="453" width="2.9" height="15.0" fill="rgb(244,67,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="99.9" y="405" width="2.8" height="15.0" fill="rgb(253,186,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="102.90" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="597.2" y="1109" width="2.8" height="15.0" fill="rgb(206,120,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="600.19" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="276.9" y="1029" width="2.8" height="15.0" fill="rgb(240,164,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__call__(eth_hash.main) (1 samples, 0.24%)</title><rect x="305.0" y="1093" width="2.8" height="15.0" fill="rgb(207,162,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="308.00" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_output(http.client) (1 samples, 0.24%)</title><rect x="496.0" y="917" width="2.9" height="15.0" fill="rgb(231,23,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="499.05" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>compare_contract_versions(raiden.network.proxies.utils) (1 samples, 0.24%)</title><rect x="80.2" y="677" width="2.8" height="15.0" fill="rgb(223,74,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_connection(requests.adapters) (2 samples, 0.48%)</title><rect x="476.4" y="1013" width="5.6" height="15.0" fill="rgb(227,44,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="479.38" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parseNoCache(pkg_resources._vendor.pyparsing) (2 samples, 0.48%)</title><rect x="1153.5" y="1093" width="5.6" height="15.0" fill="rgb(235,108,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1156.48" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseImpl(pkg_resources._vendor.pyparsing) (14 samples, 3.33%)</title><rect x="1097.3" y="1061" width="39.3" height="15.0" fill="rgb(221,215,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1100.29" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >par..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>prepare_request(requests.sessions) (1 samples, 0.24%)</title><rect x="566.3" y="1061" width="2.8" height="15.0" fill="rgb(210,19,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>approve(raiden.network.proxies.token) (3 samples, 0.71%)</title><rect x="597.2" y="1365" width="8.4" height="15.0" fill="rgb(217,128,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="600.19" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="411.8" y="1285" width="2.8" height="15.0" fill="rgb(253,8,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__call__(structlog.processors) (1 samples, 0.24%)</title><rect x="307.8" y="1141" width="2.8" height="15.0" fill="rgb(250,101,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="310.81" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_environ_proxies(requests.utils) (1 samples, 0.24%)</title><rect x="417.4" y="997" width="2.8" height="15.0" fill="rgb(240,24,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="420.38" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (2 samples, 0.48%)</title><rect x="262.9" y="1029" width="5.6" height="15.0" fill="rgb(231,227,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="265.86" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="288.1" y="581" width="2.9" height="15.0" fill="rgb(235,156,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_post_request(web3.utils.request) (1 samples, 0.24%)</title><rect x="602.8" y="1093" width="2.8" height="15.0" fill="rgb(247,163,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="605.81" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(pkg_resources.extern.packaging.version) (1 samples, 0.24%)</title><rect x="1055.1" y="1253" width="2.9" height="15.0" fill="rgb(230,107,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1058.14" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call_contract_function(web3.contract) (2 samples, 0.48%)</title><rect x="237.6" y="1253" width="5.6" height="15.0" fill="rgb(217,191,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>dumps(json) (1 samples, 0.24%)</title><rect x="229.1" y="1253" width="2.9" height="15.0" fill="rgb(210,51,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="232.14" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="417.4" y="1237" width="2.8" height="15.0" fill="rgb(231,66,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="420.38" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_and_track_state_change(raiden.raiden_service) (3 samples, 0.71%)</title><rect x="276.9" y="1301" width="8.4" height="15.0" fill="rgb(247,132,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="260.0" y="709" width="2.9" height="15.0" fill="rgb(224,77,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>decode(os) (1 samples, 0.24%)</title><rect x="541.0" y="1253" width="2.8" height="15.0" fill="rgb(225,223,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="544.00" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="111.1" y="549" width="2.9" height="15.0" fill="rgb(252,186,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="114.14" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>set_total_deposit(raiden.network.proxies.payment_channel) (11 samples, 2.62%)</title><rect x="583.1" y="1413" width="30.9" height="15.0" fill="rgb(225,136,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="586.14" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >se..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>map_abi_data(web3.utils.abi) (1 samples, 0.24%)</title><rect x="173.0" y="1301" width="2.8" height="15.0" fill="rgb(249,136,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="175.95" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (4 samples, 0.95%)</title><rect x="15.6" y="741" width="11.3" height="15.0" fill="rgb(206,183,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_send_request(http.client) (4 samples, 0.95%)</title><rect x="487.6" y="965" width="11.3" height="15.0" fill="rgb(237,123,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="490.62" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_normalized_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="437.0" y="1093" width="2.9" height="15.0" fill="rgb(239,32,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="440.05" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>join_room(matrix_client.api) (1 samples, 0.24%)</title><rect x="184.2" y="1333" width="2.8" height="15.0" fill="rgb(241,11,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="187.19" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="136.4" y="533" width="2.8" height="15.0" fill="rgb(210,199,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="139.43" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (2 samples, 0.48%)</title><rect x="271.3" y="1189" width="5.6" height="15.0" fill="rgb(228,193,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_normalized_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="285.3" y="1141" width="2.8" height="15.0" fill="rgb(205,135,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="288.33" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="1024.2" y="1269" width="2.8" height="15.0" fill="rgb(205,82,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.24" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (21 samples, 5.00%)</title><rect x="439.9" y="1109" width="59.0" height="15.0" fill="rgb(238,41,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="442.86" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >make_r..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send_text(matrix_client.room) (3 samples, 0.71%)</title><rect x="529.8" y="1413" width="8.4" height="15.0" fill="rgb(242,127,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="532.76" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_send_with_retry(raiden.network.transport.matrix.transport) (1 samples, 0.24%)</title><rect x="175.8" y="1365" width="2.8" height="15.0" fill="rgb(242,226,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="178.76" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle(logging) (1 samples, 0.24%)</title><rect x="324.7" y="1269" width="2.8" height="15.0" fill="rgb(219,165,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="327.67" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_partial_args(toolz.functoolz) (1 samples, 0.24%)</title><rect x="1035.5" y="1189" width="2.8" height="15.0" fill="rgb(251,63,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1038.48" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_data_to_sign(raiden.messages) (1 samples, 0.24%)</title><rect x="173.0" y="1349" width="2.8" height="15.0" fill="rgb(243,76,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="175.95" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>prepare(requests.models) (1 samples, 0.24%)</title><rect x="566.3" y="1045" width="2.8" height="15.0" fill="rgb(254,47,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="274.1" y="581" width="2.8" height="15.0" fill="rgb(248,98,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="277.10" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_get_active_fixturedef(_pytest.fixtures) (22 samples, 5.24%)</title><rect x="91.5" y="837" width="61.8" height="15.0" fill="rgb(226,175,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_get_a..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="108.3" y="469" width="2.8" height="15.0" fill="rgb(210,149,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="111.33" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>init_web3(ens.utils) (1 samples, 0.24%)</title><rect x="588.8" y="1269" width="2.8" height="15.0" fill="rgb(229,25,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="591.76" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getCode(web3.eth) (1 samples, 0.24%)</title><rect x="614.0" y="1365" width="2.9" height="15.0" fill="rgb(223,222,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="617.05" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_wrapper(web3.utils.decorators) (1 samples, 0.24%)</title><rect x="26.9" y="741" width="2.8" height="15.0" fill="rgb(244,5,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="29.86" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call(web3.contract) (1 samples, 0.24%)</title><rect x="420.2" y="1301" width="2.8" height="15.0" fill="rgb(251,115,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="423.19" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(collections.abc) (1 samples, 0.24%)</title><rect x="170.1" y="949" width="2.9" height="15.0" fill="rgb(208,71,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="173.14" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call(web3.eth) (1 samples, 0.24%)</title><rect x="69.0" y="629" width="2.8" height="15.0" fill="rgb(225,187,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>write_state_change(raiden.storage.sqlite) (1 samples, 0.24%)</title><rect x="226.3" y="1253" width="2.8" height="15.0" fill="rgb(242,96,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="229.33" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>prepare_request(requests.sessions) (1 samples, 0.24%)</title><rect x="546.6" y="1333" width="2.8" height="15.0" fill="rgb(249,75,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="549.62" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="12.8" y="533" width="2.8" height="15.0" fill="rgb(233,167,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="577.5" y="1269" width="2.8" height="15.0" fill="rgb(251,110,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="580.52" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_message_unlock(raiden.message_handler) (8 samples, 1.90%)</title><rect x="285.3" y="1317" width="22.5" height="15.0" fill="rgb(247,228,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="288.33" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >h..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (1 samples, 0.24%)</title><rect x="417.4" y="1029" width="2.8" height="15.0" fill="rgb(214,154,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="420.38" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_and_track_state_change(raiden.raiden_service) (3 samples, 0.71%)</title><rect x="268.5" y="1301" width="8.4" height="15.0" fill="rgb(245,6,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="271.48" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="209.5" y="917" width="2.8" height="15.0" fill="rgb(228,171,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapped(web3.utils.decorators) (1 samples, 0.24%)</title><rect x="594.4" y="1205" width="2.8" height="15.0" fill="rgb(210,164,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="597.38" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="344.3" y="1205" width="2.8" height="15.0" fill="rgb(241,125,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="347.33" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>bind(inspect) (1 samples, 0.24%)</title><rect x="83.0" y="453" width="2.9" height="15.0" fill="rgb(214,119,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="86.05" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="170.1" y="1285" width="2.9" height="15.0" fill="rgb(249,146,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="173.14" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (2 samples, 0.48%)</title><rect x="378.0" y="821" width="5.7" height="15.0" fill="rgb(241,151,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="381.05" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>detail(raiden.network.proxies.payment_channel) (1 samples, 0.24%)</title><rect x="414.6" y="1317" width="2.8" height="15.0" fill="rgb(229,91,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="417.57" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseImpl(pkg_resources._vendor.pyparsing) (4 samples, 0.95%)</title><rect x="1142.2" y="917" width="11.3" height="15.0" fill="rgb(249,36,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1145.24" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="111.1" y="501" width="2.9" height="15.0" fill="rgb(216,148,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="114.14" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (3 samples, 0.71%)</title><rect x="243.2" y="1141" width="8.4" height="15.0" fill="rgb(228,134,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recursive_map(web3.utils.formatters) (1 samples, 0.24%)</title><rect x="173.0" y="1205" width="2.8" height="15.0" fill="rgb(242,213,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="175.95" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (3 samples, 0.71%)</title><rect x="201.0" y="933" width="8.5" height="15.0" fill="rgb(240,141,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="204.05" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_and_track_state_change(raiden.raiden_service) (1 samples, 0.24%)</title><rect x="189.8" y="1365" width="2.8" height="15.0" fill="rgb(252,8,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="192.81" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseImpl(pkg_resources._vendor.pyparsing) (5 samples, 1.19%)</title><rect x="1105.7" y="837" width="14.1" height="15.0" fill="rgb(230,81,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1108.71" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.contract) (1 samples, 0.24%)</title><rect x="122.4" y="517" width="2.8" height="15.0" fill="rgb(219,213,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="125.38" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="15.6" y="405" width="2.8" height="15.0" fill="rgb(240,48,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__contains__(pkg_resources) (3 samples, 0.71%)</title><rect x="35.3" y="757" width="8.4" height="15.0" fill="rgb(209,75,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="38.29" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="133.6" y="421" width="2.8" height="15.0" fill="rgb(226,4,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="136.62" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>fillfixtures(_pytest.fixtures) (30 samples, 7.14%)</title><rect x="69.0" y="933" width="84.3" height="15.0" fill="rgb(214,144,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fillfixtu..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>hexstr_if_str(eth_utils.conversions) (2 samples, 0.48%)</title><rect x="1027.0" y="1125" width="5.7" height="15.0" fill="rgb(237,144,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1030.05" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="29.7" y="661" width="2.8" height="15.0" fill="rgb(220,107,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="580.3" y="1285" width="2.8" height="15.0" fill="rgb(206,141,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="583.33" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>emit(logging) (1 samples, 0.24%)</title><rect x="232.0" y="1205" width="2.8" height="15.0" fill="rgb(213,156,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="234.95" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (21 samples, 5.00%)</title><rect x="439.9" y="1125" width="59.0" height="15.0" fill="rgb(208,18,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="442.86" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >middle..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (1 samples, 0.24%)</title><rect x="94.3" y="341" width="2.8" height="15.0" fill="rgb(248,139,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="350.0" y="1125" width="2.8" height="15.0" fill="rgb(251,177,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="352.95" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="52.1" y="389" width="2.9" height="15.0" fill="rgb(212,42,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="55.14" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__instancecheck__(abc) (1 samples, 0.24%)</title><rect x="428.6" y="1093" width="2.8" height="15.0" fill="rgb(238,12,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="431.62" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>emit(logging.handlers) (1 samples, 0.24%)</title><rect x="341.5" y="1269" width="2.8" height="15.0" fill="rgb(217,197,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="344.52" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call_contract_function(web3.contract) (1 samples, 0.24%)</title><rect x="80.2" y="645" width="2.8" height="15.0" fill="rgb(231,136,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (2 samples, 0.48%)</title><rect x="49.3" y="629" width="5.7" height="15.0" fill="rgb(217,18,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="52.33" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapped(web3.utils.decorators) (1 samples, 0.24%)</title><rect x="173.0" y="1221" width="2.8" height="15.0" fill="rgb(216,155,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="175.95" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle(logging) (1 samples, 0.24%)</title><rect x="192.6" y="1237" width="2.8" height="15.0" fill="rgb(214,161,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="195.62" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="94.3" y="405" width="2.8" height="15.0" fill="rgb(225,48,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="71.8" y="581" width="2.8" height="15.0" fill="rgb(216,100,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="74.81" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>prepare_cookies(requests.models) (1 samples, 0.24%)</title><rect x="566.3" y="1029" width="2.8" height="15.0" fill="rgb(223,118,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="414.6" y="1173" width="2.8" height="15.0" fill="rgb(233,74,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="417.57" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="12.8" y="709" width="2.8" height="15.0" fill="rgb(241,182,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (1 samples, 0.24%)</title><rect x="420.2" y="981" width="2.8" height="15.0" fill="rgb(240,208,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="423.19" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (5 samples, 1.19%)</title><rect x="375.2" y="965" width="14.1" height="15.0" fill="rgb(230,78,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="378.24" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>shutdown_apps_and_cleanup_tasks(raiden.tests.utils.tests) (1 samples, 0.24%)</title><rect x="156.1" y="837" width="2.8" height="15.0" fill="rgb(228,158,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="159.10" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="580.3" y="1221" width="2.8" height="15.0" fill="rgb(239,36,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="583.33" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="144.9" y="437" width="2.8" height="15.0" fill="rgb(241,19,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>close(http.client) (1 samples, 0.24%)</title><rect x="549.4" y="1253" width="2.8" height="15.0" fill="rgb(213,3,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="552.43" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__new__(web3.utils.datatypes) (1 samples, 0.24%)</title><rect x="119.6" y="549" width="2.8" height="15.0" fill="rgb(243,225,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="122.57" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>begin(http.client) (1 samples, 0.24%)</title><rect x="66.2" y="629" width="2.8" height="15.0" fill="rgb(251,45,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="69.19" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>dumps(json) (1 samples, 0.24%)</title><rect x="305.0" y="1205" width="2.8" height="15.0" fill="rgb(205,7,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="308.00" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(urllib3.connectionpool) (2 samples, 0.48%)</title><rect x="237.6" y="885" width="5.6" height="15.0" fill="rgb(239,192,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>generate_cache_key(web3.utils.caching) (1 samples, 0.24%)</title><rect x="355.6" y="1029" width="2.8" height="15.0" fill="rgb(240,0,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="358.57" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(os) (1 samples, 0.24%)</title><rect x="184.2" y="1173" width="2.8" height="15.0" fill="rgb(223,139,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="187.19" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__new__(hexbytes.main) (2 samples, 0.48%)</title><rect x="1027.0" y="1141" width="5.7" height="15.0" fill="rgb(220,31,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1030.05" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="260.0" y="613" width="2.9" height="15.0" fill="rgb(215,59,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="260.0" y="677" width="2.9" height="15.0" fill="rgb(250,33,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_bytes(eth_utils.types) (1 samples, 0.24%)</title><rect x="439.9" y="1013" width="2.8" height="15.0" fill="rgb(217,75,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="442.86" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (2 samples, 0.48%)</title><rect x="237.6" y="1189" width="5.6" height="15.0" fill="rgb(232,33,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>reqs_for_extra(pkg_resources) (8 samples, 1.90%)</title><rect x="1164.7" y="1301" width="22.5" height="15.0" fill="rgb(226,180,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1167.71" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >r..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="260.0" y="869" width="2.9" height="15.0" fill="rgb(209,34,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_receive_unlock(raiden.transfer.node) (2 samples, 0.48%)</title><rect x="299.4" y="1205" width="5.6" height="15.0" fill="rgb(244,88,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="302.38" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(collections.abc) (1 samples, 0.24%)</title><rect x="136.4" y="245" width="2.8" height="15.0" fill="rgb(220,16,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="139.43" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>dumps(json) (1 samples, 0.24%)</title><rect x="285.3" y="1237" width="2.8" height="15.0" fill="rgb(242,81,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="288.33" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_get_active_fixturedef(_pytest.fixtures) (3 samples, 0.71%)</title><rect x="144.9" y="741" width="8.4" height="15.0" fill="rgb(209,116,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parseNoCache(pkg_resources._vendor.pyparsing) (14 samples, 3.33%)</title><rect x="1097.3" y="1045" width="39.3" height="15.0" fill="rgb(228,174,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1100.29" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_pa..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_and_track_state_change(raiden.raiden_service) (1 samples, 0.24%)</title><rect x="1024.2" y="1365" width="2.8" height="15.0" fill="rgb(208,148,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.24" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (2 samples, 0.48%)</title><rect x="49.3" y="597" width="5.7" height="15.0" fill="rgb(252,52,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="52.33" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__call__(pluggy.hooks) (55 samples, 13.10%)</title><rect x="10.0" y="1205" width="154.5" height="15.0" fill="rgb(254,21,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__call__(pluggy.hoo..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (4 samples, 0.95%)</title><rect x="257.2" y="1237" width="11.3" height="15.0" fill="rgb(232,213,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="260.24" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_chain_init(raiden.transfer.node) (1 samples, 0.24%)</title><rect x="1046.7" y="1317" width="2.8" height="15.0" fill="rgb(232,229,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1049.71" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>header_source_parse(email._policybase) (1 samples, 0.24%)</title><rect x="1080.4" y="1189" width="2.8" height="15.0" fill="rgb(211,207,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1083.43" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (2 samples, 0.48%)</title><rect x="276.9" y="1237" width="5.6" height="15.0" fill="rgb(228,60,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseImpl(pkg_resources._vendor.pyparsing) (1 samples, 0.24%)</title><rect x="1125.4" y="885" width="2.8" height="15.0" fill="rgb(254,48,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1128.38" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_bind(inspect) (1 samples, 0.24%)</title><rect x="119.6" y="501" width="2.8" height="15.0" fill="rgb(243,161,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="122.57" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="167.3" y="1093" width="2.8" height="15.0" fill="rgb(240,149,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_partial_args(toolz.functoolz) (1 samples, 0.24%)</title><rect x="122.4" y="453" width="2.8" height="15.0" fill="rgb(227,76,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="125.38" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (2 samples, 0.48%)</title><rect x="271.3" y="853" width="5.6" height="15.0" fill="rgb(205,158,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>fromWeb3(ens.main) (1 samples, 0.24%)</title><rect x="83.0" y="597" width="2.9" height="15.0" fill="rgb(250,145,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="86.05" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(collections.abc) (1 samples, 0.24%)</title><rect x="411.8" y="933" width="2.8" height="15.0" fill="rgb(238,82,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="344.3" y="1173" width="2.8" height="15.0" fill="rgb(222,164,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="347.33" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (2 samples, 0.48%)</title><rect x="1027.0" y="1269" width="5.7" height="15.0" fill="rgb(228,152,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1030.05" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>remove_0x_prefix(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="600.0" y="1109" width="2.8" height="15.0" fill="rgb(213,192,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="603.00" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>map_collection(web3.utils.formatters) (1 samples, 0.24%)</title><rect x="173.0" y="1253" width="2.8" height="15.0" fill="rgb(205,79,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="175.95" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_bind(inspect) (1 samples, 0.24%)</title><rect x="128.0" y="389" width="2.8" height="15.0" fill="rgb(248,83,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="131.00" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parseNoCache(pkg_resources._vendor.pyparsing) (7 samples, 1.67%)</title><rect x="1102.9" y="853" width="19.7" height="15.0" fill="rgb(216,13,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1105.90" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="580.3" y="1317" width="2.8" height="15.0" fill="rgb(239,91,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="583.33" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="260.0" y="645" width="2.9" height="15.0" fill="rgb(249,225,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>emit(_pytest.logging) (1 samples, 0.24%)</title><rect x="338.7" y="1269" width="2.8" height="15.0" fill="rgb(224,110,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="341.71" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_coerce_args(urllib.parse) (1 samples, 0.24%)</title><rect x="566.3" y="965" width="2.8" height="15.0" fill="rgb(235,131,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>hexstr_if_str(eth_utils.conversions) (1 samples, 0.24%)</title><rect x="521.3" y="1141" width="2.8" height="15.0" fill="rgb(234,45,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="524.33" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="15.6" y="549" width="2.8" height="15.0" fill="rgb(236,76,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="130.8" y="389" width="2.8" height="15.0" fill="rgb(242,79,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="133.81" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="414.6" y="1077" width="2.8" height="15.0" fill="rgb(214,33,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="417.57" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>should_bypass_proxies(requests.utils) (1 samples, 0.24%)</title><rect x="32.5" y="421" width="2.8" height="15.0" fill="rgb(248,76,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="35.48" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>set_raw(email.message) (1 samples, 0.24%)</title><rect x="69.0" y="133" width="2.8" height="15.0" fill="rgb(240,57,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(pkg_resources.extern.packaging.markers) (1 samples, 0.24%)</title><rect x="1161.9" y="1221" width="2.8" height="15.0" fill="rgb(236,124,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1164.90" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>bind_partial(inspect) (1 samples, 0.24%)</title><rect x="133.6" y="373" width="2.8" height="15.0" fill="rgb(216,196,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="136.62" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>release(platform) (2 samples, 0.48%)</title><rect x="1178.8" y="1253" width="5.6" height="15.0" fill="rgb(252,19,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1181.76" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="260.0" y="981" width="2.9" height="15.0" fill="rgb(230,57,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>format(logging) (1 samples, 0.24%)</title><rect x="423.0" y="1125" width="2.8" height="15.0" fill="rgb(236,186,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="426.00" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>log_and_dispatch(raiden.storage.wal) (1 samples, 0.24%)</title><rect x="344.3" y="1381" width="2.8" height="15.0" fill="rgb(221,89,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="347.33" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="80.2" y="405" width="2.8" height="15.0" fill="rgb(247,215,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="55.0" y="517" width="2.8" height="15.0" fill="rgb(208,147,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (2 samples, 0.48%)</title><rect x="237.6" y="1125" width="5.6" height="15.0" fill="rgb(248,107,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_bind(inspect) (1 samples, 0.24%)</title><rect x="147.7" y="341" width="2.8" height="15.0" fill="rgb(210,28,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="150.67" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>post(requests.sessions) (1 samples, 0.24%)</title><rect x="167.3" y="1013" width="2.8" height="15.0" fill="rgb(226,203,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="209.5" y="997" width="2.8" height="15.0" fill="rgb(216,167,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>poll(raiden.network.rpc.client) (1 samples, 0.24%)</title><rect x="602.8" y="1349" width="2.8" height="15.0" fill="rgb(214,181,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="605.81" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_dict(raiden.transfer.state_change) (1 samples, 0.24%)</title><rect x="189.8" y="1253" width="2.8" height="15.0" fill="rgb(224,122,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="192.81" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>resolve(pkg_resources) (3 samples, 0.71%)</title><rect x="35.3" y="773" width="8.4" height="15.0" fill="rgb(239,110,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="38.29" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>connection_from_url(urllib3.poolmanager) (1 samples, 0.24%)</title><rect x="577.5" y="997" width="2.8" height="15.0" fill="rgb(236,12,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="580.52" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_teardown_towards(_pytest.runner) (4 samples, 0.95%)</title><rect x="153.3" y="949" width="11.2" height="15.0" fill="rgb(237,120,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="156.29" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(urllib3.connectionpool) (1 samples, 0.24%)</title><rect x="12.8" y="405" width="2.8" height="15.0" fill="rgb(245,86,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parse_headers(http.client) (1 samples, 0.24%)</title><rect x="484.8" y="949" width="2.8" height="15.0" fill="rgb(227,215,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="487.81" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parse_headers(http.client) (1 samples, 0.24%)</title><rect x="66.2" y="613" width="2.8" height="15.0" fill="rgb(242,138,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="69.19" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>contract(web3.eth) (1 samples, 0.24%)</title><rect x="108.3" y="613" width="2.8" height="15.0" fill="rgb(227,66,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="111.33" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>encode(json.encoder) (1 samples, 0.24%)</title><rect x="341.5" y="1141" width="2.8" height="15.0" fill="rgb(236,90,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="344.52" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="209.5" y="949" width="2.8" height="15.0" fill="rgb(243,127,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (1 samples, 0.24%)</title><rect x="150.5" y="325" width="2.8" height="15.0" fill="rgb(247,183,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="153.48" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (1 samples, 0.24%)</title><rect x="411.8" y="1157" width="2.8" height="15.0" fill="rgb(254,18,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="597.2" y="1269" width="2.8" height="15.0" fill="rgb(233,110,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="600.19" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deploy_secret_registry_and_return_address(raiden.tests.integration.fixtures.smartcontracts) (2 samples, 0.48%)</title><rect x="147.7" y="597" width="5.6" height="15.0" fill="rgb(219,121,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="150.67" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (5 samples, 1.19%)</title><rect x="375.2" y="949" width="14.1" height="15.0" fill="rgb(205,3,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="378.24" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_multicall(pluggy.callers) (55 samples, 13.10%)</title><rect x="10.0" y="1157" width="154.5" height="15.0" fill="rgb(237,2,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_multicall(pluggy.c..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__new__(web3.utils.datatypes) (1 samples, 0.24%)</title><rect x="619.7" y="1221" width="2.8" height="15.0" fill="rgb(224,132,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="622.67" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_checksum_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="251.6" y="1157" width="2.8" height="15.0" fill="rgb(228,7,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="254.62" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="71.8" y="517" width="2.8" height="15.0" fill="rgb(234,31,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="74.81" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>iterencode(json.encoder) (1 samples, 0.24%)</title><rect x="285.3" y="1205" width="2.8" height="15.0" fill="rgb(229,108,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="288.33" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (7 samples, 1.67%)</title><rect x="350.0" y="1269" width="19.6" height="15.0" fill="rgb(242,110,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="352.95" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="167.3" y="1141" width="2.8" height="15.0" fill="rgb(232,75,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="257.2" y="997" width="2.8" height="15.0" fill="rgb(251,50,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="260.24" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><genexpr>(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="285.3" y="1077" width="2.8" height="15.0" fill="rgb(223,4,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="288.33" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="91.5" y="597" width="2.8" height="15.0" fill="rgb(248,76,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="15.6" y="261" width="2.8" height="15.0" fill="rgb(232,201,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parsestr(email.parser) (1 samples, 0.24%)</title><rect x="139.2" y="133" width="2.8" height="15.0" fill="rgb(226,172,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_proxy_to_logger(structlog._base) (2 samples, 0.48%)</title><rect x="232.0" y="1317" width="5.6" height="15.0" fill="rgb(224,126,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="234.95" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapper(pkg_resources._vendor.pyparsing) (6 samples, 1.43%)</title><rect x="1136.6" y="1061" width="16.9" height="15.0" fill="rgb(236,77,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1139.62" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>format(structlog.stdlib) (1 samples, 0.24%)</title><rect x="307.8" y="1173" width="2.8" height="15.0" fill="rgb(211,56,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="310.81" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><genexpr>(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="350.0" y="1061" width="2.8" height="15.0" fill="rgb(244,6,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="352.95" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>stop(mirakuru.base) (1 samples, 0.24%)</title><rect x="153.3" y="757" width="2.8" height="15.0" fill="rgb(233,170,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="156.29" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="15.6" y="533" width="2.8" height="15.0" fill="rgb(250,161,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_has_one_val(eth_utils.decorators) (1 samples, 0.24%)</title><rect x="614.0" y="981" width="2.9" height="15.0" fill="rgb(250,96,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="617.05" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (2 samples, 0.48%)</title><rect x="49.3" y="517" width="5.7" height="15.0" fill="rgb(252,35,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="52.33" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>prepare_headers(requests.models) (1 samples, 0.24%)</title><rect x="473.6" y="1013" width="2.8" height="15.0" fill="rgb(241,111,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="476.57" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.adapters) (1 samples, 0.24%)</title><rect x="91.5" y="325" width="2.8" height="15.0" fill="rgb(214,95,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>contract(web3.eth) (1 samples, 0.24%)</title><rect x="133.6" y="565" width="2.8" height="15.0" fill="rgb(243,197,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="136.62" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="1024.2" y="1141" width="2.8" height="15.0" fill="rgb(231,93,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.24" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (5 samples, 1.19%)</title><rect x="209.5" y="1077" width="14.0" height="15.0" fill="rgb(206,174,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parseNoCache(pkg_resources._vendor.pyparsing) (3 samples, 0.71%)</title><rect x="1145.0" y="773" width="8.5" height="15.0" fill="rgb(230,76,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1148.05" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recursive_map(web3.utils.formatters) (2 samples, 0.48%)</title><rect x="431.4" y="917" width="5.6" height="15.0" fill="rgb(205,14,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="434.43" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(ens.main) (1 samples, 0.24%)</title><rect x="85.9" y="581" width="2.8" height="15.0" fill="rgb(211,52,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="88.86" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="15.6" y="357" width="2.8" height="15.0" fill="rgb(251,173,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (4 samples, 0.95%)</title><rect x="55.0" y="661" width="11.2" height="15.0" fill="rgb(236,173,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (3 samples, 0.71%)</title><rect x="18.4" y="549" width="8.5" height="15.0" fill="rgb(225,1,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="21.43" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>register_secret(raiden.network.proxies.secret_registry) (2 samples, 0.48%)</title><rect x="167.3" y="1381" width="5.7" height="15.0" fill="rgb(245,147,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>dispatch(raiden.transfer.architecture) (1 samples, 0.24%)</title><rect x="344.3" y="1365" width="2.8" height="15.0" fill="rgb(243,220,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="347.33" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>encode(json.encoder) (1 samples, 0.24%)</title><rect x="226.3" y="1205" width="2.8" height="15.0" fill="rgb(221,113,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="229.33" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="167.3" y="1061" width="2.8" height="15.0" fill="rgb(231,91,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wait_for_usable_channel(raiden.tests.utils.network) (1 samples, 0.24%)</title><rect x="88.7" y="709" width="2.8" height="15.0" fill="rgb(209,94,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="91.67" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parseNoCache(pkg_resources._vendor.pyparsing) (4 samples, 0.95%)</title><rect x="1142.2" y="933" width="11.3" height="15.0" fill="rgb(206,20,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1145.24" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>new_contract_proxy(raiden.network.rpc.client) (1 samples, 0.24%)</title><rect x="133.6" y="597" width="2.8" height="15.0" fill="rgb(221,71,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="136.62" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_bind(inspect) (1 samples, 0.24%)</title><rect x="105.5" y="389" width="2.8" height="15.0" fill="rgb(220,70,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="108.52" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>format(logging) (1 samples, 0.24%)</title><rect x="341.5" y="1221" width="2.8" height="15.0" fill="rgb(210,117,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="344.52" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (13 samples, 3.10%)</title><rect x="375.2" y="1301" width="36.6" height="15.0" fill="rgb(213,54,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="378.24" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >dee..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_normalized_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="282.5" y="1109" width="2.8" height="15.0" fill="rgb(205,37,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="285.52" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="55.0" y="149" width="2.8" height="15.0" fill="rgb(226,227,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="209.5" y="565" width="2.8" height="15.0" fill="rgb(225,191,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deploy_solidity_contract(raiden.network.rpc.client) (3 samples, 0.71%)</title><rect x="99.9" y="645" width="8.4" height="15.0" fill="rgb(205,223,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="102.90" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (2 samples, 0.48%)</title><rect x="276.9" y="1061" width="5.6" height="15.0" fill="rgb(206,225,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_bind(inspect) (1 samples, 0.24%)</title><rect x="125.2" y="405" width="2.8" height="15.0" fill="rgb(248,189,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="128.19" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseImpl(pkg_resources._vendor.pyparsing) (26 samples, 6.19%)</title><rect x="1088.9" y="1221" width="73.0" height="15.0" fill="rgb(232,169,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1091.86" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >parseImp..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_valid_args(toolz.functoolz) (1 samples, 0.24%)</title><rect x="142.0" y="405" width="2.9" height="15.0" fill="rgb(205,82,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="145.05" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>encode_transaction_data(web3.utils.contracts) (1 samples, 0.24%)</title><rect x="594.4" y="1269" width="2.8" height="15.0" fill="rgb(207,112,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="597.38" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="417.4" y="1269" width="2.8" height="15.0" fill="rgb(231,46,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="420.38" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_channel_state(raiden.blockchain.state) (3 samples, 0.71%)</title><rect x="411.8" y="1333" width="8.4" height="15.0" fill="rgb(213,174,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(os) (1 samples, 0.24%)</title><rect x="411.8" y="917" width="2.8" height="15.0" fill="rgb(228,118,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="420.2" y="1157" width="2.8" height="15.0" fill="rgb(251,156,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="423.19" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (2 samples, 0.48%)</title><rect x="608.4" y="1301" width="5.6" height="15.0" fill="rgb(252,5,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="611.43" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>post(requests.sessions) (1 samples, 0.24%)</title><rect x="69.0" y="373" width="2.8" height="15.0" fill="rgb(207,125,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>start(raiden.raiden_service) (15 samples, 3.57%)</title><rect x="26.9" y="837" width="42.1" height="15.0" fill="rgb(250,172,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="29.86" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sta..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="136.4" y="565" width="2.8" height="15.0" fill="rgb(232,101,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="139.43" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="55.0" y="245" width="2.8" height="15.0" fill="rgb(213,105,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>encode(os) (1 samples, 0.24%)</title><rect x="468.0" y="933" width="2.8" height="15.0" fill="rgb(218,55,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="470.95" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>content(requests.models) (1 samples, 0.24%)</title><rect x="549.4" y="1317" width="2.8" height="15.0" fill="rgb(220,185,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="552.43" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_environ_proxies(requests.utils) (9 samples, 2.14%)</title><rect x="445.5" y="1029" width="25.3" height="15.0" fill="rgb(247,142,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="448.48" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >g..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_send_raw(raiden.network.transport.matrix.transport) (6 samples, 1.43%)</title><rect x="321.9" y="1397" width="16.8" height="15.0" fill="rgb(235,182,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="324.86" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (1 samples, 0.24%)</title><rect x="170.1" y="1045" width="2.9" height="15.0" fill="rgb(232,165,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="173.14" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pack_data(raiden.utils.signing) (1 samples, 0.24%)</title><rect x="173.0" y="1317" width="2.8" height="15.0" fill="rgb(224,189,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="175.95" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>encode_transaction_data(web3.utils.contracts) (1 samples, 0.24%)</title><rect x="1032.7" y="1237" width="2.8" height="15.0" fill="rgb(225,4,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1035.67" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="288.1" y="485" width="2.9" height="15.0" fill="rgb(209,103,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_register_block_for_secrethash(raiden.network.proxies.secret_registry) (1 samples, 0.24%)</title><rect x="167.3" y="1333" width="2.8" height="15.0" fill="rgb(248,112,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="32.5" y="613" width="2.8" height="15.0" fill="rgb(232,119,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="35.48" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="597.2" y="1253" width="2.8" height="15.0" fill="rgb(246,103,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="600.19" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="29.7" y="389" width="2.8" height="15.0" fill="rgb(222,225,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call_fixture_func(_pytest.fixtures) (3 samples, 0.71%)</title><rect x="144.9" y="613" width="8.4" height="15.0" fill="rgb(245,194,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (2 samples, 0.48%)</title><rect x="608.4" y="1093" width="5.6" height="15.0" fill="rgb(229,224,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="611.43" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="91.5" y="501" width="2.8" height="15.0" fill="rgb(211,36,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><lambda>(pkg_resources.extern.packaging.markers) (1 samples, 0.24%)</title><rect x="1119.8" y="821" width="2.8" height="15.0" fill="rgb(212,180,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1122.76" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (1 samples, 0.24%)</title><rect x="577.5" y="1253" width="2.8" height="15.0" fill="rgb(215,177,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="580.52" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (2 samples, 0.48%)</title><rect x="237.6" y="949" width="5.6" height="15.0" fill="rgb(245,59,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>state_transition(raiden.transfer.node) (2 samples, 0.48%)</title><rect x="299.4" y="1237" width="5.6" height="15.0" fill="rgb(251,14,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="302.38" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="257.2" y="965" width="2.8" height="15.0" fill="rgb(231,110,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="260.24" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>on_raiden_event(raiden.raiden_event_handler) (7 samples, 1.67%)</title><rect x="167.3" y="1413" width="19.7" height="15.0" fill="rgb(239,142,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_call_parse(email.feedparser) (5 samples, 1.19%)</title><rect x="1069.2" y="1237" width="14.0" height="15.0" fill="rgb(249,167,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1072.19" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recursive_map(web3.utils.formatters) (1 samples, 0.24%)</title><rect x="366.8" y="1125" width="2.8" height="15.0" fill="rgb(210,45,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="369.81" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_call_parse(email.feedparser) (1 samples, 0.24%)</title><rect x="560.7" y="1173" width="2.8" height="15.0" fill="rgb(232,154,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="563.67" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_post_request(web3.utils.request) (1 samples, 0.24%)</title><rect x="71.8" y="373" width="2.8" height="15.0" fill="rgb(250,1,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="74.81" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (4 samples, 0.95%)</title><rect x="355.6" y="1141" width="11.2" height="15.0" fill="rgb(215,53,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="358.57" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(raiden.network.rpc.client) (1 samples, 0.24%)</title><rect x="144.9" y="581" width="2.8" height="15.0" fill="rgb(224,138,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="198.2" y="1045" width="2.8" height="15.0" fill="rgb(250,153,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="201.24" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recurse(web3.utils.formatters) (5 samples, 1.19%)</title><rect x="501.7" y="869" width="14.0" height="15.0" fill="rgb(252,7,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="504.67" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="206.7" y="437" width="2.8" height="15.0" fill="rgb(246,109,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="209.67" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="29.7" y="565" width="2.8" height="15.0" fill="rgb(248,161,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>decode(os) (1 samples, 0.24%)</title><rect x="543.8" y="1221" width="2.8" height="15.0" fill="rgb(239,3,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="546.81" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>inner(eth_utils.functional) (1 samples, 0.24%)</title><rect x="574.7" y="1333" width="2.8" height="15.0" fill="rgb(213,19,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="577.71" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>proxy_bypass_environment(urllib.request) (1 samples, 0.24%)</title><rect x="361.2" y="1029" width="2.8" height="15.0" fill="rgb(236,11,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="364.19" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>flush(logging) (1 samples, 0.24%)</title><rect x="195.4" y="1093" width="2.8" height="15.0" fill="rgb(220,97,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="198.43" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapped(web3.utils.decorators) (6 samples, 1.43%)</title><rect x="498.9" y="1061" width="16.8" height="15.0" fill="rgb(206,76,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="501.86" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="139.2" y="341" width="2.8" height="15.0" fill="rgb(211,64,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><genexpr>(web3.utils.caching) (1 samples, 0.24%)</title><rect x="355.6" y="1077" width="2.8" height="15.0" fill="rgb(239,0,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="358.57" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>keccak(eth_utils.crypto) (1 samples, 0.24%)</title><rect x="181.4" y="1317" width="2.8" height="15.0" fill="rgb(238,82,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="184.38" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>default(raiden.storage.serialize) (1 samples, 0.24%)</title><rect x="285.3" y="1189" width="2.8" height="15.0" fill="rgb(226,102,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="288.33" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="77.4" y="613" width="2.8" height="15.0" fill="rgb(229,20,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="80.43" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getCode(web3.eth) (1 samples, 0.24%)</title><rect x="583.1" y="1349" width="2.9" height="15.0" fill="rgb(254,194,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="586.14" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__exit__(contextlib) (1 samples, 0.24%)</title><rect x="80.2" y="245" width="2.8" height="15.0" fill="rgb(211,182,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="15.6" y="181" width="2.8" height="15.0" fill="rgb(248,8,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(ens.main) (1 samples, 0.24%)</title><rect x="142.0" y="501" width="2.9" height="15.0" fill="rgb(244,175,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="145.05" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>urlopen(urllib3.connectionpool) (1 samples, 0.24%)</title><rect x="114.0" y="293" width="2.8" height="15.0" fill="rgb(233,93,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="116.95" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="116.8" y="581" width="2.8" height="15.0" fill="rgb(216,186,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="119.76" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>validate(raiden.encoding.encoders) (1 samples, 0.24%)</title><rect x="232.0" y="965" width="2.8" height="15.0" fill="rgb(207,120,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="234.95" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (2 samples, 0.48%)</title><rect x="271.3" y="1221" width="5.6" height="15.0" fill="rgb(228,23,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_bind(inspect) (2 samples, 0.48%)</title><rect x="515.7" y="1045" width="5.6" height="15.0" fill="rgb(252,164,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="518.71" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_post_request(web3.utils.request) (2 samples, 0.48%)</title><rect x="237.6" y="981" width="5.6" height="15.0" fill="rgb(216,109,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="411.8" y="1173" width="2.8" height="15.0" fill="rgb(226,27,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="344.3" y="1285" width="2.8" height="15.0" fill="rgb(225,39,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="347.33" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="257.2" y="933" width="2.8" height="15.0" fill="rgb(211,52,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="260.24" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="209.5" y="437" width="2.8" height="15.0" fill="rgb(245,92,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_text(eth_utils.types) (1 samples, 0.24%)</title><rect x="425.8" y="1253" width="2.8" height="15.0" fill="rgb(220,89,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="428.81" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>endheaders(http.client) (2 samples, 0.48%)</title><rect x="487.6" y="949" width="5.6" height="15.0" fill="rgb(254,17,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="490.62" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>iterencode(json.encoder) (1 samples, 0.24%)</title><rect x="189.8" y="1285" width="2.8" height="15.0" fill="rgb(220,56,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="192.81" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="139.2" y="405" width="2.8" height="15.0" fill="rgb(221,125,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><genexpr>(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="504.5" y="709" width="2.8" height="15.0" fill="rgb(252,52,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="507.48" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>putrequest(http.client) (1 samples, 0.24%)</title><rect x="114.0" y="229" width="2.8" height="15.0" fill="rgb(235,25,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="116.95" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (4 samples, 0.95%)</title><rect x="15.6" y="565" width="11.3" height="15.0" fill="rgb(235,89,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>dumps(json) (1 samples, 0.24%)</title><rect x="251.6" y="1237" width="2.8" height="15.0" fill="rgb(238,14,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="254.62" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(urllib3.connectionpool) (1 samples, 0.24%)</title><rect x="333.1" y="1237" width="2.8" height="15.0" fill="rgb(218,188,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="336.10" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="91.5" y="613" width="2.8" height="15.0" fill="rgb(226,123,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="288.1" y="645" width="2.9" height="15.0" fill="rgb(210,21,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="114.0" y="565" width="2.8" height="15.0" fill="rgb(213,77,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="116.95" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="91.5" y="437" width="2.8" height="15.0" fill="rgb(233,140,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getresponse(http.client) (3 samples, 0.71%)</title><rect x="557.9" y="1269" width="8.4" height="15.0" fill="rgb(209,178,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="560.86" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (3 samples, 0.71%)</title><rect x="201.0" y="805" width="8.5" height="15.0" fill="rgb(219,67,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="204.05" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(os) (1 samples, 0.24%)</title><rect x="541.0" y="1269" width="2.8" height="15.0" fill="rgb(226,220,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="544.00" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wait_for_read(urllib3.util.wait) (1 samples, 0.24%)</title><rect x="167.3" y="901" width="2.8" height="15.0" fill="rgb(206,137,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>post(requests.sessions) (1 samples, 0.24%)</title><rect x="417.4" y="1045" width="2.8" height="15.0" fill="rgb(252,74,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="420.38" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="288.1" y="1013" width="2.9" height="15.0" fill="rgb(226,197,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="380.9" y="645" width="2.8" height="15.0" fill="rgb(224,202,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="383.86" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="260.0" y="661" width="2.9" height="15.0" fill="rgb(210,187,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>connection_from_pool_key(urllib3.poolmanager) (1 samples, 0.24%)</title><rect x="476.4" y="949" width="2.8" height="15.0" fill="rgb(235,112,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="479.38" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="276.9" y="933" width="2.8" height="15.0" fill="rgb(228,137,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__new__(hexbytes.main) (1 samples, 0.24%)</title><rect x="77.4" y="517" width="2.8" height="15.0" fill="rgb(228,211,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="80.43" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>format(logging) (1 samples, 0.24%)</title><rect x="234.8" y="1189" width="2.8" height="15.0" fill="rgb(233,180,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="237.76" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (5 samples, 1.19%)</title><rect x="375.2" y="917" width="14.1" height="15.0" fill="rgb(230,113,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="378.24" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>set_total_deposit(raiden.network.proxies.token_network) (11 samples, 2.62%)</title><rect x="583.1" y="1397" width="30.9" height="15.0" fill="rgb(230,32,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="586.14" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >se..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>debug(structlog.stdlib) (2 samples, 0.48%)</title><rect x="369.6" y="1333" width="5.6" height="15.0" fill="rgb(225,187,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="372.62" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>should_bypass_proxies(requests.utils) (1 samples, 0.24%)</title><rect x="1043.9" y="1013" width="2.8" height="15.0" fill="rgb(225,212,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1046.90" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parseNoCache(pkg_resources._vendor.pyparsing) (21 samples, 5.00%)</title><rect x="1094.5" y="1109" width="59.0" height="15.0" fill="rgb(251,148,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1097.48" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_parse..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>uname(platform) (1 samples, 0.24%)</title><rect x="1181.6" y="1237" width="2.8" height="15.0" fill="rgb(235,68,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1184.57" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="411.8" y="1269" width="2.8" height="15.0" fill="rgb(212,69,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ens(web3.main) (1 samples, 0.24%)</title><rect x="142.0" y="533" width="2.9" height="15.0" fill="rgb(248,62,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="145.05" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="128.0" y="581" width="2.8" height="15.0" fill="rgb(237,163,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="131.00" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getLogs(web3.eth) (1 samples, 0.24%)</title><rect x="32.5" y="741" width="2.8" height="15.0" fill="rgb(229,61,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="35.48" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>makeLogRecord(logging) (1 samples, 0.24%)</title><rect x="234.8" y="1157" width="2.8" height="15.0" fill="rgb(242,111,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="237.76" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>hex_decode(encodings.hex_codec) (1 samples, 0.24%)</title><rect x="510.1" y="677" width="2.8" height="15.0" fill="rgb(226,158,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="513.10" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_bind(inspect) (1 samples, 0.24%)</title><rect x="142.0" y="373" width="2.9" height="15.0" fill="rgb(218,106,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="145.05" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(urllib3.connectionpool) (1 samples, 0.24%)</title><rect x="114.0" y="277" width="2.8" height="15.0" fill="rgb(230,114,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="116.95" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="170.1" y="1141" width="2.9" height="15.0" fill="rgb(216,89,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="173.14" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>tryParse(pkg_resources._vendor.pyparsing) (1 samples, 0.24%)</title><rect x="1125.4" y="917" width="2.8" height="15.0" fill="rgb(227,161,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1128.38" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>map_collection(web3.utils.formatters) (1 samples, 0.24%)</title><rect x="501.7" y="821" width="2.8" height="15.0" fill="rgb(250,14,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="504.67" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>map_collection(web3.utils.formatters) (3 samples, 0.71%)</title><rect x="428.6" y="1109" width="8.4" height="15.0" fill="rgb(249,79,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="431.62" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (2 samples, 0.48%)</title><rect x="271.3" y="1013" width="5.6" height="15.0" fill="rgb(237,167,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_post_request(web3.utils.request) (1 samples, 0.24%)</title><rect x="566.3" y="1109" width="2.8" height="15.0" fill="rgb(241,69,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (1 samples, 0.24%)</title><rect x="114.0" y="389" width="2.8" height="15.0" fill="rgb(243,130,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="116.95" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="274.1" y="677" width="2.8" height="15.0" fill="rgb(215,168,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="277.10" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_hex(eth_utils.hexadecimal) (2 samples, 0.48%)</title><rect x="1027.0" y="1109" width="5.7" height="15.0" fill="rgb(235,93,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1030.05" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="243.2" y="917" width="2.8" height="15.0" fill="rgb(221,124,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="279.7" y="1013" width="2.8" height="15.0" fill="rgb(213,15,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="282.71" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (6 samples, 1.43%)</title><rect x="350.0" y="1237" width="16.8" height="15.0" fill="rgb(253,100,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="352.95" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>transact(raiden.network.rpc.smartcontract_proxy) (1 samples, 0.24%)</title><rect x="577.5" y="1397" width="2.8" height="15.0" fill="rgb(206,176,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="580.52" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="29.7" y="261" width="2.8" height="15.0" fill="rgb(232,217,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="614.0" y="1253" width="2.9" height="15.0" fill="rgb(229,199,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="617.05" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>emit(logging) (1 samples, 0.24%)</title><rect x="195.4" y="1109" width="2.8" height="15.0" fill="rgb(229,183,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="198.43" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (2 samples, 0.48%)</title><rect x="608.4" y="1269" width="5.6" height="15.0" fill="rgb(250,187,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="611.43" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (3 samples, 0.71%)</title><rect x="375.2" y="869" width="8.5" height="15.0" fill="rgb(251,161,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="378.24" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="71.8" y="597" width="2.8" height="15.0" fill="rgb(248,216,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="74.81" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapper(pkg_resources._vendor.pyparsing) (1 samples, 0.24%)</title><rect x="1128.2" y="933" width="2.8" height="15.0" fill="rgb(231,1,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1131.19" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>fromWeb3(ens.main) (1 samples, 0.24%)</title><rect x="74.6" y="597" width="2.8" height="15.0" fill="rgb(240,140,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="77.62" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (3 samples, 0.71%)</title><rect x="201.0" y="773" width="8.5" height="15.0" fill="rgb(211,55,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="204.05" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="276.9" y="901" width="2.8" height="15.0" fill="rgb(210,92,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_json_fallback_handler(structlog.processors) (1 samples, 0.24%)</title><rect x="341.5" y="1109" width="2.8" height="15.0" fill="rgb(233,42,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="344.52" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_hookexec(pluggy.manager) (21 samples, 5.00%)</title><rect x="10.0" y="933" width="59.0" height="15.0" fill="rgb(230,141,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_hooke..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__call__(eth_abi.encoding) (1 samples, 0.24%)</title><rect x="600.0" y="1237" width="2.8" height="15.0" fill="rgb(207,183,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="603.00" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_hex_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="285.3" y="1109" width="2.8" height="15.0" fill="rgb(236,183,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="288.33" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_assert_one_val(eth_utils.decorators) (1 samples, 0.24%)</title><rect x="352.8" y="1093" width="2.8" height="15.0" fill="rgb(212,133,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="355.76" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="285.3" y="1125" width="2.8" height="15.0" fill="rgb(249,98,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="288.33" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (1 samples, 0.24%)</title><rect x="566.3" y="1205" width="2.8" height="15.0" fill="rgb(227,79,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_data_to_sign(raiden.messages) (1 samples, 0.24%)</title><rect x="26.9" y="773" width="2.8" height="15.0" fill="rgb(205,31,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="29.86" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="414.6" y="1141" width="2.8" height="15.0" fill="rgb(231,118,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="417.57" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (2 samples, 0.48%)</title><rect x="271.3" y="1045" width="5.6" height="15.0" fill="rgb(239,87,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>check_registered(raiden.network.proxies.secret_registry) (2 samples, 0.48%)</title><rect x="237.6" y="1301" width="5.6" height="15.0" fill="rgb(241,140,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (4 samples, 0.95%)</title><rect x="355.6" y="1205" width="11.2" height="15.0" fill="rgb(231,86,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="358.57" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deploy_contract_web3(raiden.utils.smart_contracts) (3 samples, 0.71%)</title><rect x="99.9" y="661" width="8.4" height="15.0" fill="rgb(248,61,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="102.90" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(http.client) (1 samples, 0.24%)</title><rect x="605.6" y="997" width="2.8" height="15.0" fill="rgb(237,139,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="608.62" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recursive_map(web3.utils.formatters) (2 samples, 0.48%)</title><rect x="431.4" y="981" width="5.6" height="15.0" fill="rgb(210,51,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="434.43" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="414.6" y="997" width="2.8" height="15.0" fill="rgb(236,125,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="417.57" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="150.5" y="485" width="2.8" height="15.0" fill="rgb(247,14,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="153.48" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (3 samples, 0.71%)</title><rect x="201.0" y="917" width="8.5" height="15.0" fill="rgb(213,166,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="204.05" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>runtest(_pytest.python) (21 samples, 5.00%)</title><rect x="10.0" y="965" width="59.0" height="15.0" fill="rgb(245,14,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >runtes..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parsegen(email.feedparser) (1 samples, 0.24%)</title><rect x="69.0" y="165" width="2.8" height="15.0" fill="rgb(248,23,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="566.3" y="1285" width="2.8" height="15.0" fill="rgb(234,0,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="71.8" y="405" width="2.8" height="15.0" fill="rgb(216,88,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="74.81" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="288.1" y="1109" width="2.9" height="15.0" fill="rgb(208,39,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>transact(raiden.network.rpc.smartcontract_proxy) (2 samples, 0.48%)</title><rect x="111.1" y="645" width="5.7" height="15.0" fill="rgb(244,156,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="114.14" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>check_address_has_code(raiden.network.rpc.client) (1 samples, 0.24%)</title><rect x="77.4" y="677" width="2.8" height="15.0" fill="rgb(227,62,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="80.43" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (1 samples, 0.24%)</title><rect x="597.2" y="1093" width="2.8" height="15.0" fill="rgb(244,71,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="600.19" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_ident(gevent.thread) (1 samples, 0.24%)</title><rect x="535.4" y="1253" width="2.8" height="15.0" fill="rgb(222,66,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="538.38" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(collections.abc) (1 samples, 0.24%)</title><rect x="420.2" y="885" width="2.8" height="15.0" fill="rgb(235,20,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="423.19" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.sessions) (1 samples, 0.24%)</title><rect x="69.0" y="341" width="2.8" height="15.0" fill="rgb(249,146,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>helper(contextlib) (1 samples, 0.24%)</title><rect x="94.3" y="197" width="2.8" height="15.0" fill="rgb(228,101,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_valid_args(toolz.functoolz) (1 samples, 0.24%)</title><rect x="147.7" y="373" width="2.8" height="15.0" fill="rgb(245,114,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="150.67" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (1 samples, 0.24%)</title><rect x="184.2" y="1285" width="2.8" height="15.0" fill="rgb(246,27,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="187.19" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recurse(web3.utils.formatters) (6 samples, 1.43%)</title><rect x="498.9" y="1013" width="16.8" height="15.0" fill="rgb(254,15,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="501.86" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>feed(email.feedparser) (1 samples, 0.24%)</title><rect x="66.2" y="565" width="2.8" height="15.0" fill="rgb(251,133,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="69.19" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>format(structlog.stdlib) (1 samples, 0.24%)</title><rect x="324.7" y="1189" width="2.8" height="15.0" fill="rgb(227,35,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="327.67" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>map_collection(web3.utils.formatters) (6 samples, 1.43%)</title><rect x="498.9" y="965" width="16.8" height="15.0" fill="rgb(215,111,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="501.86" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (2 samples, 0.48%)</title><rect x="237.6" y="997" width="5.6" height="15.0" fill="rgb(234,95,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_get_sep(posixpath) (1 samples, 0.24%)</title><rect x="324.7" y="1125" width="2.8" height="15.0" fill="rgb(208,28,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="327.67" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (1 samples, 0.24%)</title><rect x="170.1" y="1093" width="2.9" height="15.0" fill="rgb(254,138,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="173.14" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="209.5" y="485" width="2.8" height="15.0" fill="rgb(216,163,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseImpl(pkg_resources._vendor.pyparsing) (24 samples, 5.71%)</title><rect x="1091.7" y="1157" width="67.4" height="15.0" fill="rgb(227,52,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1094.67" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >parseIm..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>callHandlers(logging) (2 samples, 0.48%)</title><rect x="232.0" y="1253" width="5.6" height="15.0" fill="rgb(215,210,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="234.95" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__str__(pkg_resources.extern.packaging.markers) (1 samples, 0.24%)</title><rect x="1161.9" y="1269" width="2.8" height="15.0" fill="rgb(226,194,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1164.90" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="243.2" y="949" width="2.8" height="15.0" fill="rgb(236,209,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="116.8" y="517" width="2.8" height="15.0" fill="rgb(221,79,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="119.76" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_send(raiden.network.transport.matrix.client) (1 samples, 0.24%)</title><rect x="1187.2" y="1349" width="2.8" height="15.0" fill="rgb(224,177,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.19" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>stream(urllib3.response) (1 samples, 0.24%)</title><rect x="549.4" y="1285" width="2.8" height="15.0" fill="rgb(231,141,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="552.43" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="15.6" y="341" width="2.8" height="15.0" fill="rgb(224,68,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseImpl(pkg_resources._vendor.pyparsing) (9 samples, 2.14%)</title><rect x="1102.9" y="933" width="25.3" height="15.0" fill="rgb(224,96,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1105.90" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >p..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>flush(http.client) (1 samples, 0.24%)</title><rect x="549.4" y="1237" width="2.8" height="15.0" fill="rgb(222,93,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="552.43" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getresponse(http.client) (2 samples, 0.48%)</title><rect x="482.0" y="981" width="5.6" height="15.0" fill="rgb(242,148,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="485.00" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (2 samples, 0.48%)</title><rect x="237.6" y="1205" width="5.6" height="15.0" fill="rgb(223,129,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>urlparse(urllib.parse) (1 samples, 0.24%)</title><rect x="566.3" y="981" width="2.8" height="15.0" fill="rgb(223,147,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__call__(structlog.processors) (1 samples, 0.24%)</title><rect x="341.5" y="1173" width="2.8" height="15.0" fill="rgb(217,213,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="344.52" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_native_string(requests._internal_utils) (1 samples, 0.24%)</title><rect x="473.6" y="997" width="2.8" height="15.0" fill="rgb(254,210,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="476.57" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (1 samples, 0.24%)</title><rect x="566.3" y="1077" width="2.8" height="15.0" fill="rgb(242,225,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="29.7" y="629" width="2.8" height="15.0" fill="rgb(213,40,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="139.2" y="373" width="2.8" height="15.0" fill="rgb(251,196,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><genexpr>(raiden.network.transport.matrix.transport) (1 samples, 0.24%)</title><rect x="175.8" y="1333" width="2.8" height="15.0" fill="rgb(236,107,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="178.76" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="417.4" y="1253" width="2.8" height="15.0" fill="rgb(210,56,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="420.38" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>raiden_network(raiden.tests.integration.fixtures.raiden_network) (1 samples, 0.24%)</title><rect x="156.1" y="853" width="2.8" height="15.0" fill="rgb(222,200,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="159.10" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>settle_timeout(raiden.network.proxies.payment_channel) (1 samples, 0.24%)</title><rect x="571.9" y="1397" width="2.8" height="15.0" fill="rgb(223,91,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="574.90" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="414.6" y="1157" width="2.8" height="15.0" fill="rgb(223,166,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="417.57" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>inner(eth_utils.functional) (1 samples, 0.24%)</title><rect x="521.3" y="1221" width="2.8" height="15.0" fill="rgb(216,82,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="524.33" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>contract(web3.eth) (2 samples, 0.48%)</title><rect x="102.7" y="597" width="5.6" height="15.0" fill="rgb(249,27,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="105.71" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parsestr(email.parser) (2 samples, 0.48%)</title><rect x="560.7" y="1221" width="5.6" height="15.0" fill="rgb(241,108,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="563.67" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_event_data(web3.utils.events) (1 samples, 0.24%)</title><rect x="1041.1" y="1317" width="2.8" height="15.0" fill="rgb(250,227,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1044.10" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parse_headers(email.feedparser) (1 samples, 0.24%)</title><rect x="69.0" y="149" width="2.8" height="15.0" fill="rgb(216,68,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="1024.2" y="1077" width="2.8" height="15.0" fill="rgb(211,147,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.24" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>callHandlers(logging) (1 samples, 0.24%)</title><rect x="307.8" y="1269" width="2.8" height="15.0" fill="rgb(232,108,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="310.81" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>append(sre_parse) (1 samples, 0.24%)</title><rect x="1041.1" y="1125" width="2.8" height="15.0" fill="rgb(212,33,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1044.10" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.sessions) (1 samples, 0.24%)</title><rect x="602.8" y="1045" width="2.8" height="15.0" fill="rgb(247,36,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="605.81" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.contract) (1 samples, 0.24%)</title><rect x="128.0" y="469" width="2.8" height="15.0" fill="rgb(246,178,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="131.00" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sign(raiden.messages) (1 samples, 0.24%)</title><rect x="173.0" y="1365" width="2.8" height="15.0" fill="rgb(253,84,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="175.95" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>decode(os) (1 samples, 0.24%)</title><rect x="99.9" y="197" width="2.8" height="15.0" fill="rgb(209,155,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="102.90" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapped(web3.utils.decorators) (1 samples, 0.24%)</title><rect x="501.7" y="773" width="2.8" height="15.0" fill="rgb(222,165,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="504.67" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="150.5" y="421" width="2.8" height="15.0" fill="rgb(226,76,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="153.48" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="276.9" y="997" width="2.8" height="15.0" fill="rgb(228,0,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_and_track_state_change(raiden.raiden_service) (1 samples, 0.24%)</title><rect x="29.7" y="773" width="2.8" height="15.0" fill="rgb(238,176,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_compile(re) (1 samples, 0.24%)</title><rect x="1041.1" y="1237" width="2.8" height="15.0" fill="rgb(221,97,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1044.10" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>bind_partial(inspect) (2 samples, 0.48%)</title><rect x="515.7" y="1061" width="5.6" height="15.0" fill="rgb(211,152,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="518.71" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (4 samples, 0.95%)</title><rect x="198.2" y="1109" width="11.3" height="15.0" fill="rgb(211,189,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="201.24" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="274.1" y="661" width="2.8" height="15.0" fill="rgb(231,50,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="277.10" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (2 samples, 0.48%)</title><rect x="276.9" y="1109" width="5.6" height="15.0" fill="rgb(250,35,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_state_change(raiden.raiden_service) (1 samples, 0.24%)</title><rect x="423.0" y="1317" width="2.8" height="15.0" fill="rgb(231,64,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="426.00" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_atomic(copy) (1 samples, 0.24%)</title><rect x="24.0" y="501" width="2.9" height="15.0" fill="rgb(217,165,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="27.05" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__exit__(contextlib) (1 samples, 0.24%)</title><rect x="153.3" y="805" width="2.8" height="15.0" fill="rgb(212,229,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="156.29" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (2 samples, 0.48%)</title><rect x="271.3" y="773" width="5.6" height="15.0" fill="rgb(239,211,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>packed(raiden.messages) (1 samples, 0.24%)</title><rect x="175.8" y="1285" width="2.8" height="15.0" fill="rgb(251,229,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="178.76" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.sessions) (1 samples, 0.24%)</title><rect x="80.2" y="325" width="2.8" height="15.0" fill="rgb(238,74,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_post_request(web3.utils.request) (1 samples, 0.24%)</title><rect x="1043.9" y="1093" width="2.8" height="15.0" fill="rgb(213,47,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1046.90" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ens(web3.main) (1 samples, 0.24%)</title><rect x="108.3" y="581" width="2.8" height="15.0" fill="rgb(227,117,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="111.33" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (1 samples, 0.24%)</title><rect x="150.5" y="277" width="2.8" height="15.0" fill="rgb(227,169,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="153.48" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>contains(pkg_resources.extern.packaging.specifiers) (3 samples, 0.71%)</title><rect x="35.3" y="741" width="8.4" height="15.0" fill="rgb(251,108,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="38.29" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>read_chunked(urllib3.response) (1 samples, 0.24%)</title><rect x="549.4" y="1269" width="2.8" height="15.0" fill="rgb(244,33,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="552.43" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="29.7" y="405" width="2.8" height="15.0" fill="rgb(234,218,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>fromWeb3(ens.main) (2 samples, 0.48%)</title><rect x="586.0" y="1301" width="5.6" height="15.0" fill="rgb(236,6,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="588.95" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_post_request(web3.utils.request) (1 samples, 0.24%)</title><rect x="605.6" y="1109" width="2.8" height="15.0" fill="rgb(210,50,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="608.62" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_receive_delivered(raiden.network.transport.matrix.transport) (13 samples, 3.10%)</title><rect x="195.4" y="1365" width="36.6" height="15.0" fill="rgb(217,25,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="198.43" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_re..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="417.4" y="1189" width="2.8" height="15.0" fill="rgb(207,195,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="420.38" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>dumps(json) (1 samples, 0.24%)</title><rect x="282.5" y="1205" width="2.8" height="15.0" fill="rgb(253,77,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="285.52" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>header_fetch_parse(email._policybase) (1 samples, 0.24%)</title><rect x="557.9" y="1221" width="2.8" height="15.0" fill="rgb(251,49,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="560.86" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="257.2" y="949" width="2.8" height="15.0" fill="rgb(239,29,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="260.24" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>callHandlers(logging) (1 samples, 0.24%)</title><rect x="195.4" y="1173" width="2.8" height="15.0" fill="rgb(253,220,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="198.43" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="71.8" y="549" width="2.8" height="15.0" fill="rgb(237,30,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="74.81" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pack_data(raiden.utils.signing) (1 samples, 0.24%)</title><rect x="302.2" y="1061" width="2.8" height="15.0" fill="rgb(232,69,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="305.19" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parsegen(email.feedparser) (1 samples, 0.24%)</title><rect x="484.8" y="869" width="2.8" height="15.0" fill="rgb(247,208,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="487.81" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (9 samples, 2.14%)</title><rect x="198.2" y="1173" width="25.3" height="15.0" fill="rgb(235,59,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="201.24" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_environ_proxies(requests.utils) (1 samples, 0.24%)</title><rect x="1043.9" y="1029" width="2.8" height="15.0" fill="rgb(221,44,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1046.90" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.adapters) (1 samples, 0.24%)</title><rect x="66.2" y="693" width="2.8" height="15.0" fill="rgb(216,221,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="69.19" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>emit(logging.handlers) (1 samples, 0.24%)</title><rect x="423.0" y="1173" width="2.8" height="15.0" fill="rgb(227,106,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="426.00" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>map_collection(web3.utils.formatters) (1 samples, 0.24%)</title><rect x="569.1" y="1269" width="2.8" height="15.0" fill="rgb(226,95,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="572.10" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (1 samples, 0.24%)</title><rect x="602.8" y="1189" width="2.8" height="15.0" fill="rgb(220,206,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="605.81" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>should_bypass_proxies(requests.utils) (1 samples, 0.24%)</title><rect x="420.2" y="933" width="2.8" height="15.0" fill="rgb(225,100,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="423.19" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (4 samples, 0.95%)</title><rect x="257.2" y="1205" width="11.3" height="15.0" fill="rgb(226,169,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="260.24" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>map_to_typed_data(web3.utils.abi) (2 samples, 0.48%)</title><rect x="431.4" y="901" width="5.6" height="15.0" fill="rgb(244,154,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="434.43" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="46.5" y="581" width="2.8" height="15.0" fill="rgb(252,122,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="49.52" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="614.0" y="1237" width="2.9" height="15.0" fill="rgb(250,20,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="617.05" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>read(urllib3.response) (1 samples, 0.24%)</title><rect x="80.2" y="261" width="2.8" height="15.0" fill="rgb(210,28,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="209.5" y="469" width="2.8" height="15.0" fill="rgb(227,112,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(raiden.encoding.format) (1 samples, 0.24%)</title><rect x="341.5" y="1045" width="2.8" height="15.0" fill="rgb(212,8,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="344.52" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.contract) (1 samples, 0.24%)</title><rect x="83.0" y="629" width="2.9" height="15.0" fill="rgb(209,15,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="86.05" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="55.0" y="309" width="2.8" height="15.0" fill="rgb(227,72,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><genexpr>(web3.utils.caching) (1 samples, 0.24%)</title><rect x="355.6" y="1045" width="2.8" height="15.0" fill="rgb(217,136,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="358.57" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (2 samples, 0.48%)</title><rect x="276.9" y="1205" width="5.6" height="15.0" fill="rgb(239,133,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parsegen(email.feedparser) (5 samples, 1.19%)</title><rect x="1069.2" y="1221" width="14.0" height="15.0" fill="rgb(242,62,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1072.19" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="105.5" y="501" width="2.8" height="15.0" fill="rgb(254,88,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="108.52" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_environ_proxies(requests.utils) (1 samples, 0.24%)</title><rect x="150.5" y="245" width="2.8" height="15.0" fill="rgb(252,177,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="153.48" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>emit(logging) (1 samples, 0.24%)</title><rect x="195.4" y="1125" width="2.8" height="15.0" fill="rgb(211,87,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="198.43" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="114.0" y="581" width="2.8" height="15.0" fill="rgb(217,137,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="116.95" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__getitem__(os) (1 samples, 0.24%)</title><rect x="414.6" y="837" width="2.8" height="15.0" fill="rgb(224,175,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="417.57" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (1 samples, 0.24%)</title><rect x="32.5" y="597" width="2.8" height="15.0" fill="rgb(220,124,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="35.48" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>contract(web3.eth) (1 samples, 0.24%)</title><rect x="83.0" y="565" width="2.9" height="15.0" fill="rgb(217,171,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="86.05" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle(logging) (1 samples, 0.24%)</title><rect x="423.0" y="1189" width="2.8" height="15.0" fill="rgb(207,95,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="426.00" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>contract(web3.eth) (2 samples, 0.48%)</title><rect x="616.9" y="1365" width="5.6" height="15.0" fill="rgb(245,180,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="619.86" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>begin(http.client) (3 samples, 0.71%)</title><rect x="557.9" y="1253" width="8.4" height="15.0" fill="rgb(228,211,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="560.86" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getTransaction(web3.eth) (1 samples, 0.24%)</title><rect x="136.4" y="581" width="2.8" height="15.0" fill="rgb(206,100,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="139.43" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (1 samples, 0.24%)</title><rect x="71.8" y="389" width="2.8" height="15.0" fill="rgb(209,43,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="74.81" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>fromWeb3(ens.main) (1 samples, 0.24%)</title><rect x="102.7" y="549" width="2.8" height="15.0" fill="rgb(206,180,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="105.71" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>token_address(raiden.network.proxies.payment_channel) (1 samples, 0.24%)</title><rect x="420.2" y="1333" width="2.8" height="15.0" fill="rgb(208,138,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="423.19" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>closed(urllib3.response) (4 samples, 0.95%)</title><rect x="1013.0" y="1413" width="11.2" height="15.0" fill="rgb(218,72,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1016.00" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (2 samples, 0.48%)</title><rect x="608.4" y="1253" width="5.6" height="15.0" fill="rgb(220,36,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="611.43" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>putheader(http.client) (1 samples, 0.24%)</title><rect x="493.2" y="949" width="2.8" height="15.0" fill="rgb(252,180,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="496.24" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__call__(pluggy.hooks) (55 samples, 13.10%)</title><rect x="10.0" y="1045" width="154.5" height="15.0" fill="rgb(241,148,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__call__(pluggy.hoo..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (2 samples, 0.48%)</title><rect x="383.7" y="821" width="5.6" height="15.0" fill="rgb(251,156,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="386.67" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>from_call(_pytest.runner) (55 samples, 13.10%)</title><rect x="10.0" y="1077" width="154.5" height="15.0" fill="rgb(228,65,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >from_call(_pytest.r..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__instancecheck__(abc) (1 samples, 0.24%)</title><rect x="1032.7" y="1141" width="2.8" height="15.0" fill="rgb(207,226,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1035.67" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="383.7" y="741" width="2.8" height="15.0" fill="rgb(212,63,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="386.67" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="597.2" y="1141" width="2.8" height="15.0" fill="rgb(237,138,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="600.19" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sync(matrix_client.api) (10 samples, 2.38%)</title><rect x="538.2" y="1397" width="28.1" height="15.0" fill="rgb(235,177,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="541.19" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__call__(eth_hash.main) (1 samples, 0.24%)</title><rect x="571.9" y="1301" width="2.8" height="15.0" fill="rgb(207,121,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="574.90" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><genexpr>(copy) (1 samples, 0.24%)</title><rect x="276.9" y="837" width="2.8" height="15.0" fill="rgb(226,181,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapper(raiden.log_config) (1 samples, 0.24%)</title><rect x="341.5" y="1189" width="2.8" height="15.0" fill="rgb(205,102,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="344.52" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (3 samples, 0.71%)</title><rect x="201.0" y="757" width="8.5" height="15.0" fill="rgb(231,141,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="204.05" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_wrapper(web3.utils.decorators) (1 samples, 0.24%)</title><rect x="139.2" y="597" width="2.8" height="15.0" fill="rgb(247,85,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_maybe_run_callbacks(raiden.tasks) (61 samples, 14.52%)</title><rect x="350.0" y="1397" width="171.3" height="15.0" fill="rgb(220,186,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="352.95" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_maybe_run_callbacks(r..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call(web3.contract) (1 samples, 0.24%)</title><rect x="80.2" y="661" width="2.8" height="15.0" fill="rgb(222,45,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (1 samples, 0.24%)</title><rect x="80.2" y="389" width="2.8" height="15.0" fill="rgb(208,150,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="288.1" y="869" width="2.9" height="15.0" fill="rgb(254,159,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="414.6" y="1029" width="2.8" height="15.0" fill="rgb(238,73,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="417.57" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (1 samples, 0.24%)</title><rect x="12.8" y="597" width="2.8" height="15.0" fill="rgb(207,122,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="144.9" y="485" width="2.8" height="15.0" fill="rgb(225,99,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="583.1" y="1317" width="2.9" height="15.0" fill="rgb(231,200,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="586.14" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="288.1" y="613" width="2.9" height="15.0" fill="rgb(248,181,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="209.5" y="517" width="2.8" height="15.0" fill="rgb(239,16,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pack(raiden.messages) (1 samples, 0.24%)</title><rect x="232.0" y="997" width="2.8" height="15.0" fill="rgb(215,25,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="234.95" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_json_fallback_handler(structlog.processors) (1 samples, 0.24%)</title><rect x="232.0" y="1061" width="2.8" height="15.0" fill="rgb(212,4,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="234.95" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>contract(web3.eth) (1 samples, 0.24%)</title><rect x="128.0" y="597" width="2.8" height="15.0" fill="rgb(247,47,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="131.00" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__new__(web3.utils.datatypes) (1 samples, 0.24%)</title><rect x="83.0" y="485" width="2.9" height="15.0" fill="rgb(228,145,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="86.05" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__getitem__(urllib3._collections) (1 samples, 0.24%)</title><rect x="476.4" y="917" width="2.8" height="15.0" fill="rgb(249,114,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="479.38" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_callback_new_block(raiden.raiden_service) (8 samples, 1.90%)</title><rect x="1024.2" y="1381" width="22.5" height="15.0" fill="rgb(250,187,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.24" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_register_block_for_secrethash(raiden.network.proxies.secret_registry) (1 samples, 0.24%)</title><rect x="12.8" y="805" width="2.8" height="15.0" fill="rgb(245,126,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="274.1" y="645" width="2.8" height="15.0" fill="rgb(211,102,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="277.10" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="344.3" y="1237" width="2.8" height="15.0" fill="rgb(228,133,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="347.33" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (2 samples, 0.48%)</title><rect x="271.3" y="869" width="5.6" height="15.0" fill="rgb(251,160,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_environ_proxies(requests.utils) (1 samples, 0.24%)</title><rect x="411.8" y="997" width="2.8" height="15.0" fill="rgb(227,220,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parse(email.parser) (1 samples, 0.24%)</title><rect x="69.0" y="213" width="2.8" height="15.0" fill="rgb(251,83,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_send(raiden.network.transport.matrix.client) (3 samples, 0.71%)</title><rect x="330.3" y="1333" width="8.4" height="15.0" fill="rgb(250,83,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="333.29" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>start(raiden.raiden_service) (59 samples, 14.05%)</title><rect x="1024.2" y="1429" width="165.8" height="15.0" fill="rgb(216,40,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.24" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >start(raiden.raiden_s..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="274.1" y="613" width="2.8" height="15.0" fill="rgb(227,20,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="277.10" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_call_parse(email.feedparser) (1 samples, 0.24%)</title><rect x="66.2" y="549" width="2.8" height="15.0" fill="rgb(225,196,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="69.19" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>format(structlog.stdlib) (1 samples, 0.24%)</title><rect x="234.8" y="1173" width="2.8" height="15.0" fill="rgb(219,63,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="237.76" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>generate_cache_key(web3.utils.caching) (1 samples, 0.24%)</title><rect x="355.6" y="1061" width="2.8" height="15.0" fill="rgb(206,82,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="358.57" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (9 samples, 2.14%)</title><rect x="198.2" y="1221" width="25.3" height="15.0" fill="rgb(241,55,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="201.24" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="566.3" y="1333" width="2.8" height="15.0" fill="rgb(220,71,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (1 samples, 0.24%)</title><rect x="94.3" y="485" width="2.8" height="15.0" fill="rgb(231,128,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="136.4" y="485" width="2.8" height="15.0" fill="rgb(209,73,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="139.43" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>log_and_dispatch(raiden.storage.wal) (11 samples, 2.62%)</title><rect x="198.2" y="1269" width="30.9" height="15.0" fill="rgb(234,159,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="201.24" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >lo..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_text(eth_utils.types) (1 samples, 0.24%)</title><rect x="600.0" y="1077" width="2.8" height="15.0" fill="rgb(244,105,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="603.00" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="414.6" y="1013" width="2.8" height="15.0" fill="rgb(211,166,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="417.57" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="69.0" y="597" width="2.8" height="15.0" fill="rgb(228,189,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parse(email.parser) (2 samples, 0.48%)</title><rect x="560.7" y="1205" width="5.6" height="15.0" fill="rgb(227,155,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="563.67" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>subdispatch_to_paymenttask(raiden.transfer.node) (2 samples, 0.48%)</title><rect x="299.4" y="1189" width="5.6" height="15.0" fill="rgb(254,87,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="302.38" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="209.5" y="453" width="2.8" height="15.0" fill="rgb(229,102,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="29.7" y="533" width="2.8" height="15.0" fill="rgb(254,195,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (1 samples, 0.24%)</title><rect x="1043.9" y="1061" width="2.8" height="15.0" fill="rgb(230,81,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1046.90" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recursive_map(web3.utils.formatters) (1 samples, 0.24%)</title><rect x="302.2" y="997" width="2.8" height="15.0" fill="rgb(220,144,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="305.19" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (2 samples, 0.48%)</title><rect x="246.0" y="997" width="5.6" height="15.0" fill="rgb(241,183,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="249.00" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call(raiden.network.transport.matrix.client) (46 samples, 10.95%)</title><rect x="187.0" y="1413" width="129.2" height="15.0" fill="rgb(254,100,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="190.00" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >call(raiden.netw..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>settlement_timeout_max(raiden.network.proxies.token_network) (1 samples, 0.24%)</title><rect x="574.7" y="1381" width="2.8" height="15.0" fill="rgb(208,32,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="577.71" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_compute_fixture_value(_pytest.fixtures) (3 samples, 0.71%)</title><rect x="144.9" y="725" width="8.4" height="15.0" fill="rgb(221,201,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(pkg_resources) (1 samples, 0.24%)</title><rect x="1083.2" y="1269" width="2.8" height="15.0" fill="rgb(241,175,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1086.24" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_multicall(pluggy.callers) (8 samples, 1.90%)</title><rect x="69.0" y="789" width="22.5" height="15.0" fill="rgb(242,0,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="420.2" y="1141" width="2.8" height="15.0" fill="rgb(254,38,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="423.19" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_call_and_check_result(raiden.network.proxies.token_network) (2 samples, 0.48%)</title><rect x="591.6" y="1333" width="5.6" height="15.0" fill="rgb(210,198,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="594.57" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_transaction_receipt(raiden.network.rpc.client) (1 samples, 0.24%)</title><rect x="605.6" y="1365" width="2.8" height="15.0" fill="rgb(251,104,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="608.62" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recurse(web3.utils.formatters) (1 samples, 0.24%)</title><rect x="501.7" y="789" width="2.8" height="15.0" fill="rgb(207,8,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="504.67" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="288.1" y="981" width="2.9" height="15.0" fill="rgb(221,79,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (3 samples, 0.71%)</title><rect x="46.5" y="645" width="8.5" height="15.0" fill="rgb(225,41,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="49.52" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parse_url(urllib3.util.url) (1 samples, 0.24%)</title><rect x="479.2" y="981" width="2.8" height="15.0" fill="rgb(215,56,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="482.19" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_and_track_state_change(raiden.raiden_service) (4 samples, 0.95%)</title><rect x="243.2" y="1285" width="11.2" height="15.0" fill="rgb(226,188,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="566.3" y="1253" width="2.8" height="15.0" fill="rgb(232,122,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="150.5" y="453" width="2.8" height="15.0" fill="rgb(235,104,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="153.48" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="55.0" y="485" width="2.8" height="15.0" fill="rgb(210,182,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(os) (1 samples, 0.24%)</title><rect x="99.9" y="213" width="2.8" height="15.0" fill="rgb(246,57,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="102.90" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.contract) (1 samples, 0.24%)</title><rect x="108.3" y="597" width="2.8" height="15.0" fill="rgb(253,64,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="111.33" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>dumps(json) (1 samples, 0.24%)</title><rect x="341.5" y="1157" width="2.8" height="15.0" fill="rgb(215,70,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="344.52" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_state_change(raiden.raiden_service) (13 samples, 3.10%)</title><rect x="195.4" y="1285" width="36.6" height="15.0" fill="rgb(209,36,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="198.43" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >han..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_checksum_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="285.3" y="1157" width="2.8" height="15.0" fill="rgb(242,41,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="288.33" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__new__(web3.utils.abi) (1 samples, 0.24%)</title><rect x="594.4" y="1093" width="2.8" height="15.0" fill="rgb(248,180,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="597.38" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (3 samples, 0.71%)</title><rect x="521.3" y="1333" width="8.5" height="15.0" fill="rgb(220,210,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="524.33" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="170.1" y="1301" width="2.9" height="15.0" fill="rgb(243,163,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="173.14" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_send_global(raiden.network.transport.matrix.transport) (3 samples, 0.71%)</title><rect x="529.8" y="1429" width="8.4" height="15.0" fill="rgb(236,216,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="532.76" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseString(pkg_resources._vendor.pyparsing) (26 samples, 6.19%)</title><rect x="1088.9" y="1253" width="73.0" height="15.0" fill="rgb(226,67,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1091.86" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >parseStr..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_hookexec(pluggy.manager) (55 samples, 13.10%)</title><rect x="10.0" y="1029" width="154.5" height="15.0" fill="rgb(231,124,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_hookexec(pluggy.ma..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parse(email.parser) (1 samples, 0.24%)</title><rect x="484.8" y="917" width="2.8" height="15.0" fill="rgb(228,24,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="487.81" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>prepare(requests.models) (1 samples, 0.24%)</title><rect x="473.6" y="1029" width="2.8" height="15.0" fill="rgb(205,91,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="476.57" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>callHandlers(logging) (1 samples, 0.24%)</title><rect x="324.7" y="1285" width="2.8" height="15.0" fill="rgb(234,24,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="327.67" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>urlopen(urllib3.connectionpool) (1 samples, 0.24%)</title><rect x="91.5" y="309" width="2.8" height="15.0" fill="rgb(254,204,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>post(requests.sessions) (1 samples, 0.24%)</title><rect x="12.8" y="485" width="2.8" height="15.0" fill="rgb(214,28,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>generate(requests.models) (1 samples, 0.24%)</title><rect x="80.2" y="293" width="2.8" height="15.0" fill="rgb(246,77,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(urllib3.connectionpool) (1 samples, 0.24%)</title><rect x="66.2" y="661" width="2.8" height="15.0" fill="rgb(238,38,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="69.19" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_abi_formatters_to_dict(web3.utils.rpc_abi) (8 samples, 1.90%)</title><rect x="498.9" y="1109" width="22.4" height="15.0" fill="rgb(237,61,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="501.86" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >a..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send_message_event(matrix_client.api) (3 samples, 0.71%)</title><rect x="529.8" y="1381" width="8.4" height="15.0" fill="rgb(240,19,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="532.76" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>on_blockchain_event(raiden.blockchain_events_handler) (5 samples, 1.19%)</title><rect x="1027.0" y="1365" width="14.1" height="15.0" fill="rgb(247,212,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1030.05" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="206.7" y="517" width="2.8" height="15.0" fill="rgb(205,47,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="209.67" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>begin(http.client) (1 samples, 0.24%)</title><rect x="91.5" y="261" width="2.8" height="15.0" fill="rgb(248,69,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>contract(web3.eth) (1 samples, 0.24%)</title><rect x="133.6" y="485" width="2.8" height="15.0" fill="rgb(237,141,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="136.62" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="69.0" y="613" width="2.8" height="15.0" fill="rgb(231,59,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (1 samples, 0.24%)</title><rect x="1043.9" y="1189" width="2.8" height="15.0" fill="rgb(245,53,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1046.90" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="614.0" y="1157" width="2.9" height="15.0" fill="rgb(217,99,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="617.05" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="55.0" y="277" width="2.8" height="15.0" fill="rgb(237,130,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>abi_request_formatters(web3.utils.rpc_abi) (1 samples, 0.24%)</title><rect x="588.8" y="1173" width="2.8" height="15.0" fill="rgb(253,77,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="591.76" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><genexpr>(pkg_resources.extern.packaging.specifiers) (2 samples, 0.48%)</title><rect x="1052.3" y="1317" width="5.7" height="15.0" fill="rgb(241,3,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1055.33" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (1 samples, 0.24%)</title><rect x="170.1" y="1237" width="2.9" height="15.0" fill="rgb(214,150,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="173.14" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>keccak(eth_utils.crypto) (1 samples, 0.24%)</title><rect x="305.0" y="1109" width="2.8" height="15.0" fill="rgb(227,20,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="308.00" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>inner(eth_utils.functional) (1 samples, 0.24%)</title><rect x="94.3" y="581" width="2.8" height="15.0" fill="rgb(213,139,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iadd__(pkg_resources._vendor.pyparsing) (1 samples, 0.24%)</title><rect x="1088.9" y="1205" width="2.8" height="15.0" fill="rgb(215,2,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1091.86" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="420.2" y="1205" width="2.8" height="15.0" fill="rgb(217,80,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="423.19" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (2 samples, 0.48%)</title><rect x="271.3" y="981" width="5.6" height="15.0" fill="rgb(217,29,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (2 samples, 0.48%)</title><rect x="608.4" y="1109" width="5.6" height="15.0" fill="rgb(236,99,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="611.43" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (7 samples, 1.67%)</title><rect x="392.1" y="1077" width="19.7" height="15.0" fill="rgb(250,26,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="395.10" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.contract) (2 samples, 0.48%)</title><rect x="1035.5" y="1237" width="5.6" height="15.0" fill="rgb(224,206,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1038.48" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (1 samples, 0.24%)</title><rect x="577.5" y="1189" width="2.8" height="15.0" fill="rgb(249,49,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="580.52" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>default_middlewares(web3.manager) (1 samples, 0.24%)</title><rect x="85.9" y="517" width="2.8" height="15.0" fill="rgb(228,34,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="88.86" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getproxies_environment(urllib.request) (2 samples, 0.48%)</title><rect x="538.2" y="1301" width="5.6" height="15.0" fill="rgb(239,32,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="541.19" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="167.3" y="1157" width="2.8" height="15.0" fill="rgb(221,111,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (1 samples, 0.24%)</title><rect x="69.0" y="549" width="2.8" height="15.0" fill="rgb(228,16,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (2 samples, 0.48%)</title><rect x="49.3" y="613" width="5.7" height="15.0" fill="rgb(208,192,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="52.33" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sign(raiden.raiden_service) (1 samples, 0.24%)</title><rect x="181.4" y="1381" width="2.8" height="15.0" fill="rgb(243,214,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="184.38" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__new__(hexbytes.main) (1 samples, 0.24%)</title><rect x="583.1" y="1205" width="2.9" height="15.0" fill="rgb(253,197,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="586.14" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="411.8" y="1125" width="2.8" height="15.0" fill="rgb(237,81,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>bind(inspect) (1 samples, 0.24%)</title><rect x="616.9" y="1173" width="2.8" height="15.0" fill="rgb(252,41,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="619.86" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>debug(logging) (1 samples, 0.24%)</title><rect x="527.0" y="1141" width="2.8" height="15.0" fill="rgb(248,131,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="529.95" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>debug(logging) (2 samples, 0.48%)</title><rect x="369.6" y="1285" width="5.6" height="15.0" fill="rgb(219,87,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="372.62" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapped(web3.utils.decorators) (1 samples, 0.24%)</title><rect x="594.4" y="1141" width="2.8" height="15.0" fill="rgb(243,129,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="597.38" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>check_channel(raiden.tests.utils.network) (2 samples, 0.48%)</title><rect x="569.1" y="1413" width="5.6" height="15.0" fill="rgb(249,62,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="572.10" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_post_request(web3.utils.request) (1 samples, 0.24%)</title><rect x="111.1" y="373" width="2.9" height="15.0" fill="rgb(247,221,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="114.14" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>environ(psutil) (1 samples, 0.24%)</title><rect x="153.3" y="693" width="2.8" height="15.0" fill="rgb(239,21,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="156.29" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deploy_all_tokens_register_and_return_their_addresses(raiden.tests.integration.fixtures.smartcontracts) (9 samples, 2.14%)</title><rect x="97.1" y="693" width="25.3" height="15.0" fill="rgb(213,2,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="100.10" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (1 samples, 0.24%)</title><rect x="170.1" y="1173" width="2.9" height="15.0" fill="rgb(239,129,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="173.14" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>hash(raiden.messages) (1 samples, 0.24%)</title><rect x="338.7" y="1173" width="2.8" height="15.0" fill="rgb(222,198,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="341.71" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapped(web3.utils.decorators) (1 samples, 0.24%)</title><rect x="1032.7" y="1189" width="2.8" height="15.0" fill="rgb(241,93,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1035.67" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_post_request(web3.utils.request) (1 samples, 0.24%)</title><rect x="170.1" y="1077" width="2.9" height="15.0" fill="rgb(236,187,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="173.14" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getproxies_environment(urllib.request) (1 samples, 0.24%)</title><rect x="358.4" y="1045" width="2.8" height="15.0" fill="rgb(226,225,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="361.38" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="282.5" y="1093" width="2.8" height="15.0" fill="rgb(207,77,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="285.52" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>inner(eth_utils.functional) (1 samples, 0.24%)</title><rect x="588.8" y="1189" width="2.8" height="15.0" fill="rgb(239,37,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="591.76" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parseNoCache(pkg_resources._vendor.pyparsing) (11 samples, 2.62%)</title><rect x="1100.1" y="981" width="30.9" height="15.0" fill="rgb(252,205,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1103.10" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_p..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="580.3" y="1365" width="2.8" height="15.0" fill="rgb(234,23,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="583.33" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapper(eth_utils.decorators) (1 samples, 0.24%)</title><rect x="355.6" y="1013" width="2.8" height="15.0" fill="rgb(227,84,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="358.57" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="344.3" y="1269" width="2.8" height="15.0" fill="rgb(220,202,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="347.33" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle(logging) (1 samples, 0.24%)</title><rect x="307.8" y="1253" width="2.8" height="15.0" fill="rgb(208,23,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="310.81" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parse(pkg_resources.extern.packaging.version) (1 samples, 0.24%)</title><rect x="40.9" y="725" width="2.8" height="15.0" fill="rgb(215,117,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="43.90" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="279.7" y="997" width="2.8" height="15.0" fill="rgb(221,182,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="282.71" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>encode(json.encoder) (1 samples, 0.24%)</title><rect x="229.1" y="1237" width="2.9" height="15.0" fill="rgb(241,139,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="232.14" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="209.5" y="741" width="2.8" height="15.0" fill="rgb(207,81,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="574.7" y="1221" width="2.8" height="15.0" fill="rgb(230,12,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="577.71" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__contains__(collections.abc) (1 samples, 0.24%)</title><rect x="150.5" y="213" width="2.8" height="15.0" fill="rgb(250,161,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="153.48" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (2 samples, 0.48%)</title><rect x="262.9" y="997" width="5.6" height="15.0" fill="rgb(212,20,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="265.86" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>discovery(raiden.network.blockchain_service) (2 samples, 0.48%)</title><rect x="122.4" y="661" width="5.6" height="15.0" fill="rgb(239,164,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="125.38" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>iterencode(json.encoder) (1 samples, 0.24%)</title><rect x="282.5" y="1173" width="2.8" height="15.0" fill="rgb(224,103,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="285.52" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>detail(raiden.network.proxies.payment_channel) (1 samples, 0.24%)</title><rect x="569.1" y="1397" width="2.8" height="15.0" fill="rgb(233,17,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="572.10" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (1 samples, 0.24%)</title><rect x="144.9" y="325" width="2.8" height="15.0" fill="rgb(210,78,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wait_for_read(urllib3.util.wait) (1 samples, 0.24%)</title><rect x="555.0" y="1253" width="2.9" height="15.0" fill="rgb(244,20,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="558.05" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(pkg_resources.extern.packaging.specifiers) (1 samples, 0.24%)</title><rect x="1086.0" y="1253" width="2.9" height="15.0" fill="rgb(231,223,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1089.05" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_multicall(pluggy.callers) (13 samples, 3.10%)</title><rect x="91.5" y="741" width="36.5" height="15.0" fill="rgb(253,99,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_mu..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="15.6" y="197" width="2.8" height="15.0" fill="rgb(229,19,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="243.2" y="997" width="2.8" height="15.0" fill="rgb(238,46,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="170.1" y="1157" width="2.9" height="15.0" fill="rgb(224,51,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="173.14" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (2 samples, 0.48%)</title><rect x="1027.0" y="1205" width="5.7" height="15.0" fill="rgb(252,7,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1030.05" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_one_of_formatters(web3.utils.formatters) (1 samples, 0.24%)</title><rect x="437.0" y="1189" width="2.9" height="15.0" fill="rgb(211,16,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="440.05" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="574.7" y="1125" width="2.8" height="15.0" fill="rgb(234,194,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="577.71" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="288.1" y="789" width="2.9" height="15.0" fill="rgb(245,192,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>acquire(threading) (1 samples, 0.24%)</title><rect x="535.4" y="1269" width="2.8" height="15.0" fill="rgb(235,60,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="538.38" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(pkg_resources.extern.packaging.version) (1 samples, 0.24%)</title><rect x="38.1" y="629" width="2.8" height="15.0" fill="rgb(236,101,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="41.10" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>hexstr_if_str(eth_utils.conversions) (1 samples, 0.24%)</title><rect x="600.0" y="1141" width="2.8" height="15.0" fill="rgb(240,209,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="603.00" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="605.6" y="1333" width="2.8" height="15.0" fill="rgb(249,110,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="608.62" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>keccak256(eth_hash.backends.pycryptodome) (1 samples, 0.24%)</title><rect x="226.3" y="1093" width="2.8" height="15.0" fill="rgb(241,93,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="229.33" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseImpl(pkg_resources._vendor.pyparsing) (23 samples, 5.48%)</title><rect x="1094.5" y="1125" width="64.6" height="15.0" fill="rgb(233,37,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1097.48" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >parseIm..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_handle_response(raiden.network.transport.matrix.client) (46 samples, 10.95%)</title><rect x="187.0" y="1429" width="129.2" height="15.0" fill="rgb(249,74,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="190.00" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_handle_response..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>state_transition(raiden.transfer.mediated_transfer.target) (2 samples, 0.48%)</title><rect x="299.4" y="1173" width="5.6" height="15.0" fill="rgb(232,199,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="302.38" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>new_contract(raiden.network.rpc.client) (1 samples, 0.24%)</title><rect x="108.3" y="629" width="2.8" height="15.0" fill="rgb(226,46,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="111.33" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_netrc_auth(requests.utils) (1 samples, 0.24%)</title><rect x="414.6" y="885" width="2.8" height="15.0" fill="rgb(243,25,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="417.57" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>new_contract_proxy(raiden.network.rpc.client) (2 samples, 0.48%)</title><rect x="102.7" y="629" width="5.6" height="15.0" fill="rgb(249,70,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="105.71" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="597.2" y="1301" width="2.8" height="15.0" fill="rgb(240,226,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="600.19" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_checksum_address(eth_utils.address) (4 samples, 0.95%)</title><rect x="504.5" y="757" width="11.2" height="15.0" fill="rgb(244,67,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="507.48" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>encode(os) (1 samples, 0.24%)</title><rect x="414.6" y="821" width="2.8" height="15.0" fill="rgb(225,155,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="417.57" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_dict(raiden.transfer.state_change) (1 samples, 0.24%)</title><rect x="229.1" y="1189" width="2.9" height="15.0" fill="rgb(207,65,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="232.14" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="614.0" y="1189" width="2.9" height="15.0" fill="rgb(234,221,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="617.05" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="130.8" y="405" width="2.8" height="15.0" fill="rgb(224,66,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="133.81" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="83.0" y="533" width="2.9" height="15.0" fill="rgb(246,24,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="86.05" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="15.6" y="501" width="2.8" height="15.0" fill="rgb(246,39,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapped(web3.utils.decorators) (5 samples, 1.19%)</title><rect x="501.7" y="853" width="14.0" height="15.0" fill="rgb(247,82,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="504.67" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>debug(logging) (2 samples, 0.48%)</title><rect x="324.7" y="1333" width="5.6" height="15.0" fill="rgb(244,138,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="327.67" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>endheaders(http.client) (1 samples, 0.24%)</title><rect x="605.6" y="965" width="2.8" height="15.0" fill="rgb(218,126,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="608.62" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="602.8" y="1317" width="2.8" height="15.0" fill="rgb(251,164,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="605.81" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>start(raiden.network.transport.matrix.transport) (1 samples, 0.24%)</title><rect x="66.2" y="821" width="2.8" height="15.0" fill="rgb(241,33,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="69.19" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="32.5" y="581" width="2.8" height="15.0" fill="rgb(240,57,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="35.48" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_post_request(web3.utils.request) (1 samples, 0.24%)</title><rect x="420.2" y="1013" width="2.8" height="15.0" fill="rgb(234,38,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="423.19" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>generateGasPrice(web3.eth) (1 samples, 0.24%)</title><rect x="577.5" y="1349" width="2.8" height="15.0" fill="rgb(241,161,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="580.52" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="83.0" y="501" width="2.9" height="15.0" fill="rgb(224,59,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="86.05" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recursive_map(web3.utils.formatters) (3 samples, 0.71%)</title><rect x="428.6" y="1125" width="8.4" height="15.0" fill="rgb(210,110,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="431.62" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (3 samples, 0.71%)</title><rect x="201.0" y="949" width="8.5" height="15.0" fill="rgb(245,159,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="204.05" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (4 samples, 0.95%)</title><rect x="288.1" y="1125" width="11.3" height="15.0" fill="rgb(251,196,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="198.2" y="997" width="2.8" height="15.0" fill="rgb(249,215,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="201.24" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__getitem__(os) (1 samples, 0.24%)</title><rect x="1187.2" y="1205" width="2.8" height="15.0" fill="rgb(246,71,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.19" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="114.0" y="485" width="2.8" height="15.0" fill="rgb(213,156,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="116.95" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="411.8" y="1141" width="2.8" height="15.0" fill="rgb(246,37,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="414.76" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_dict(raiden.transfer.events) (1 samples, 0.24%)</title><rect x="285.3" y="1173" width="2.8" height="15.0" fill="rgb(232,1,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="288.33" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>hexstr_if_str(eth_utils.conversions) (1 samples, 0.24%)</title><rect x="116.8" y="469" width="2.8" height="15.0" fill="rgb(254,175,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="119.76" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>urlopen(urllib3.connectionpool) (1 samples, 0.24%)</title><rect x="605.6" y="1029" width="2.8" height="15.0" fill="rgb(231,92,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="608.62" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.contract) (1 samples, 0.24%)</title><rect x="105.5" y="469" width="2.8" height="15.0" fill="rgb(231,177,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="108.52" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (3 samples, 0.71%)</title><rect x="291.0" y="1093" width="8.4" height="15.0" fill="rgb(224,211,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="293.95" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>contract(web3.eth) (1 samples, 0.24%)</title><rect x="74.6" y="565" width="2.8" height="15.0" fill="rgb(244,202,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="77.62" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>dumps(json) (1 samples, 0.24%)</title><rect x="268.5" y="1237" width="2.8" height="15.0" fill="rgb(232,206,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="271.48" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="243.2" y="805" width="2.8" height="15.0" fill="rgb(208,209,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="105.5" y="453" width="2.8" height="15.0" fill="rgb(227,196,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="108.52" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>check_address_has_code(raiden.network.rpc.client) (2 samples, 0.48%)</title><rect x="1027.0" y="1301" width="5.7" height="15.0" fill="rgb(254,202,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1030.05" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (2 samples, 0.48%)</title><rect x="271.3" y="1029" width="5.6" height="15.0" fill="rgb(206,167,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="29.7" y="645" width="2.8" height="15.0" fill="rgb(237,130,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>urlopen(urllib3.connectionpool) (1 samples, 0.24%)</title><rect x="66.2" y="677" width="2.8" height="15.0" fill="rgb(228,30,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="69.19" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>emit(logging) (1 samples, 0.24%)</title><rect x="307.8" y="1205" width="2.8" height="15.0" fill="rgb(209,59,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="310.81" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (2 samples, 0.48%)</title><rect x="608.4" y="1125" width="5.6" height="15.0" fill="rgb(214,14,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="611.43" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_put_event(matrix_client.room) (44 samples, 10.48%)</title><rect x="192.6" y="1397" width="123.6" height="15.0" fill="rgb(231,114,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="195.62" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_put_event(matr..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (1 samples, 0.24%)</title><rect x="94.3" y="293" width="2.8" height="15.0" fill="rgb(207,91,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="55.0" y="581" width="2.8" height="15.0" fill="rgb(212,75,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="566.3" y="1173" width="2.8" height="15.0" fill="rgb(220,134,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>write_events(raiden.storage.sqlite) (1 samples, 0.24%)</title><rect x="282.5" y="1253" width="2.8" height="15.0" fill="rgb(253,34,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="285.52" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (2 samples, 0.48%)</title><rect x="383.7" y="853" width="5.6" height="15.0" fill="rgb(215,88,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="386.67" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="114.0" y="597" width="2.8" height="15.0" fill="rgb(246,198,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="116.95" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="150.5" y="533" width="2.8" height="15.0" fill="rgb(221,63,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="153.48" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseImpl(pkg_resources._vendor.pyparsing) (24 samples, 5.71%)</title><rect x="1091.7" y="1189" width="67.4" height="15.0" fill="rgb(254,173,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1094.67" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >parseIm..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>blockNumber(web3.eth) (1 samples, 0.24%)</title><rect x="91.5" y="629" width="2.8" height="15.0" fill="rgb(217,190,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>inner(eth_utils.functional) (2 samples, 0.48%)</title><rect x="237.6" y="1237" width="5.6" height="15.0" fill="rgb(254,209,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>new_contract(raiden.network.rpc.client) (2 samples, 0.48%)</title><rect x="83.0" y="661" width="5.7" height="15.0" fill="rgb(234,209,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="86.05" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_post_request(web3.utils.request) (1 samples, 0.24%)</title><rect x="414.6" y="949" width="2.8" height="15.0" fill="rgb(238,39,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="417.57" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="91.5" y="517" width="2.8" height="15.0" fill="rgb(238,183,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="29.7" y="581" width="2.8" height="15.0" fill="rgb(251,100,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle(logging) (2 samples, 0.48%)</title><rect x="369.6" y="1221" width="5.6" height="15.0" fill="rgb(233,0,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="372.62" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>token_network(raiden.network.blockchain_service) (5 samples, 1.19%)</title><rect x="1027.0" y="1333" width="14.1" height="15.0" fill="rgb(218,221,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1030.05" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>should_bypass_proxies(requests.utils) (2 samples, 0.48%)</title><rect x="529.8" y="1285" width="5.6" height="15.0" fill="rgb(207,199,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="532.76" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="243.2" y="965" width="2.8" height="15.0" fill="rgb(243,84,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="260.0" y="1013" width="2.9" height="15.0" fill="rgb(209,214,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>new_contract(raiden.network.rpc.client) (1 samples, 0.24%)</title><rect x="119.6" y="629" width="2.8" height="15.0" fill="rgb(241,190,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="122.57" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call_contract_function(web3.contract) (1 samples, 0.24%)</title><rect x="94.3" y="597" width="2.8" height="15.0" fill="rgb(224,56,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (7 samples, 1.67%)</title><rect x="350.0" y="1285" width="19.6" height="15.0" fill="rgb(236,189,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="352.95" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>dispatch(raiden.transfer.architecture) (2 samples, 0.48%)</title><rect x="276.9" y="1253" width="5.6" height="15.0" fill="rgb(235,143,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_hookexec(pluggy.manager) (3 samples, 0.71%)</title><rect x="144.9" y="677" width="8.4" height="15.0" fill="rgb(246,133,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="111.1" y="405" width="2.9" height="15.0" fill="rgb(248,113,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="114.14" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="29.7" y="597" width="2.8" height="15.0" fill="rgb(211,166,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.sessions) (1 samples, 0.24%)</title><rect x="605.6" y="1061" width="2.8" height="15.0" fill="rgb(252,104,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="608.62" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>token(raiden.network.blockchain_service) (1 samples, 0.24%)</title><rect x="108.3" y="661" width="2.8" height="15.0" fill="rgb(210,224,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="111.33" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>contract(web3.eth) (1 samples, 0.24%)</title><rect x="108.3" y="533" width="2.8" height="15.0" fill="rgb(221,137,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="111.33" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_state_change(raiden.raiden_service) (4 samples, 0.95%)</title><rect x="15.6" y="805" width="11.3" height="15.0" fill="rgb(218,118,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>debug(structlog.stdlib) (2 samples, 0.48%)</title><rect x="324.7" y="1381" width="5.6" height="15.0" fill="rgb(253,19,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="327.67" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrap_session(_pytest.main) (55 samples, 13.10%)</title><rect x="10.0" y="1317" width="154.5" height="15.0" fill="rgb(215,83,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >wrap_session(_pytes..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (3 samples, 0.71%)</title><rect x="201.0" y="1077" width="8.5" height="15.0" fill="rgb(246,124,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="204.05" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><lambda>(_pytest.runner) (55 samples, 13.10%)</title><rect x="10.0" y="1061" width="154.5" height="15.0" fill="rgb(230,190,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><lambda>(_pytest.ru..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>decode(os) (1 samples, 0.24%)</title><rect x="358.4" y="997" width="2.8" height="15.0" fill="rgb(216,67,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="361.38" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (1 samples, 0.24%)</title><rect x="574.7" y="1237" width="2.8" height="15.0" fill="rgb(221,71,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="577.71" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_update_address_presence(raiden.network.transport.matrix.transport) (1 samples, 0.24%)</title><rect x="189.8" y="1381" width="2.8" height="15.0" fill="rgb(239,205,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="192.81" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (2 samples, 0.48%)</title><rect x="271.3" y="1157" width="5.6" height="15.0" fill="rgb(244,5,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>post(requests.sessions) (1 samples, 0.24%)</title><rect x="170.1" y="1061" width="2.9" height="15.0" fill="rgb(214,147,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="173.14" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>decode(os) (1 samples, 0.24%)</title><rect x="580.3" y="1013" width="2.8" height="15.0" fill="rgb(218,52,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="583.33" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="206.7" y="485" width="2.8" height="15.0" fill="rgb(241,102,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="209.67" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_parseNoCache(pkg_resources._vendor.pyparsing) (1 samples, 0.24%)</title><rect x="1133.8" y="933" width="2.8" height="15.0" fill="rgb(240,219,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1136.81" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_compute_fixture_value(_pytest.fixtures) (9 samples, 2.14%)</title><rect x="128.0" y="773" width="25.3" height="15.0" fill="rgb(242,64,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="131.00" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="605.6" y="1301" width="2.8" height="15.0" fill="rgb(240,89,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="608.62" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recursive_map(web3.utils.formatters) (1 samples, 0.24%)</title><rect x="594.4" y="1125" width="2.8" height="15.0" fill="rgb(241,198,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="597.38" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="243.2" y="933" width="2.8" height="15.0" fill="rgb(251,83,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (1 samples, 0.24%)</title><rect x="144.9" y="405" width="2.8" height="15.0" fill="rgb(223,140,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(raiden.network.proxies.secret_registry) (2 samples, 0.48%)</title><rect x="71.8" y="693" width="5.6" height="15.0" fill="rgb(244,199,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="74.81" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sign(raiden.raiden_service) (1 samples, 0.24%)</title><rect x="178.6" y="1381" width="2.8" height="15.0" fill="rgb(211,111,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="181.57" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="574.7" y="1157" width="2.8" height="15.0" fill="rgb(250,34,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="577.71" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapped(web3.utils.decorators) (1 samples, 0.24%)</title><rect x="569.1" y="1301" width="2.8" height="15.0" fill="rgb(212,217,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="572.10" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.sessions) (2 samples, 0.48%)</title><rect x="237.6" y="933" width="5.6" height="15.0" fill="rgb(238,161,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_hookexec(pluggy.manager) (6 samples, 1.43%)</title><rect x="128.0" y="725" width="16.9" height="15.0" fill="rgb(235,34,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="131.00" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(collections.abc) (1 samples, 0.24%)</title><rect x="32.5" y="373" width="2.8" height="15.0" fill="rgb(229,127,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="35.48" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_checksum_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="226.3" y="1141" width="2.8" height="15.0" fill="rgb(207,143,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="229.33" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>push(email.feedparser) (1 samples, 0.24%)</title><rect x="563.5" y="1173" width="2.8" height="15.0" fill="rgb(244,166,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="566.48" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_send(raiden.network.transport.matrix.client) (10 samples, 2.38%)</title><rect x="538.2" y="1381" width="28.1" height="15.0" fill="rgb(235,172,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="541.19" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>urlencode(urllib.parse) (1 samples, 0.24%)</title><rect x="546.6" y="1269" width="2.8" height="15.0" fill="rgb(250,30,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="549.62" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.contract) (1 samples, 0.24%)</title><rect x="586.0" y="1253" width="2.8" height="15.0" fill="rgb(222,143,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="588.95" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recurse(web3.utils.formatters) (1 samples, 0.24%)</title><rect x="366.8" y="1157" width="2.8" height="15.0" fill="rgb(207,25,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="369.81" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_and_track_state_change(raiden.raiden_service) (5 samples, 1.19%)</title><rect x="254.4" y="1301" width="14.1" height="15.0" fill="rgb(205,22,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="257.43" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="55.0" y="565" width="2.8" height="15.0" fill="rgb(208,212,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="144.9" y="357" width="2.8" height="15.0" fill="rgb(235,36,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_proxy_to_logger(structlog.stdlib) (1 samples, 0.24%)</title><rect x="195.4" y="1253" width="2.8" height="15.0" fill="rgb(251,192,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="198.43" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(web3.utils.abi) (1 samples, 0.24%)</title><rect x="591.6" y="1253" width="2.8" height="15.0" fill="rgb(254,67,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="594.57" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>post(requests.sessions) (1 samples, 0.24%)</title><rect x="80.2" y="357" width="2.8" height="15.0" fill="rgb(223,224,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (2 samples, 0.48%)</title><rect x="276.9" y="1221" width="5.6" height="15.0" fill="rgb(207,218,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="279.90" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call(web3.contract) (1 samples, 0.24%)</title><rect x="69.0" y="677" width="2.8" height="15.0" fill="rgb(232,190,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.contract) (1 samples, 0.24%)</title><rect x="147.7" y="421" width="2.8" height="15.0" fill="rgb(254,149,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="150.67" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>node(web3.version) (1 samples, 0.24%)</title><rect x="144.9" y="549" width="2.8" height="15.0" fill="rgb(234,55,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (5 samples, 1.19%)</title><rect x="375.2" y="933" width="14.1" height="15.0" fill="rgb(221,23,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="378.24" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="274.1" y="565" width="2.8" height="15.0" fill="rgb(220,192,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="277.10" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>poll(gevent.select) (1 samples, 0.24%)</title><rect x="555.0" y="1189" width="2.9" height="15.0" fill="rgb(208,155,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="558.05" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(pkg_resources._vendor.pyparsing) (1 samples, 0.24%)</title><rect x="1094.5" y="1093" width="2.8" height="15.0" fill="rgb(249,156,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1097.48" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="69.0" y="437" width="2.8" height="15.0" fill="rgb(250,184,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>data_tree_map(web3.utils.abi) (1 samples, 0.24%)</title><rect x="569.1" y="1317" width="2.8" height="15.0" fill="rgb(223,43,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="572.10" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="1024.2" y="1237" width="2.8" height="15.0" fill="rgb(237,83,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.24" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="15.6" y="309" width="2.8" height="15.0" fill="rgb(210,111,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>decode(os) (1 samples, 0.24%)</title><rect x="448.3" y="965" width="2.8" height="15.0" fill="rgb(227,187,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="451.29" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseImpl(pkg_resources._vendor.pyparsing) (1 samples, 0.24%)</title><rect x="1150.7" y="757" width="2.8" height="15.0" fill="rgb(233,105,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1153.67" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="94.3" y="549" width="2.8" height="15.0" fill="rgb(211,35,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="15.6" y="213" width="2.8" height="15.0" fill="rgb(219,206,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapped(web3.utils.decorators) (6 samples, 1.43%)</title><rect x="498.9" y="917" width="16.8" height="15.0" fill="rgb(205,49,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="501.86" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>post(requests.sessions) (1 samples, 0.24%)</title><rect x="602.8" y="1077" width="2.8" height="15.0" fill="rgb(248,143,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="605.81" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.contract) (1 samples, 0.24%)</title><rect x="142.0" y="469" width="2.9" height="15.0" fill="rgb(205,61,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="145.05" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mediated_transfer_async(raiden.raiden_service) (5 samples, 1.19%)</title><rect x="12.8" y="853" width="14.1" height="15.0" fill="rgb(234,159,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (3 samples, 0.71%)</title><rect x="291.0" y="1045" width="8.4" height="15.0" fill="rgb(238,161,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="293.95" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deploy_contract_web3(raiden.utils.smart_contracts) (2 samples, 0.48%)</title><rect x="139.2" y="629" width="5.7" height="15.0" fill="rgb(228,210,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>machine(platform) (2 samples, 0.48%)</title><rect x="1170.3" y="1253" width="5.7" height="15.0" fill="rgb(222,155,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1173.33" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>version(platform) (1 samples, 0.24%)</title><rect x="1184.4" y="1253" width="2.8" height="15.0" fill="rgb(210,110,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1187.38" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (7 samples, 1.67%)</title><rect x="350.0" y="1333" width="19.6" height="15.0" fill="rgb(235,140,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="352.95" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="99.9" y="389" width="2.8" height="15.0" fill="rgb(209,106,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="102.90" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.gas_price_strategy) (1 samples, 0.24%)</title><rect x="71.8" y="533" width="2.8" height="15.0" fill="rgb(224,133,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="74.81" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__new__(web3.utils.abi) (2 samples, 0.48%)</title><rect x="431.4" y="1029" width="5.6" height="15.0" fill="rgb(232,0,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="434.43" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>feed(email.feedparser) (2 samples, 0.48%)</title><rect x="560.7" y="1189" width="5.6" height="15.0" fill="rgb(214,68,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="563.67" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (8 samples, 1.90%)</title><rect x="43.7" y="725" width="22.5" height="15.0" fill="rgb(242,165,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="46.71" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>header_source_parse(email._policybase) (1 samples, 0.24%)</title><rect x="484.8" y="837" width="2.8" height="15.0" fill="rgb(222,155,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="487.81" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_compare_less_than(pkg_resources.extern.packaging.specifiers) (1 samples, 0.24%)</title><rect x="1055.1" y="1269" width="2.9" height="15.0" fill="rgb(207,109,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1058.14" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ens(web3.main) (1 samples, 0.24%)</title><rect x="102.7" y="565" width="2.8" height="15.0" fill="rgb(241,82,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="105.71" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_send(matrix_client.api) (1 samples, 0.24%)</title><rect x="1187.2" y="1333" width="2.8" height="15.0" fill="rgb(213,127,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.19" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>token_network_registry(raiden.network.blockchain_service) (4 samples, 0.95%)</title><rect x="77.4" y="709" width="11.3" height="15.0" fill="rgb(208,17,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="80.43" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call(web3.eth) (1 samples, 0.24%)</title><rect x="80.2" y="613" width="2.8" height="15.0" fill="rgb(238,76,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="83.24" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>bind(inspect) (1 samples, 0.24%)</title><rect x="142.0" y="389" width="2.9" height="15.0" fill="rgb(239,215,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="145.05" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__iter__(os) (1 samples, 0.24%)</title><rect x="136.4" y="229" width="2.8" height="15.0" fill="rgb(213,162,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="139.43" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="274.1" y="501" width="2.8" height="15.0" fill="rgb(230,110,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="277.10" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_handle_presence_change(raiden.network.transport.matrix.transport) (1 samples, 0.24%)</title><rect x="189.8" y="1397" width="2.8" height="15.0" fill="rgb(251,89,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="192.81" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sign(raiden.utils.signer) (1 samples, 0.24%)</title><rect x="181.4" y="1349" width="2.8" height="15.0" fill="rgb(238,229,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="184.38" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_state_change(raiden.raiden_service) (4 samples, 0.95%)</title><rect x="243.2" y="1269" width="11.2" height="15.0" fill="rgb(210,27,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ens(web3.main) (2 samples, 0.48%)</title><rect x="122.4" y="581" width="5.6" height="15.0" fill="rgb(224,213,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="125.38" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call(web3.contract) (1 samples, 0.24%)</title><rect x="71.8" y="661" width="2.8" height="15.0" fill="rgb(224,76,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="74.81" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sendRawTransaction(web3.eth) (1 samples, 0.24%)</title><rect x="170.1" y="1317" width="2.9" height="15.0" fill="rgb(244,113,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="173.14" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>encode_abi(web3.utils.contracts) (1 samples, 0.24%)</title><rect x="600.0" y="1269" width="2.8" height="15.0" fill="rgb(222,118,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="603.00" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_hex_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="512.9" y="693" width="2.8" height="15.0" fill="rgb(241,9,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="515.90" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>prepare_url(requests.models) (1 samples, 0.24%)</title><rect x="546.6" y="1301" width="2.8" height="15.0" fill="rgb(224,204,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="549.62" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(raiden.network.proxies.token_network_registry) (4 samples, 0.95%)</title><rect x="77.4" y="693" width="11.3" height="15.0" fill="rgb(210,155,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="80.43" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="209.5" y="421" width="2.8" height="15.0" fill="rgb(208,179,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_compute_dependencies(pkg_resources) (43 samples, 10.24%)</title><rect x="1066.4" y="1317" width="120.8" height="15.0" fill="rgb(219,183,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1069.38" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_compute_depend..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (7 samples, 1.67%)</title><rect x="392.1" y="1125" width="19.7" height="15.0" fill="rgb(239,94,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="395.10" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ens(web3.main) (1 samples, 0.24%)</title><rect x="619.7" y="1333" width="2.8" height="15.0" fill="rgb(226,37,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="622.67" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_post_request(web3.utils.request) (1 samples, 0.24%)</title><rect x="12.8" y="501" width="2.8" height="15.0" fill="rgb(229,3,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="15.81" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>generate_cache_key(web3.utils.caching) (1 samples, 0.24%)</title><rect x="614.0" y="1093" width="2.9" height="15.0" fill="rgb(252,97,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="617.05" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>log_and_dispatch(raiden.storage.wal) (4 samples, 0.95%)</title><rect x="15.6" y="789" width="11.3" height="15.0" fill="rgb(247,62,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(Crypto.Hash.keccak) (1 samples, 0.24%)</title><rect x="226.3" y="1061" width="2.8" height="15.0" fill="rgb(222,215,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="229.33" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="198.2" y="1029" width="2.8" height="15.0" fill="rgb(239,68,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="201.24" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>add_0x_prefix(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="307.8" y="1013" width="2.8" height="15.0" fill="rgb(215,181,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="310.81" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="243.2" y="885" width="2.8" height="15.0" fill="rgb(247,122,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(pkg_resources._vendor.pyparsing) (1 samples, 0.24%)</title><rect x="1133.8" y="885" width="2.8" height="15.0" fill="rgb(253,35,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1136.81" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_register_block_for_secrethash(raiden.network.proxies.secret_registry) (2 samples, 0.48%)</title><rect x="237.6" y="1285" width="5.6" height="15.0" fill="rgb(206,216,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>add(pkg_resources) (1 samples, 0.24%)</title><rect x="1049.5" y="1365" width="2.8" height="15.0" fill="rgb(207,37,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1052.52" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>recurse(web3.utils.formatters) (1 samples, 0.24%)</title><rect x="173.0" y="1157" width="2.8" height="15.0" fill="rgb(205,2,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="175.95" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__call__(eth_hash.main) (1 samples, 0.24%)</title><rect x="226.3" y="1109" width="2.8" height="15.0" fill="rgb(239,175,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="229.33" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parse(email.parser) (1 samples, 0.24%)</title><rect x="139.2" y="117" width="2.8" height="15.0" fill="rgb(210,66,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="142.24" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="1043.9" y="1173" width="2.8" height="15.0" fill="rgb(229,162,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1046.90" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>debug(logging) (1 samples, 0.24%)</title><rect x="423.0" y="1253" width="2.8" height="15.0" fill="rgb(208,42,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="426.00" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><genexpr>(web3.utils.formatters) (1 samples, 0.24%)</title><rect x="366.8" y="1173" width="2.8" height="15.0" fill="rgb(228,1,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="369.81" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="94.3" y="533" width="2.8" height="15.0" fill="rgb(234,98,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseImpl(pkg_resources._vendor.pyparsing) (4 samples, 0.95%)</title><rect x="1142.2" y="949" width="11.3" height="15.0" fill="rgb(234,116,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1145.24" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="71.8" y="565" width="2.8" height="15.0" fill="rgb(241,77,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="74.81" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>evaluate(pkg_resources.extern.packaging.markers) (7 samples, 1.67%)</title><rect x="1167.5" y="1285" width="19.7" height="15.0" fill="rgb(205,173,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1170.52" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapper(eth_utils.decorators) (1 samples, 0.24%)</title><rect x="614.0" y="1013" width="2.9" height="15.0" fill="rgb(253,6,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="617.05" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="150.5" y="501" width="2.8" height="15.0" fill="rgb(239,2,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="153.48" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>decode_event(raiden.utils.filters) (1 samples, 0.24%)</title><rect x="1041.1" y="1333" width="2.8" height="15.0" fill="rgb(231,144,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1044.10" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>check_transaction_threw(raiden.network.rpc.transactions) (1 samples, 0.24%)</title><rect x="597.2" y="1349" width="2.8" height="15.0" fill="rgb(243,163,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="600.19" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (5 samples, 1.19%)</title><rect x="209.5" y="1061" width="14.0" height="15.0" fill="rgb(216,7,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_post_request(web3.utils.request) (1 samples, 0.24%)</title><rect x="574.7" y="1077" width="2.8" height="15.0" fill="rgb(229,229,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="577.71" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (13 samples, 3.10%)</title><rect x="375.2" y="1253" width="36.6" height="15.0" fill="rgb(246,187,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="378.24" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_de..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (1 samples, 0.24%)</title><rect x="209.5" y="677" width="2.8" height="15.0" fill="rgb(220,136,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sign(raiden.utils.signer) (1 samples, 0.24%)</title><rect x="178.6" y="1349" width="2.8" height="15.0" fill="rgb(238,56,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="181.57" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>proxy_bypass_environment(urllib.request) (4 samples, 0.95%)</title><rect x="459.5" y="997" width="11.3" height="15.0" fill="rgb(249,104,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="462.52" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send_message(matrix_client.api) (3 samples, 0.71%)</title><rect x="330.3" y="1365" width="8.4" height="15.0" fill="rgb(252,208,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="333.29" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_0x_prefixed(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="600.0" y="1093" width="2.8" height="15.0" fill="rgb(210,209,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="603.00" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapped(web3.utils.decorators) (1 samples, 0.24%)</title><rect x="366.8" y="1141" width="2.8" height="15.0" fill="rgb(244,113,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="369.81" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="91.5" y="581" width="2.8" height="15.0" fill="rgb(251,171,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (5 samples, 1.19%)</title><rect x="209.5" y="1109" width="14.0" height="15.0" fill="rgb(213,207,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>make_request(web3.providers.rpc) (1 samples, 0.24%)</title><rect x="602.8" y="1109" width="2.8" height="15.0" fill="rgb(250,56,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="605.81" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (33 samples, 7.86%)</title><rect x="428.6" y="1237" width="92.7" height="15.0" fill="rgb(249,219,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="431.62" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >apply_forma..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call_contract_function(web3.contract) (2 samples, 0.48%)</title><rect x="608.4" y="1349" width="5.6" height="15.0" fill="rgb(214,92,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="611.43" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="128.0" y="453" width="2.8" height="15.0" fill="rgb(239,104,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="131.00" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>inner(eth_utils.functional) (1 samples, 0.24%)</title><rect x="437.0" y="1173" width="2.9" height="15.0" fill="rgb(224,122,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="440.05" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.sessions) (1 samples, 0.24%)</title><rect x="94.3" y="277" width="2.8" height="15.0" fill="rgb(210,126,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (3 samples, 0.71%)</title><rect x="243.2" y="1157" width="8.4" height="15.0" fill="rgb(222,40,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (4 samples, 0.95%)</title><rect x="355.6" y="1189" width="11.2" height="15.0" fill="rgb(250,74,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="358.57" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pytest_fixture_setup(_pytest.fixtures) (3 samples, 0.71%)</title><rect x="144.9" y="629" width="8.4" height="15.0" fill="rgb(239,33,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_get_session(web3.utils.request) (1 samples, 0.24%)</title><rect x="614.0" y="1109" width="2.9" height="15.0" fill="rgb(222,62,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="617.05" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (3 samples, 0.71%)</title><rect x="521.3" y="1269" width="8.5" height="15.0" fill="rgb(253,67,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="524.33" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (3 samples, 0.71%)</title><rect x="201.0" y="965" width="8.5" height="15.0" fill="rgb(233,57,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="204.05" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (1 samples, 0.24%)</title><rect x="136.4" y="309" width="2.8" height="15.0" fill="rgb(252,154,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="139.43" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>poll_blockchain_events(raiden.blockchain.events) (2 samples, 0.48%)</title><rect x="1041.1" y="1365" width="5.6" height="15.0" fill="rgb(227,5,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1044.10" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>new_contract(raiden.network.rpc.client) (2 samples, 0.48%)</title><rect x="586.0" y="1365" width="5.6" height="15.0" fill="rgb(210,171,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="588.95" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_new_entries(raiden.utils.filters) (1 samples, 0.24%)</title><rect x="32.5" y="757" width="2.8" height="15.0" fill="rgb(232,199,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="35.48" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_hexbytes(web3.middleware.pythonic) (1 samples, 0.24%)</title><rect x="521.3" y="1173" width="2.8" height="15.0" fill="rgb(232,82,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="524.33" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_send_request(http.client) (1 samples, 0.24%)</title><rect x="605.6" y="981" width="2.8" height="15.0" fill="rgb(246,133,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="608.62" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="344.3" y="1221" width="2.8" height="15.0" fill="rgb(232,154,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="347.33" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (7 samples, 1.67%)</title><rect x="392.1" y="1141" width="19.7" height="15.0" fill="rgb(228,105,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="395.10" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (3 samples, 0.71%)</title><rect x="243.2" y="1221" width="8.4" height="15.0" fill="rgb(231,4,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_hex(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="285.3" y="1093" width="2.8" height="15.0" fill="rgb(242,123,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="288.33" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (2 samples, 0.48%)</title><rect x="49.3" y="565" width="5.7" height="15.0" fill="rgb(244,135,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="52.33" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>fromWeb3(ens.main) (1 samples, 0.24%)</title><rect x="142.0" y="517" width="2.9" height="15.0" fill="rgb(218,118,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="145.05" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>dispatch(raiden.transfer.architecture) (4 samples, 0.95%)</title><rect x="257.2" y="1253" width="11.3" height="15.0" fill="rgb(254,194,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="260.24" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="260.0" y="997" width="2.9" height="15.0" fill="rgb(250,93,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>event_abi_to_log_topic(eth_utils.abi) (1 samples, 0.24%)</title><rect x="571.9" y="1349" width="2.8" height="15.0" fill="rgb(251,142,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="574.90" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="29.7" y="693" width="2.8" height="15.0" fill="rgb(233,69,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(contextlib) (1 samples, 0.24%)</title><rect x="94.3" y="181" width="2.8" height="15.0" fill="rgb(246,19,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="97.29" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_valid_signature(raiden.transfer.channel) (1 samples, 0.24%)</title><rect x="302.2" y="1093" width="2.8" height="15.0" fill="rgb(233,100,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="305.19" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>poll(gevent.select) (1 samples, 0.24%)</title><rect x="167.3" y="837" width="2.8" height="15.0" fill="rgb(232,158,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>decode(os) (1 samples, 0.24%)</title><rect x="170.1" y="917" width="2.9" height="15.0" fill="rgb(232,119,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="173.14" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_abi_formatters_to_dict(web3.utils.rpc_abi) (3 samples, 0.71%)</title><rect x="428.6" y="1189" width="8.4" height="15.0" fill="rgb(224,68,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="431.62" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_proxy_to_logger(structlog.stdlib) (1 samples, 0.24%)</title><rect x="423.0" y="1285" width="2.8" height="15.0" fill="rgb(219,2,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="426.00" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (9 samples, 2.14%)</title><rect x="198.2" y="1205" width="25.3" height="15.0" fill="rgb(241,74,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="201.24" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (3 samples, 0.71%)</title><rect x="243.2" y="1173" width="8.4" height="15.0" fill="rgb(207,150,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="580.3" y="1189" width="2.8" height="15.0" fill="rgb(228,84,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="583.33" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="147.7" y="453" width="2.8" height="15.0" fill="rgb(212,170,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="150.67" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="580.3" y="1333" width="2.8" height="15.0" fill="rgb(224,134,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="583.33" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="260.0" y="741" width="2.9" height="15.0" fill="rgb(247,215,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><genexpr>(pkg_resources.extern.packaging.specifiers) (1 samples, 0.24%)</title><rect x="38.1" y="725" width="2.8" height="15.0" fill="rgb(210,92,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="41.10" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>inner(eth_utils.functional) (3 samples, 0.71%)</title><rect x="428.6" y="1221" width="8.4" height="15.0" fill="rgb(217,214,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="431.62" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_initialize_messages_queues(raiden.raiden_service) (1 samples, 0.24%)</title><rect x="26.9" y="821" width="2.8" height="15.0" fill="rgb(220,200,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="29.86" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>encode(eth_abi.encoding) (1 samples, 0.24%)</title><rect x="600.0" y="1221" width="2.8" height="15.0" fill="rgb(207,63,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="603.00" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>post(requests.sessions) (1 samples, 0.24%)</title><rect x="71.8" y="357" width="2.8" height="15.0" fill="rgb(240,8,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="74.81" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.contract) (2 samples, 0.48%)</title><rect x="586.0" y="1333" width="5.6" height="15.0" fill="rgb(226,79,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="588.95" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>inner(eth_utils.functional) (8 samples, 1.90%)</title><rect x="498.9" y="1141" width="22.4" height="15.0" fill="rgb(247,17,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="501.86" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >i..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>close(email.feedparser) (1 samples, 0.24%)</title><rect x="237.6" y="789" width="2.8" height="15.0" fill="rgb(222,100,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="240.57" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>merge_environment_settings(requests.sessions) (3 samples, 0.71%)</title><rect x="538.2" y="1333" width="8.4" height="15.0" fill="rgb(227,70,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="541.19" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_default_key_normalizer(urllib3.poolmanager) (1 samples, 0.24%)</title><rect x="597.2" y="933" width="2.8" height="15.0" fill="rgb(232,100,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="600.19" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><genexpr>(copy) (1 samples, 0.24%)</title><rect x="55.0" y="133" width="2.8" height="15.0" fill="rgb(207,38,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="29.7" y="245" width="2.8" height="15.0" fill="rgb(232,5,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="597.2" y="1189" width="2.8" height="15.0" fill="rgb(231,218,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="600.19" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_send(raiden.network.transport.matrix.client) (3 samples, 0.71%)</title><rect x="529.8" y="1365" width="8.4" height="15.0" fill="rgb(240,45,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="532.76" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="288.1" y="1077" width="2.9" height="15.0" fill="rgb(224,215,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="170.1" y="1189" width="2.9" height="15.0" fill="rgb(224,219,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="173.14" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="130.8" y="501" width="2.8" height="15.0" fill="rgb(236,196,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="133.81" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(raiden.network.proxies.token_network_registry) (2 samples, 0.48%)</title><rect x="116.8" y="661" width="5.6" height="15.0" fill="rgb(236,89,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="119.76" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_maybe_run_callbacks(raiden.tasks) (8 samples, 1.90%)</title><rect x="1024.2" y="1397" width="22.5" height="15.0" fill="rgb(208,40,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.24" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (2 samples, 0.48%)</title><rect x="1027.0" y="1237" width="5.7" height="15.0" fill="rgb(232,127,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1030.05" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>start(raiden.network.transport.matrix.transport) (1 samples, 0.24%)</title><rect x="1187.2" y="1413" width="2.8" height="15.0" fill="rgb(205,175,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.19" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="144.9" y="453" width="2.8" height="15.0" fill="rgb(213,168,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="147.86" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.adapters) (4 samples, 0.95%)</title><rect x="555.0" y="1317" width="11.3" height="15.0" fill="rgb(212,209,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="558.05" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(raiden.storage.sqlite) (1 samples, 0.24%)</title><rect x="282.5" y="1237" width="2.8" height="15.0" fill="rgb(229,140,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="285.52" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="414.6" y="1061" width="2.8" height="15.0" fill="rgb(211,108,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="417.57" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.contract) (1 samples, 0.24%)</title><rect x="616.9" y="1349" width="2.8" height="15.0" fill="rgb(246,189,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="619.86" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="136.4" y="469" width="2.8" height="15.0" fill="rgb(234,107,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="139.43" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapped(web3.utils.decorators) (1 samples, 0.24%)</title><rect x="302.2" y="1013" width="2.8" height="15.0" fill="rgb(219,20,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="305.19" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="209.5" y="725" width="2.8" height="15.0" fill="rgb(237,135,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="74.6" y="533" width="2.8" height="15.0" fill="rgb(221,105,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="77.62" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.cache) (1 samples, 0.24%)</title><rect x="583.1" y="1301" width="2.9" height="15.0" fill="rgb(235,169,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="586.14" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>serialize(raiden.storage.serialize) (1 samples, 0.24%)</title><rect x="268.5" y="1253" width="2.8" height="15.0" fill="rgb(217,188,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="271.48" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(raiden.network.proxies.token) (3 samples, 0.71%)</title><rect x="614.0" y="1397" width="8.5" height="15.0" fill="rgb(231,197,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="617.05" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>proxy_bypass_environment(urllib.request) (1 samples, 0.24%)</title><rect x="170.1" y="981" width="2.9" height="15.0" fill="rgb(246,86,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="173.14" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>python_version(platform) (1 samples, 0.24%)</title><rect x="1176.0" y="1253" width="2.8" height="15.0" fill="rgb(227,61,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1178.95" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (4 samples, 0.95%)</title><rect x="212.3" y="1013" width="11.2" height="15.0" fill="rgb(249,169,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="215.29" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="209.5" y="549" width="2.8" height="15.0" fill="rgb(251,226,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>format(structlog.stdlib) (1 samples, 0.24%)</title><rect x="341.5" y="1205" width="2.8" height="15.0" fill="rgb(236,105,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="344.52" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>emit(logging.handlers) (2 samples, 0.48%)</title><rect x="369.6" y="1205" width="5.6" height="15.0" fill="rgb(242,53,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="372.62" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="1024.2" y="1285" width="2.8" height="15.0" fill="rgb(219,18,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.24" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>encode(json.encoder) (1 samples, 0.24%)</title><rect x="282.5" y="1189" width="2.8" height="15.0" fill="rgb(215,79,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="285.52" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (1 samples, 0.24%)</title><rect x="69.0" y="485" width="2.8" height="15.0" fill="rgb(241,127,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="72.00" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(web3.contract) (1 samples, 0.24%)</title><rect x="119.6" y="581" width="2.8" height="15.0" fill="rgb(250,203,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="122.57" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__getitem__(pkg_resources._vendor.pyparsing) (1 samples, 0.24%)</title><rect x="1119.8" y="805" width="2.8" height="15.0" fill="rgb(250,113,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1122.76" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="1024.2" y="1125" width="2.8" height="15.0" fill="rgb(221,39,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.24" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>hexstr_if_str(eth_utils.conversions) (1 samples, 0.24%)</title><rect x="352.8" y="1125" width="2.8" height="15.0" fill="rgb(214,72,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="355.76" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_dict(raiden.transfer.events) (1 samples, 0.24%)</title><rect x="305.0" y="1141" width="2.8" height="15.0" fill="rgb(231,188,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="308.00" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>map_collection(web3.utils.formatters) (1 samples, 0.24%)</title><rect x="366.8" y="1109" width="2.8" height="15.0" fill="rgb(210,6,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="369.81" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_log(logging) (1 samples, 0.24%)</title><rect x="423.0" y="1237" width="2.8" height="15.0" fill="rgb(211,132,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="426.00" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>decode(os) (1 samples, 0.24%)</title><rect x="538.2" y="1253" width="2.8" height="15.0" fill="rgb(244,2,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="541.19" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>encode_abi(eth_abi.abi) (1 samples, 0.24%)</title><rect x="600.0" y="1253" width="2.8" height="15.0" fill="rgb(228,136,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="603.00" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (2 samples, 0.48%)</title><rect x="271.3" y="837" width="5.6" height="15.0" fill="rgb(249,181,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="274.29" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="15.6" y="517" width="2.8" height="15.0" fill="rgb(205,49,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_callback_new_block(raiden.raiden_service) (2 samples, 0.48%)</title><rect x="29.7" y="789" width="5.6" height="15.0" fill="rgb(236,223,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>default_environment(pkg_resources.extern.packaging.markers) (6 samples, 1.43%)</title><rect x="1170.3" y="1269" width="16.9" height="15.0" fill="rgb(206,27,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1173.33" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_atomic(copy) (1 samples, 0.24%)</title><rect x="29.7" y="133" width="2.8" height="15.0" fill="rgb(215,159,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="32.67" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_proxy_to_logger(structlog._base) (2 samples, 0.48%)</title><rect x="338.7" y="1365" width="5.6" height="15.0" fill="rgb(247,47,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="341.71" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (1 samples, 0.24%)</title><rect x="209.5" y="853" width="2.8" height="15.0" fill="rgb(243,222,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.48" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters_to_dict(eth_utils.applicators) (1 samples, 0.24%)</title><rect x="524.1" y="1157" width="2.9" height="15.0" fill="rgb(222,162,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="527.14" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="577.5" y="1237" width="2.8" height="15.0" fill="rgb(212,168,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="580.52" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parseImpl(pkg_resources._vendor.pyparsing) (1 samples, 0.24%)</title><rect x="1133.8" y="981" width="2.8" height="15.0" fill="rgb(216,98,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1136.81" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (4 samples, 0.95%)</title><rect x="15.6" y="581" width="11.3" height="15.0" fill="rgb(254,14,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deposit_preconditions(raiden.network.proxies.token_network) (5 samples, 1.19%)</title><rect x="591.6" y="1381" width="14.0" height="15.0" fill="rgb(213,112,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="594.57" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_and_track_state_change(raiden.raiden_service) (1 samples, 0.24%)</title><rect x="425.8" y="1333" width="2.8" height="15.0" fill="rgb(209,150,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="428.81" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapped(web3.utils.decorators) (2 samples, 0.48%)</title><rect x="431.4" y="933" width="5.6" height="15.0" fill="rgb(247,148,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="434.43" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>hash(raiden.messages) (1 samples, 0.24%)</title><rect x="232.0" y="1029" width="2.8" height="15.0" fill="rgb(209,35,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="234.95" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>parsestr(email.parser) (6 samples, 1.43%)</title><rect x="1066.4" y="1285" width="16.8" height="15.0" fill="rgb(247,138,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1069.38" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_teardown_with_finalization(_pytest.runner) (4 samples, 0.95%)</title><rect x="153.3" y="917" width="11.2" height="15.0" fill="rgb(240,111,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="156.29" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wrapped(web3.utils.decorators) (1 samples, 0.24%)</title><rect x="366.8" y="1221" width="2.8" height="15.0" fill="rgb(228,112,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="369.81" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>is_hex(eth_utils.hexadecimal) (1 samples, 0.24%)</title><rect x="600.0" y="1125" width="2.8" height="15.0" fill="rgb(228,94,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="603.00" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_and_track_state_change(raiden.raiden_service) (1 samples, 0.24%)</title><rect x="423.0" y="1333" width="2.8" height="15.0" fill="rgb(254,143,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="426.00" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>emit(logging.handlers) (1 samples, 0.24%)</title><rect x="195.4" y="1141" width="2.8" height="15.0" fill="rgb(242,174,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="198.43" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>filter(raiden.log_config) (1 samples, 0.24%)</title><rect x="192.6" y="1205" width="2.8" height="15.0" fill="rgb(210,54,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="195.62" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_tokennetwork_new(raiden.blockchain_events_handler) (5 samples, 1.19%)</title><rect x="1027.0" y="1349" width="14.1" height="15.0" fill="rgb(222,23,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1030.05" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="288.1" y="837" width="2.9" height="15.0" fill="rgb(233,25,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="55.0" y="501" width="2.8" height="15.0" fill="rgb(236,103,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="57.95" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>new_contract_proxy(raiden.network.rpc.client) (1 samples, 0.24%)</title><rect x="119.6" y="645" width="2.8" height="15.0" fill="rgb(243,183,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="122.57" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_hookexec(pluggy.manager) (55 samples, 13.10%)</title><rect x="10.0" y="1189" width="154.5" height="15.0" fill="rgb(214,126,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_hookexec(pluggy.ma..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (3 samples, 0.71%)</title><rect x="260.0" y="1077" width="8.5" height="15.0" fill="rgb(232,119,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (3 samples, 0.71%)</title><rect x="201.0" y="1029" width="8.5" height="15.0" fill="rgb(254,142,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="204.05" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="77.4" y="565" width="2.8" height="15.0" fill="rgb(240,32,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="80.43" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_reconstruct(copy) (8 samples, 1.90%)</title><rect x="389.3" y="1173" width="22.5" height="15.0" fill="rgb(229,167,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="392.29" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request(requests.sessions) (1 samples, 0.24%)</title><rect x="114.0" y="341" width="2.8" height="15.0" fill="rgb(238,157,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="116.95" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (13 samples, 3.10%)</title><rect x="375.2" y="1237" width="36.6" height="15.0" fill="rgb(217,155,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="378.24" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ><li..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.exception_retry_request) (1 samples, 0.24%)</title><rect x="605.6" y="1141" width="2.8" height="15.0" fill="rgb(213,43,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="608.62" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>uname(platform) (1 samples, 0.24%)</title><rect x="1184.4" y="1237" width="2.8" height="15.0" fill="rgb(225,119,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1187.38" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (4 samples, 0.95%)</title><rect x="212.3" y="997" width="11.2" height="15.0" fill="rgb(240,45,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="215.29" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>cleanup_tasks(raiden.tests.utils.tests) (1 samples, 0.24%)</title><rect x="156.1" y="821" width="2.8" height="15.0" fill="rgb(227,164,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="159.10" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.sessions) (1 samples, 0.24%)</title><rect x="111.1" y="325" width="2.9" height="15.0" fill="rgb(214,224,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="114.14" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>urlparse(urllib.parse) (1 samples, 0.24%)</title><rect x="602.8" y="997" width="2.8" height="15.0" fill="rgb(232,4,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="605.81" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>factory(web3.contract) (1 samples, 0.24%)</title><rect x="142.0" y="437" width="2.9" height="15.0" fill="rgb(250,78,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="145.05" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__init__(ens.main) (1 samples, 0.24%)</title><rect x="108.3" y="549" width="2.8" height="15.0" fill="rgb(228,207,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="111.33" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>fill_transaction_defaults(web3.utils.transactions) (1 samples, 0.24%)</title><rect x="99.9" y="597" width="2.8" height="15.0" fill="rgb(208,151,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="102.90" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deploy_token_network_registry_and_return_address(raiden.tests.integration.fixtures.smartcontracts) (4 samples, 0.95%)</title><rect x="128.0" y="645" width="11.2" height="15.0" fill="rgb(222,134,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="131.00" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getresponse(http.client) (1 samples, 0.24%)</title><rect x="333.1" y="1221" width="2.8" height="15.0" fill="rgb(251,180,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="336.10" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="574.7" y="1141" width="2.8" height="15.0" fill="rgb(232,21,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="577.71" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>encode_abi(web3.utils.contracts) (1 samples, 0.24%)</title><rect x="594.4" y="1253" width="2.8" height="15.0" fill="rgb(240,108,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="597.38" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>iterencode(json.encoder) (1 samples, 0.24%)</title><rect x="341.5" y="1125" width="2.8" height="15.0" fill="rgb(209,177,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="344.52" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>should_bypass_proxies(requests.utils) (1 samples, 0.24%)</title><rect x="184.2" y="1237" width="2.8" height="15.0" fill="rgb(205,47,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="187.19" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>new_contract(raiden.network.rpc.client) (2 samples, 0.48%)</title><rect x="616.9" y="1381" width="5.6" height="15.0" fill="rgb(251,38,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="619.86" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (1 samples, 0.24%)</title><rect x="243.2" y="821" width="2.8" height="15.0" fill="rgb(243,182,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="246.19" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.attrdict) (1 samples, 0.24%)</title><rect x="114.0" y="501" width="2.8" height="15.0" fill="rgb(227,229,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="116.95" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_native_string(requests._internal_utils) (1 samples, 0.24%)</title><rect x="71.8" y="277" width="2.8" height="15.0" fill="rgb(236,139,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="74.81" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>inner(eth_utils.functional) (1 samples, 0.24%)</title><rect x="85.9" y="485" width="2.8" height="15.0" fill="rgb(225,29,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="88.86" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.sessions) (1 samples, 0.24%)</title><rect x="91.5" y="341" width="2.8" height="15.0" fill="rgb(234,179,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="94.48" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_send_output(http.client) (2 samples, 0.48%)</title><rect x="487.6" y="933" width="5.6" height="15.0" fill="rgb(216,121,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="490.62" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="602.8" y="1205" width="2.8" height="15.0" fill="rgb(205,29,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="605.81" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apply_formatters(web3.middleware.formatting) (1 samples, 0.24%)</title><rect x="167.3" y="1077" width="2.8" height="15.0" fill="rgb(215,107,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="170.33" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="136.4" y="549" width="2.8" height="15.0" fill="rgb(248,98,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="139.43" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>expanduser(posixpath) (1 samples, 0.24%)</title><rect x="414.6" y="869" width="2.8" height="15.0" fill="rgb(243,121,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="417.57" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (3 samples, 0.71%)</title><rect x="201.0" y="853" width="8.5" height="15.0" fill="rgb(209,224,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="204.05" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_dict(copy) (1 samples, 0.24%)</title><rect x="260.0" y="1029" width="2.9" height="15.0" fill="rgb(247,106,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="263.05" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>request_blocking(web3.manager) (1 samples, 0.24%)</title><rect x="417.4" y="1285" width="2.8" height="15.0" fill="rgb(233,141,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="420.38" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>deepcopy(copy) (3 samples, 0.71%)</title><rect x="57.8" y="549" width="8.4" height="15.0" fill="rgb(249,15,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="60.76" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title><listcomp>(copy) (1 samples, 0.24%)</title><rect x="288.1" y="1029" width="2.9" height="15.0" fill="rgb(228,137,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="291.14" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>merge_environment_settings(requests.sessions) (9 samples, 2.14%)</title><rect x="445.5" y="1045" width="25.3" height="15.0" fill="rgb(246,47,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="448.48" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >m..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_deepcopy_tuple(copy) (4 samples, 0.95%)</title><rect x="15.6" y="597" width="11.3" height="15.0" fill="rgb(243,174,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="18.62" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>token(raiden.network.blockchain_service) (3 samples, 0.71%)</title><rect x="614.0" y="1413" width="8.5" height="15.0" fill="rgb(233,67,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="617.05" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_proxy_to_logger(structlog.stdlib) (2 samples, 0.48%)</title><rect x="338.7" y="1381" width="5.6" height="15.0" fill="rgb(235,101,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="341.71" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>send(requests.sessions) (1 samples, 0.24%)</title><rect x="333.1" y="1285" width="2.8" height="15.0" fill="rgb(213,130,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="336.10" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>serialize(raiden.storage.serialize) (1 samples, 0.24%)</title><rect x="251.6" y="1253" width="2.8" height="15.0" fill="rgb(245,50,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="254.62" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getproxies_environment(urllib.request) (1 samples, 0.24%)</title><rect x="417.4" y="981" width="2.8" height="15.0" fill="rgb(252,56,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="420.38" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>abi_address_to_hex(web3.utils.normalizers) (4 samples, 0.95%)</title><rect x="504.5" y="789" width="11.2" height="15.0" fill="rgb(231,158,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="507.48" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>to_normalized_address(eth_utils.address) (1 samples, 0.24%)</title><rect x="600.0" y="1157" width="2.8" height="15.0" fill="rgb(242,97,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="603.00" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>getproxies_environment(urllib.request) (1 samples, 0.24%)</title><rect x="184.2" y="1205" width="2.8" height="15.0" fill="rgb(252,57,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="187.19" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__new__(web3.utils.datatypes) (1 samples, 0.24%)</title><rect x="616.9" y="1205" width="2.8" height="15.0" fill="rgb(210,4,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="619.86" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call(web3.contract) (1 samples, 0.24%)</title><rect x="566.3" y="1397" width="2.8" height="15.0" fill="rgb(229,52,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="569.29" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>inner(eth_utils.functional) (2 samples, 0.48%)</title><rect x="608.4" y="1333" width="5.6" height="15.0" fill="rgb(214,136,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="611.43" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>new_netting_channel(raiden.network.proxies.token_network) (2 samples, 0.48%)</title><rect x="574.7" y="1413" width="5.6" height="15.0" fill="rgb(222,48,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="577.71" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>middleware(web3.middleware.normalize_errors) (1 samples, 0.24%)</title><rect x="150.5" y="405" width="2.8" height="15.0" fill="rgb(254,99,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="153.48" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>call_contract_function(web3.contract) (1 samples, 0.24%)</title><rect x="420.2" y="1285" width="2.8" height="15.0" fill="rgb(222,120,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="423.19" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_make_request(web3.manager) (1 samples, 0.24%)</title><rect x="580.3" y="1349" width="2.8" he |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment